blob: cd4ce0858018bc8a2ae7db136d27221141862bad [file] [log] [blame]
tommi@webrtc.orge84373c2012-04-19 14:28:45 +00001/*
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 Kjellander98f53512015-10-28 18:17:40 +010011#include "webrtc/system_wrappers/include/atomic32.h"
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000012
13#include <assert.h>
14#include <windows.h>
15
pbos@webrtc.orgacaf3a12013-05-27 15:07:45 +000016#include "webrtc/common_types.h"
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000017
18namespace webrtc {
19
pbos@webrtc.org046deb92013-04-09 09:06:11 +000020Atomic32::Atomic32(int32_t initial_value)
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000021 : value_(initial_value) {
kwiberg@webrtc.org2ebfac52015-01-14 10:51:54 +000022 static_assert(sizeof(value_) == sizeof(LONG),
23 "counter variable is the expected size");
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000024 assert(Is32bitAligned());
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000025}
26
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000027Atomic32::~Atomic32() {
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000028}
29
pbos@webrtc.org046deb92013-04-09 09:06:11 +000030int32_t Atomic32::operator++() {
31 return static_cast<int32_t>(InterlockedIncrement(
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000032 reinterpret_cast<volatile LONG*>(&value_)));
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000033}
34
pbos@webrtc.org046deb92013-04-09 09:06:11 +000035int32_t Atomic32::operator--() {
36 return static_cast<int32_t>(InterlockedDecrement(
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000037 reinterpret_cast<volatile LONG*>(&value_)));
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000038}
39
pbos@webrtc.org046deb92013-04-09 09:06:11 +000040int32_t Atomic32::operator+=(int32_t value) {
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000041 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
42 value);
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000043}
44
pbos@webrtc.org046deb92013-04-09 09:06:11 +000045int32_t Atomic32::operator-=(int32_t value) {
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000046 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
47 -value);
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000048}
49
pbos@webrtc.org046deb92013-04-09 09:06:11 +000050bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) {
phoglund@webrtc.org9cb9fc12012-11-09 08:57:25 +000051 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.orge84373c2012-04-19 14:28:45 +000058}
59
tommi@webrtc.orge84373c2012-04-19 14:28:45 +000060} // namespace webrtc