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 | |
Henrik Kjellander | 98f5351 | 2015-10-28 18:17:40 +0100 | [diff] [blame] | 11 | #include "webrtc/system_wrappers/include/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 | |
pbos@webrtc.org | acaf3a1 | 2013-05-27 15:07:45 +0000 | [diff] [blame] | 16 | #include "webrtc/common_types.h" |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 20 | Atomic32::Atomic32(int32_t initial_value) |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 21 | : value_(initial_value) { |
kwiberg@webrtc.org | 2ebfac5 | 2015-01-14 10:51:54 +0000 | [diff] [blame] | 22 | static_assert(sizeof(value_) == sizeof(LONG), |
| 23 | "counter variable is the expected size"); |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 24 | assert(Is32bitAligned()); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 25 | } |
| 26 | |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 27 | Atomic32::~Atomic32() { |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 28 | } |
| 29 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 30 | int32_t Atomic32::operator++() { |
| 31 | return static_cast<int32_t>(InterlockedIncrement( |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 32 | reinterpret_cast<volatile LONG*>(&value_))); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 33 | } |
| 34 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 35 | int32_t Atomic32::operator--() { |
| 36 | return static_cast<int32_t>(InterlockedDecrement( |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 37 | reinterpret_cast<volatile LONG*>(&value_))); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 38 | } |
| 39 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 40 | int32_t Atomic32::operator+=(int32_t value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 41 | return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), |
| 42 | value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 43 | } |
| 44 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 45 | int32_t Atomic32::operator-=(int32_t value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 46 | return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), |
| 47 | -value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 48 | } |
| 49 | |
pbos@webrtc.org | 046deb9 | 2013-04-09 09:06:11 +0000 | [diff] [blame] | 50 | bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) { |
phoglund@webrtc.org | 9cb9fc1 | 2012-11-09 08:57:25 +0000 | [diff] [blame] | 51 | const LONG old_value = InterlockedCompareExchange( |
| 52 | reinterpret_cast<volatile LONG*>(&value_), |
| 53 | new_value, |
| 54 | compare_value); |
| 55 | |
| 56 | // If the old value and the compare value is the same an exchange happened. |
| 57 | return (old_value == compare_value); |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 58 | } |
| 59 | |
tommi@webrtc.org | e84373c | 2012-04-19 14:28:45 +0000 | [diff] [blame] | 60 | } // namespace webrtc |