blob: 2d06e54f7828632dedfc15af25a82b8902bfaae6 [file] [log] [blame]
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_RUNTIME_READ_BARRIER_INL_H_
18#define ART_RUNTIME_READ_BARRIER_INL_H_
19
20#include "read_barrier.h"
21
Andreas Gamped4901292017-05-30 18:41:34 -070022#include "gc/accounting/read_barrier_table.h"
Hiroshi Yamauchi723e6ce2015-10-28 20:59:47 -070023#include "gc/collector/concurrent_copying-inl.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080024#include "gc/heap.h"
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070025#include "mirror/object_reference.h"
Andreas Gampec15a2f42017-04-21 12:09:39 -070026#include "mirror/object-readbarrier-inl.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080027#include "mirror/reference.h"
28#include "runtime.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010029#include "utils.h"
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070030
31namespace art {
32
Mathieu Chartierd08f66f2017-04-13 11:47:53 -070033// Disabled for performance reasons.
34static constexpr bool kCheckDebugDisallowReadBarrierCount = false;
35
Hiroshi Yamauchicc78f3f2015-12-11 15:51:04 -080036template <typename MirrorType, ReadBarrierOption kReadBarrierOption, bool kAlwaysUpdateField>
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070037inline MirrorType* ReadBarrier::Barrier(
38 mirror::Object* obj, MemberOffset offset, mirror::HeapReference<MirrorType>* ref_addr) {
Igor Murashkinc449e8b2015-06-10 15:56:42 -070039 constexpr bool with_read_barrier = kReadBarrierOption == kWithReadBarrier;
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080040 if (kUseReadBarrier && with_read_barrier) {
Mathieu Chartierd08f66f2017-04-13 11:47:53 -070041 if (kCheckDebugDisallowReadBarrierCount) {
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080042 Thread* const self = Thread::Current();
43 if (self != nullptr) {
44 CHECK_EQ(self->GetDebugDisallowReadBarrierCount(), 0u);
Hiroshi Yamauchicc78f3f2015-12-11 15:51:04 -080045 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080046 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080047 if (kUseBakerReadBarrier) {
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -070048 // fake_address_dependency (must be zero) is used to create artificial data dependency from
49 // the is_gray load to the ref field (ptr) load to avoid needing a load-load barrier between
50 // the two.
51 uintptr_t fake_address_dependency;
52 bool is_gray = IsGray(obj, &fake_address_dependency);
53 if (kEnableReadBarrierInvariantChecks) {
54 CHECK_EQ(fake_address_dependency, 0U) << obj << " rb_state=" << obj->GetReadBarrierState();
55 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080056 ref_addr = reinterpret_cast<mirror::HeapReference<MirrorType>*>(
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -070057 fake_address_dependency | reinterpret_cast<uintptr_t>(ref_addr));
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080058 MirrorType* ref = ref_addr->AsMirrorPtr();
59 MirrorType* old_ref = ref;
60 if (is_gray) {
61 // Slow-path.
62 ref = reinterpret_cast<MirrorType*>(Mark(ref));
63 // If kAlwaysUpdateField is true, update the field atomically. This may fail if mutator
Roland Levillaina1aa3b12016-10-26 13:03:38 +010064 // updates before us, but it's OK.
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080065 if (kAlwaysUpdateField && ref != old_ref) {
Mathieu Chartierfdd513d2017-06-01 11:26:50 -070066 obj->CasFieldStrongReleaseObjectWithoutWriteBarrier<false, false>(
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080067 offset, old_ref, ref);
68 }
Hiroshi Yamauchifa755182015-09-30 20:12:11 -070069 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080070 AssertToSpaceInvariant(obj, offset, ref);
71 return ref;
72 } else if (kUseBrooksReadBarrier) {
73 // To be implemented.
74 return ref_addr->AsMirrorPtr();
75 } else if (kUseTableLookupReadBarrier) {
76 MirrorType* ref = ref_addr->AsMirrorPtr();
77 MirrorType* old_ref = ref;
78 // The heap or the collector can be null at startup. TODO: avoid the need for this null check.
79 gc::Heap* heap = Runtime::Current()->GetHeap();
80 if (heap != nullptr && heap->GetReadBarrierTable()->IsSet(old_ref)) {
81 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
82 // Update the field atomically. This may fail if mutator updates before us, but it's ok.
83 if (ref != old_ref) {
Mathieu Chartierfdd513d2017-06-01 11:26:50 -070084 obj->CasFieldStrongReleaseObjectWithoutWriteBarrier<false, false>(
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080085 offset, old_ref, ref);
86 }
87 }
88 AssertToSpaceInvariant(obj, offset, ref);
89 return ref;
90 } else {
91 LOG(FATAL) << "Unexpected read barrier type";
92 UNREACHABLE();
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080093 }
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070094 } else {
95 // No read barrier.
96 return ref_addr->AsMirrorPtr();
97 }
98}
99
Hiroshi Yamauchicc78f3f2015-12-11 15:51:04 -0800100template <typename MirrorType, ReadBarrierOption kReadBarrierOption>
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700101inline MirrorType* ReadBarrier::BarrierForRoot(MirrorType** root,
102 GcRootSource* gc_root_source) {
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700103 MirrorType* ref = *root;
Hiroshi Yamauchi4cba0d92014-05-21 21:10:23 -0700104 const bool with_read_barrier = kReadBarrierOption == kWithReadBarrier;
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800105 if (kUseReadBarrier && with_read_barrier) {
106 if (kIsDebugBuild) {
107 Thread* const self = Thread::Current();
108 if (self != nullptr) {
109 CHECK_EQ(self->GetDebugDisallowReadBarrierCount(), 0u);
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700110 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800111 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800112 if (kUseBakerReadBarrier) {
113 // TODO: separate the read barrier code from the collector code more.
114 Thread* self = Thread::Current();
115 if (self != nullptr && self->GetIsGcMarking()) {
116 ref = reinterpret_cast<MirrorType*>(Mark(ref));
117 }
118 AssertToSpaceInvariant(gc_root_source, ref);
119 return ref;
120 } else if (kUseBrooksReadBarrier) {
121 // To be implemented.
122 return ref;
123 } else if (kUseTableLookupReadBarrier) {
124 Thread* self = Thread::Current();
125 if (self != nullptr &&
126 self->GetIsGcMarking() &&
127 Runtime::Current()->GetHeap()->GetReadBarrierTable()->IsSet(ref)) {
128 MirrorType* old_ref = ref;
129 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
130 // Update the field atomically. This may fail if mutator updates before us, but it's ok.
131 if (ref != old_ref) {
132 Atomic<mirror::Object*>* atomic_root = reinterpret_cast<Atomic<mirror::Object*>*>(root);
133 atomic_root->CompareExchangeStrongRelaxed(old_ref, ref);
134 }
135 }
136 AssertToSpaceInvariant(gc_root_source, ref);
137 return ref;
138 } else {
139 LOG(FATAL) << "Unexpected read barrier type";
140 UNREACHABLE();
141 }
Hiroshi Yamauchi4cba0d92014-05-21 21:10:23 -0700142 } else {
143 return ref;
144 }
145}
146
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700147// TODO: Reduce copy paste
Hiroshi Yamauchicc78f3f2015-12-11 15:51:04 -0800148template <typename MirrorType, ReadBarrierOption kReadBarrierOption>
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700149inline MirrorType* ReadBarrier::BarrierForRoot(mirror::CompressedReference<MirrorType>* root,
150 GcRootSource* gc_root_source) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700151 MirrorType* ref = root->AsMirrorPtr();
152 const bool with_read_barrier = kReadBarrierOption == kWithReadBarrier;
153 if (with_read_barrier && kUseBakerReadBarrier) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700154 // TODO: separate the read barrier code from the collector code more.
Hiroshi Yamauchi00370822015-08-18 14:47:25 -0700155 Thread* self = Thread::Current();
156 if (self != nullptr && self->GetIsGcMarking()) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700157 ref = reinterpret_cast<MirrorType*>(Mark(ref));
158 }
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700159 AssertToSpaceInvariant(gc_root_source, ref);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700160 return ref;
161 } else if (with_read_barrier && kUseBrooksReadBarrier) {
162 // To be implemented.
163 return ref;
164 } else if (with_read_barrier && kUseTableLookupReadBarrier) {
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700165 Thread* self = Thread::Current();
166 if (self != nullptr &&
167 self->GetIsGcMarking() &&
168 Runtime::Current()->GetHeap()->GetReadBarrierTable()->IsSet(ref)) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700169 auto old_ref = mirror::CompressedReference<MirrorType>::FromMirrorPtr(ref);
170 ref = reinterpret_cast<MirrorType*>(Mark(ref));
171 auto new_ref = mirror::CompressedReference<MirrorType>::FromMirrorPtr(ref);
172 // Update the field atomically. This may fail if mutator updates before us, but it's ok.
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700173 if (new_ref.AsMirrorPtr() != old_ref.AsMirrorPtr()) {
174 auto* atomic_root =
175 reinterpret_cast<Atomic<mirror::CompressedReference<MirrorType>>*>(root);
Hiroshi Yamauchifed3e2f2015-10-20 11:11:56 -0700176 atomic_root->CompareExchangeStrongRelaxed(old_ref, new_ref);
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700177 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700178 }
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700179 AssertToSpaceInvariant(gc_root_source, ref);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700180 return ref;
181 } else {
182 return ref;
183 }
184}
185
Nicolas Geoffray13056a12017-05-11 11:48:28 +0000186template <typename MirrorType>
187inline MirrorType* ReadBarrier::IsMarked(MirrorType* ref) {
188 // Only read-barrier configurations can have mutators run while
189 // the GC is marking.
190 if (!kUseReadBarrier) {
191 return ref;
192 }
193 // IsMarked does not handle null, so handle it here.
194 if (ref == nullptr) {
195 return nullptr;
196 }
197 // IsMarked should only be called when the GC is marking.
198 if (!Thread::Current()->GetIsGcMarking()) {
199 return ref;
200 }
201
202 return reinterpret_cast<MirrorType*>(
203 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->IsMarked(ref));
204}
205
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800206inline bool ReadBarrier::IsDuringStartup() {
207 gc::Heap* heap = Runtime::Current()->GetHeap();
208 if (heap == nullptr) {
209 // During startup, the heap can be null.
210 return true;
211 }
212 if (heap->CurrentCollectorType() != gc::kCollectorTypeCC) {
213 // CC isn't running.
214 return true;
215 }
216 gc::collector::ConcurrentCopying* collector = heap->ConcurrentCopyingCollector();
217 if (collector == nullptr) {
218 // During startup, the collector can be null.
219 return true;
220 }
221 return false;
222}
223
224inline void ReadBarrier::AssertToSpaceInvariant(mirror::Object* obj, MemberOffset offset,
225 mirror::Object* ref) {
Andreas Gampee3ce7872017-02-22 13:36:21 -0800226 if (kEnableToSpaceInvariantChecks) {
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800227 if (ref == nullptr || IsDuringStartup()) {
228 return;
229 }
230 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->
231 AssertToSpaceInvariant(obj, offset, ref);
232 }
233}
234
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700235inline void ReadBarrier::AssertToSpaceInvariant(GcRootSource* gc_root_source,
236 mirror::Object* ref) {
Andreas Gampee3ce7872017-02-22 13:36:21 -0800237 if (kEnableToSpaceInvariantChecks) {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700238 if (ref == nullptr || IsDuringStartup()) {
239 return;
240 }
241 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->
242 AssertToSpaceInvariant(gc_root_source, ref);
243 }
244}
245
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800246inline mirror::Object* ReadBarrier::Mark(mirror::Object* obj) {
Mathieu Chartier56fe2582016-07-14 13:30:03 -0700247 return Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->MarkFromReadBarrier(obj);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800248}
249
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -0700250inline bool ReadBarrier::IsGray(mirror::Object* obj, uintptr_t* fake_address_dependency) {
251 return obj->GetReadBarrierState(fake_address_dependency) == gray_state_;
252}
253
254inline bool ReadBarrier::IsGray(mirror::Object* obj) {
255 // Use a load-acquire to load the read barrier bit to avoid reordering with the subsequent load.
256 // GetReadBarrierStateAcquire() has load-acquire semantics.
257 return obj->GetReadBarrierStateAcquire() == gray_state_;
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800258}
259
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -0700260} // namespace art
261
262#endif // ART_RUNTIME_READ_BARRIER_INL_H_