Porting Chromium's base/atomicops.h and friends into WebRTC. Included the original unit test in Chromium. Review URL: https://webrtc-codereview.appspot.com/964026 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3241 4adac7df-926f-26a2-2b94-8c16560cd09d
109 lines
3.4 KiB
C++
109 lines
3.4 KiB
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file under third_party_mods/chromium or at:
|
|
// http://src.chromium.org/svn/trunk/src/LICENSE
|
|
|
|
#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMICOPS_INTERNALS_GCC_H_
|
|
#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMICOPS_INTERNALS_GCC_H_
|
|
|
|
// Extracted from Chromium's src/base/atomicops_internals_gcc.h.
|
|
|
|
// This file is an internal atomic implementation, include atomicops.h
|
|
// instead. This file is for platforms that use GCC intrinsics rather than
|
|
// platform-specific assembly code for atomic operations.
|
|
|
|
namespace webrtc {
|
|
namespace subtle {
|
|
|
|
inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr,
|
|
Atomic32 old_value,
|
|
Atomic32 new_value) {
|
|
Atomic32 prev_value;
|
|
do {
|
|
if (__sync_bool_compare_and_swap(ptr, old_value, new_value))
|
|
return old_value;
|
|
prev_value = *ptr;
|
|
} while (prev_value == old_value);
|
|
return prev_value;
|
|
}
|
|
|
|
inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr,
|
|
Atomic32 new_value) {
|
|
Atomic32 old_value;
|
|
do {
|
|
old_value = *ptr;
|
|
} while (!__sync_bool_compare_and_swap(ptr, old_value, new_value));
|
|
return old_value;
|
|
}
|
|
|
|
inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr,
|
|
Atomic32 increment) {
|
|
return Barrier_AtomicIncrement(ptr, increment);
|
|
}
|
|
|
|
inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32* ptr,
|
|
Atomic32 increment) {
|
|
for (;;) {
|
|
// Atomic exchange the old value with an incremented one.
|
|
Atomic32 old_value = *ptr;
|
|
Atomic32 new_value = old_value + increment;
|
|
if (__sync_bool_compare_and_swap(ptr, old_value, new_value)) {
|
|
// The exchange took place as expected.
|
|
return new_value;
|
|
}
|
|
// Otherwise, *ptr changed mid-loop and we need to retry.
|
|
}
|
|
}
|
|
|
|
inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr,
|
|
Atomic32 old_value,
|
|
Atomic32 new_value) {
|
|
// Since NoBarrier_CompareAndSwap uses __sync_bool_compare_and_swap, which
|
|
// is a full memory barrier, none is needed here or below in Release.
|
|
return NoBarrier_CompareAndSwap(ptr, old_value, new_value);
|
|
}
|
|
|
|
inline Atomic32 Release_CompareAndSwap(volatile Atomic32* ptr,
|
|
Atomic32 old_value,
|
|
Atomic32 new_value) {
|
|
return NoBarrier_CompareAndSwap(ptr, old_value, new_value);
|
|
}
|
|
|
|
inline void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) {
|
|
*ptr = value;
|
|
}
|
|
|
|
inline void MemoryBarrier() {
|
|
__sync_synchronize();
|
|
}
|
|
|
|
inline void Acquire_Store(volatile Atomic32* ptr, Atomic32 value) {
|
|
*ptr = value;
|
|
MemoryBarrier();
|
|
}
|
|
|
|
inline void Release_Store(volatile Atomic32* ptr, Atomic32 value) {
|
|
MemoryBarrier();
|
|
*ptr = value;
|
|
}
|
|
|
|
inline Atomic32 NoBarrier_Load(volatile const Atomic32* ptr) {
|
|
return *ptr;
|
|
}
|
|
|
|
inline Atomic32 Acquire_Load(volatile const Atomic32* ptr) {
|
|
Atomic32 value = *ptr;
|
|
MemoryBarrier();
|
|
return value;
|
|
}
|
|
|
|
inline Atomic32 Release_Load(volatile const Atomic32* ptr) {
|
|
MemoryBarrier();
|
|
return *ptr;
|
|
}
|
|
|
|
} // namespace webrtc::subtle
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_ATOMICOPS_INTERNALS_GCC_H_
|