OLD | NEW |
---|---|
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 #include "platform/assert.h" | 5 #include "platform/assert.h" |
6 #include "platform/utils.h" | 6 #include "platform/utils.h" |
7 #include "vm/atomic.h" | 7 #include "vm/atomic.h" |
8 #include "vm/globals.h" | 8 #include "vm/globals.h" |
9 #include "vm/unit_test.h" | 9 #include "vm/unit_test.h" |
10 | 10 |
11 namespace dart { | 11 namespace dart { |
12 | 12 |
13 UNIT_TEST_CASE(FetchAndIncrement) { | 13 UNIT_TEST_CASE(FetchAndIncrement) { |
14 uintptr_t v = 42; | 14 uintptr_t v = 42; |
15 EXPECT_EQ(static_cast<uintptr_t>(42), | 15 EXPECT_EQ(static_cast<uintptr_t>(42), |
16 AtomicOperations::FetchAndIncrement(&v)); | 16 AtomicOperations::FetchAndIncrement(&v)); |
17 EXPECT_EQ(static_cast<uintptr_t>(43), v); | 17 EXPECT_EQ(static_cast<uintptr_t>(43), v); |
18 } | 18 } |
19 | 19 |
20 | 20 |
21 UNIT_TEST_CASE(FetchAndDecrement) { | 21 UNIT_TEST_CASE(FetchAndDecrement) { |
22 uintptr_t v = 42; | 22 uintptr_t v = 42; |
23 EXPECT_EQ(static_cast<uintptr_t>(42), | 23 EXPECT_EQ(static_cast<uintptr_t>(42), |
24 AtomicOperations::FetchAndDecrement(&v)); | 24 AtomicOperations::FetchAndDecrement(&v)); |
25 EXPECT_EQ(static_cast<uintptr_t>(41), v); | 25 EXPECT_EQ(static_cast<uintptr_t>(41), v); |
26 } | 26 } |
27 | 27 |
28 | 28 |
29 UNIT_TEST_CASE(FetchAndIncrementSigned) { | |
30 intptr_t v = -42; | |
31 EXPECT_EQ(static_cast<uintptr_t>(-42), | |
Florian Schneider
2016/09/16 18:01:36
intptr_t
Cutch
2016/09/16 18:07:51
Done here and elsewhere.
| |
32 AtomicOperations::FetchAndIncrement(&v)); | |
33 EXPECT_EQ(static_cast<uintptr_t>(-41), v); | |
Florian Schneider
2016/09/16 18:01:36
intptr_t?
Or remove these static_casts. They seem
| |
34 } | |
35 | |
36 | |
37 UNIT_TEST_CASE(FetchAndDecrementSigned) { | |
38 intptr_t v = -42; | |
39 EXPECT_EQ(static_cast<uintptr_t>(-42), | |
Florian Schneider
2016/09/16 18:01:36
Same as above.
| |
40 AtomicOperations::FetchAndDecrement(&v)); | |
41 EXPECT_EQ(static_cast<uintptr_t>(-43), v); | |
Florian Schneider
2016/09/16 18:01:36
Same as above.
| |
42 } | |
43 | |
44 | |
29 UNIT_TEST_CASE(IncrementBy) { | 45 UNIT_TEST_CASE(IncrementBy) { |
30 intptr_t v = 42; | 46 intptr_t v = 42; |
31 AtomicOperations::IncrementBy(&v, 100); | 47 AtomicOperations::IncrementBy(&v, 100); |
32 EXPECT_EQ(static_cast<intptr_t>(142), v); | 48 EXPECT_EQ(static_cast<intptr_t>(142), v); |
33 } | 49 } |
34 | 50 |
35 | 51 |
36 UNIT_TEST_CASE(DecrementBy) { | 52 UNIT_TEST_CASE(DecrementBy) { |
37 intptr_t v = 42; | 53 intptr_t v = 42; |
38 AtomicOperations::DecrementBy(&v, 41); | 54 AtomicOperations::DecrementBy(&v, 41); |
(...skipping 18 matching lines...) Expand all Loading... | |
57 | 73 |
58 TEST_CASE(CompareAndSwapUint32) { | 74 TEST_CASE(CompareAndSwapUint32) { |
59 uint32_t old_value = 42; | 75 uint32_t old_value = 42; |
60 uint32_t new_value = 100; | 76 uint32_t new_value = 100; |
61 uint32_t result = AtomicOperations::CompareAndSwapUint32( | 77 uint32_t result = AtomicOperations::CompareAndSwapUint32( |
62 &old_value, old_value, new_value); | 78 &old_value, old_value, new_value); |
63 EXPECT_EQ(static_cast<uint32_t>(42), result); | 79 EXPECT_EQ(static_cast<uint32_t>(42), result); |
64 } | 80 } |
65 | 81 |
66 } // namespace dart | 82 } // namespace dart |
OLD | NEW |