tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
pbos@webrtc.org | acaf3a1 | 2013-05-27 15:07:45 +0000 | [diff] [blame] | 11 | #include "webrtc/system_wrappers/interface/atomic32.h" |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 12 | |
| 13 | #include <assert.h> |
| 14 | #include <windows.h> |
| 15 | |
kwiberg@webrtc.org | 3df38b4 | 2015-01-13 11:37:48 +0000 | [diff] [blame] | 16 | #include "webrtc/base/compile_assert.h" |
pbos@webrtc.org | acaf3a1 | 2013-05-27 15:07:45 +0000 | [diff] [blame] | 17 | #include "webrtc/common_types.h" |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
| 20 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 21 | Atomic32::Atomic32(int32_t initial_value) |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 22 | : value_(initial_value) { |
andrew@webrtc.org | 31628aa | 2013-10-22 12:50:00 +0000 | [diff] [blame] | 23 | COMPILE_ASSERT(sizeof(value_) == sizeof(LONG), |
| 24 | counter_variable_is_the_expected_size); |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 25 | assert(Is32bitAligned()); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 26 | } |
| 27 | |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 28 | Atomic32::~Atomic32() { |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 29 | } |
| 30 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 31 | int32_t Atomic32::operator++() { |
| 32 | return static_cast<int32_t>(InterlockedIncrement( |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 33 | reinterpret_cast<volatile LONG*>(&value_))); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 34 | } |
| 35 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 36 | int32_t Atomic32::operator--() { |
| 37 | return static_cast<int32_t>(InterlockedDecrement( |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 38 | reinterpret_cast<volatile LONG*>(&value_))); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 39 | } |
| 40 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 41 | int32_t Atomic32::operator+=(int32_t value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 42 | return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), |
| 43 | value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 44 | } |
| 45 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 46 | int32_t Atomic32::operator-=(int32_t value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 47 | return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), |
| 48 | -value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 49 | } |
| 50 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 51 | bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 52 | const LONG old_value = InterlockedCompareExchange( |
| 53 | reinterpret_cast<volatile LONG*>(&value_), |
| 54 | new_value, |
| 55 | compare_value); |
| 56 | |
| 57 | // If the old value and the compare value is the same an exchange happened. |
| 58 | return (old_value == compare_value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 59 | } |
| 60 | |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 61 | } // namespace webrtc |