Chromium Code Reviews| Index: include/core/SkThread.h |
| diff --git a/include/core/SkThread.h b/include/core/SkThread.h |
| index 412ace31eb24f64e31c1d2e9529d24a3c004e95a..843824512e931212453af3afc17fefc45930761c 100644 |
| --- a/include/core/SkThread.h |
| +++ b/include/core/SkThread.h |
| @@ -33,6 +33,12 @@ static int32_t sk_atomic_dec(int32_t* addr); |
| */ |
| static int32_t sk_atomic_conditional_inc(int32_t* addr); |
| +/** Atomic compare and set. |
| + * If *addr == before, set *addr to after and return true, otherwise return false. |
| + * This must act as a release (SL/S) memory barrier and as a compiler barrier. |
| + */ |
| +static bool sk_atomic_cas(int32_t* addr, int32_t before, int32_t after); |
| + |
| /** If sk_atomic_dec does not act as an acquire (L/SL) barrier, |
| * this must act as an acquire (L/SL) memory barrier and as a compiler barrier. |
| */ |
| @@ -45,6 +51,32 @@ static void sk_membar_acquire__after_atomic_conditional_inc(); |
| #include SK_ATOMICS_PLATFORM_H |
| +// This is POD and must be zero-initialized. |
| +struct SkSpinlock { |
| + void acquire() { |
| + SkASSERT(shouldBeZero == 0); |
| + while (!sk_atomic_cas(&thisIsPrivate, 0, 1)) { |
|
bungeman-skia
2014/01/08 18:35:44
I'd still like a comment here that this doesn't re
|
| + // spin |
| + } |
| + } |
| + |
| + void release() { |
| + SkASSERT(shouldBeZero == 0); |
| + SkAssertResult(sk_atomic_cas(&thisIsPrivate, 1, 0)); |
|
bungeman-skia
2014/01/08 18:35:44
I'd still like a comment here that this requires a
|
| + } |
| + |
| + int32_t thisIsPrivate; |
| + SkDEBUGCODE(int32_t shouldBeZero;) |
| +}; |
| + |
| +class SkAutoSpinlock : SkNoncopyable { |
| +public: |
| + explicit SkAutoSpinlock(SkSpinlock* lock) : fLock(lock) { fLock->acquire(); } |
| + ~SkAutoSpinlock() { fLock->release(); } |
| +private: |
| + SkSpinlock* fLock; |
| +}; |
| +#define SkAutoSpinlock(...) SK_REQUIRE_LOCAL_VAR(SkAutoSpinlock) |
| /** SK_MUTEX_PLATFORM_H must provide the following (or equivalent) declarations. |