OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_ATOMIC_FUCHSIA_H_ | 5 #ifndef VM_ATOMIC_FUCHSIA_H_ |
6 #define VM_ATOMIC_FUCHSIA_H_ | 6 #define VM_ATOMIC_FUCHSIA_H_ |
7 | 7 |
8 #if !defined VM_ATOMIC_H_ | 8 #if !defined VM_ATOMIC_H_ |
9 #error Do not include atomic_fuchsia.h directly. Use atomic.h instead. | 9 #error Do not include atomic_fuchsia.h directly. Use atomic.h instead. |
10 #endif | 10 #endif |
11 | 11 |
12 #if !defined(TARGET_OS_FUCHSIA) | 12 #if !defined(TARGET_OS_FUCHSIA) |
13 #error This file should only be included on Fuchsia builds. | 13 #error This file should only be included on Fuchsia builds. |
14 #endif | 14 #endif |
15 | 15 |
16 #include "platform/assert.h" | |
17 | |
18 namespace dart { | 16 namespace dart { |
19 | 17 |
20 inline uintptr_t AtomicOperations::FetchAndIncrement(uintptr_t* p) { | 18 inline uintptr_t AtomicOperations::FetchAndIncrement(uintptr_t* p) { |
21 UNIMPLEMENTED(); | 19 return __sync_fetch_and_add(p, 1); |
22 return 0; | |
23 } | 20 } |
24 | 21 |
25 | 22 |
26 inline void AtomicOperations::IncrementBy(intptr_t* p, intptr_t value) { | 23 inline void AtomicOperations::IncrementBy(intptr_t* p, intptr_t value) { |
27 UNIMPLEMENTED(); | 24 __sync_fetch_and_add(p, value); |
28 } | 25 } |
29 | 26 |
30 | 27 |
31 inline void AtomicOperations::IncrementInt64By(int64_t* p, int64_t value) { | 28 inline void AtomicOperations::IncrementInt64By(int64_t* p, int64_t value) { |
32 UNIMPLEMENTED(); | 29 __sync_fetch_and_add(p, value); |
33 } | 30 } |
34 | 31 |
35 | 32 |
36 inline uintptr_t AtomicOperations::FetchAndDecrement(uintptr_t* p) { | 33 inline uintptr_t AtomicOperations::FetchAndDecrement(uintptr_t* p) { |
37 UNIMPLEMENTED(); | 34 return __sync_fetch_and_sub(p, 1); |
38 return 0; | |
39 } | 35 } |
40 | 36 |
41 | 37 |
42 inline void AtomicOperations::DecrementBy(intptr_t* p, intptr_t value) { | 38 inline void AtomicOperations::DecrementBy(intptr_t* p, intptr_t value) { |
43 UNIMPLEMENTED(); | 39 __sync_fetch_and_sub(p, value); |
44 } | 40 } |
45 | 41 |
46 | 42 |
47 #if !defined(USING_SIMULATOR_ATOMICS) | 43 #if !defined(USING_SIMULATOR_ATOMICS) |
48 inline uword AtomicOperations::CompareAndSwapWord(uword* ptr, | 44 inline uword AtomicOperations::CompareAndSwapWord(uword* ptr, |
49 uword old_value, | 45 uword old_value, |
50 uword new_value) { | 46 uword new_value) { |
51 UNIMPLEMENTED(); | 47 return __sync_val_compare_and_swap(ptr, old_value, new_value); |
52 return 0; | |
53 } | 48 } |
54 | 49 |
55 | 50 |
56 inline uint32_t AtomicOperations::CompareAndSwapUint32(uint32_t* ptr, | 51 inline uint32_t AtomicOperations::CompareAndSwapUint32(uint32_t* ptr, |
57 uint32_t old_value, | 52 uint32_t old_value, |
58 uint32_t new_value) { | 53 uint32_t new_value) { |
59 UNIMPLEMENTED(); | 54 return __sync_val_compare_and_swap(ptr, old_value, new_value); |
60 return 0; | |
61 } | 55 } |
62 #endif // !defined(USING_SIMULATOR_ATOMICS) | 56 #endif // !defined(USING_SIMULATOR_ATOMICS) |
63 | 57 |
64 } // namespace dart | 58 } // namespace dart |
65 | 59 |
66 #endif // VM_ATOMIC_FUCHSIA_H_ | 60 #endif // VM_ATOMIC_FUCHSIA_H_ |
OLD | NEW |