skia2/include/ports/SkBarriers_tsan.h
mtklein a64c48f4f9 Move sync code to include/, switch from using platform define to a proxy header in core/
This fixes two problems:
  1)  #include SK_SOME_DEFINE doesn't work well for all our clients.
  2)  Things in include/ are #including things in src/, which we don't like.

TBR=reed@google.com

BUG=skia:

Review URL: https://codereview.chromium.org/862983002
2015-01-21 13:13:31 -08:00

32 lines
821 B
C++

/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkBarriers_tsan_DEFINED
#define SkBarriers_tsan_DEFINED
static inline void sk_compiler_barrier() { asm volatile("" : : : "memory"); }
template <typename T>
T sk_acquire_load(T* ptr) {
SkASSERT(__atomic_always_lock_free(sizeof(T), ptr));
return __atomic_load_n(ptr, __ATOMIC_ACQUIRE);
}
template <typename T>
T sk_consume_load(T* ptr) {
SkASSERT(__atomic_always_lock_free(sizeof(T), ptr));
return __atomic_load_n(ptr, __ATOMIC_CONSUME);
}
template <typename T>
void sk_release_store(T* ptr, T val) {
SkASSERT(__atomic_always_lock_free(sizeof(T), ptr));
return __atomic_store_n(ptr, val, __ATOMIC_RELEASE);
}
#endif//SkBarriers_tsan_DEFINED