Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: include/core/SkAtomics.h

Issue 1369333002: Add cast and assignment operators to SkAtomic. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove atomic include Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tests/AtomicTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkAtomics_DEFINED 8 #ifndef SkAtomics_DEFINED
9 #define SkAtomics_DEFINED 9 #define SkAtomics_DEFINED
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 // It is essential we return by value rather than by const&. fVal may chang e at any time. 51 // It is essential we return by value rather than by const&. fVal may chang e at any time.
52 T load(sk_memory_order mo = sk_memory_order_seq_cst) const { 52 T load(sk_memory_order mo = sk_memory_order_seq_cst) const {
53 return sk_atomic_load(&fVal, mo); 53 return sk_atomic_load(&fVal, mo);
54 } 54 }
55 55
56 void store(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) { 56 void store(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) {
57 sk_atomic_store(&fVal, val, mo); 57 sk_atomic_store(&fVal, val, mo);
58 } 58 }
59 59
60 // Alias for .load(sk_memory_order_seq_cst).
61 operator T() const {
62 return this->load();
63 }
64
65 // Alias for .store(v, sk_memory_order_seq_cst).
66 T operator=(const T& v) {
67 this->store(v);
68 return v;
69 }
70
60 T fetch_add(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) { 71 T fetch_add(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) {
61 return sk_atomic_fetch_add(&fVal, val, mo); 72 return sk_atomic_fetch_add(&fVal, val, mo);
62 } 73 }
63 74
64 T fetch_sub(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) { 75 T fetch_sub(const T& val, sk_memory_order mo = sk_memory_order_seq_cst) {
65 return sk_atomic_fetch_sub(&fVal, val, mo); 76 return sk_atomic_fetch_sub(&fVal, val, mo);
66 } 77 }
67 78
68 bool compare_exchange(T* expected, const T& desired, 79 bool compare_exchange(T* expected, const T& desired,
69 sk_memory_order success = sk_memory_order_seq_cst, 80 sk_memory_order success = sk_memory_order_seq_cst,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 template <typename T> 127 template <typename T>
117 T sk_acquire_load(T* ptr) { return sk_atomic_load(ptr, sk_memory_order_acquire); } 128 T sk_acquire_load(T* ptr) { return sk_atomic_load(ptr, sk_memory_order_acquire); }
118 129
119 template <typename T> 130 template <typename T>
120 void sk_release_store(T* ptr, T val) { sk_atomic_store(ptr, val, sk_memory_order _release); } 131 void sk_release_store(T* ptr, T val) { sk_atomic_store(ptr, val, sk_memory_order _release); }
121 132
122 inline void sk_membar_acquire__after_atomic_dec() {} 133 inline void sk_membar_acquire__after_atomic_dec() {}
123 inline void sk_membar_acquire__after_atomic_conditional_inc() {} 134 inline void sk_membar_acquire__after_atomic_conditional_inc() {}
124 135
125 #endif//SkAtomics_DEFINED 136 #endif//SkAtomics_DEFINED
OLDNEW
« no previous file with comments | « no previous file | tests/AtomicTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698