blob: 0861375f215722f86aa44f73862bcfe485a85d9d [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"
Andreas Gampec15a2f42017-04-21 12:09:39 -070025#include "mirror/object-readbarrier-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070026#include "mirror/object_reference.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080027#include "mirror/reference.h"
28#include "runtime.h"
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070029
30namespace art {
31
Mathieu Chartierd08f66f2017-04-13 11:47:53 -070032// Disabled for performance reasons.
33static constexpr bool kCheckDebugDisallowReadBarrierCount = false;
34
Hans Boehmcc55e1d2017-07-27 15:28:07 -070035template <typename MirrorType, bool kIsVolatile, ReadBarrierOption kReadBarrierOption,
36 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));
Hans Boehmcc55e1d2017-07-27 15:28:07 -070058 MirrorType* ref = ref_addr->template AsMirrorPtr<kIsVolatile>();
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080059 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 Chartiera9746b92018-06-22 10:25:40 -070066 obj->CasFieldObjectWithoutWriteBarrier<false, false>(offset,
67 old_ref,
68 ref,
69 CASMode::kStrong,
70 std::memory_order_release);
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080071 }
Hiroshi Yamauchifa755182015-09-30 20:12:11 -070072 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080073 AssertToSpaceInvariant(obj, offset, ref);
74 return ref;
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080075 } else if (kUseTableLookupReadBarrier) {
Hans Boehmcc55e1d2017-07-27 15:28:07 -070076 MirrorType* ref = ref_addr->template AsMirrorPtr<kIsVolatile>();
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080077 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 Chartiera9746b92018-06-22 10:25:40 -070084 obj->CasFieldObjectWithoutWriteBarrier<false, false>(offset,
85 old_ref,
86 ref,
87 CASMode::kStrong,
88 std::memory_order_release);
Mathieu Chartierdfe02f62016-02-01 20:15:11 -080089 }
90 }
91 AssertToSpaceInvariant(obj, offset, ref);
92 return ref;
93 } else {
94 LOG(FATAL) << "Unexpected read barrier type";
95 UNREACHABLE();
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080096 }
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -070097 } else {
98 // No read barrier.
Hans Boehmcc55e1d2017-07-27 15:28:07 -070099 return ref_addr->template AsMirrorPtr<kIsVolatile>();
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -0700100 }
101}
102
Hiroshi Yamauchicc78f3f2015-12-11 15:51:04 -0800103template <typename MirrorType, ReadBarrierOption kReadBarrierOption>
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700104inline MirrorType* ReadBarrier::BarrierForRoot(MirrorType** root,
105 GcRootSource* gc_root_source) {
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700106 MirrorType* ref = *root;
Hiroshi Yamauchi4cba0d92014-05-21 21:10:23 -0700107 const bool with_read_barrier = kReadBarrierOption == kWithReadBarrier;
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800108 if (kUseReadBarrier && with_read_barrier) {
109 if (kIsDebugBuild) {
110 Thread* const self = Thread::Current();
111 if (self != nullptr) {
112 CHECK_EQ(self->GetDebugDisallowReadBarrierCount(), 0u);
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700113 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800114 }
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800115 if (kUseBakerReadBarrier) {
116 // TODO: separate the read barrier code from the collector code more.
117 Thread* self = Thread::Current();
118 if (self != nullptr && self->GetIsGcMarking()) {
119 ref = reinterpret_cast<MirrorType*>(Mark(ref));
120 }
121 AssertToSpaceInvariant(gc_root_source, ref);
122 return ref;
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800123 } 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) {
Orion Hodson88591fe2018-03-06 13:35:43 +0000132 Atomic<MirrorType*>* atomic_root = reinterpret_cast<Atomic<MirrorType*>*>(root);
Orion Hodson4557b382018-01-03 11:47:54 +0000133 atomic_root->CompareAndSetStrongRelaxed(old_ref, ref);
Mathieu Chartierdfe02f62016-02-01 20:15:11 -0800134 }
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;
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700161 } else if (with_read_barrier && kUseTableLookupReadBarrier) {
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700162 Thread* self = Thread::Current();
163 if (self != nullptr &&
164 self->GetIsGcMarking() &&
165 Runtime::Current()->GetHeap()->GetReadBarrierTable()->IsSet(ref)) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700166 auto old_ref = mirror::CompressedReference<MirrorType>::FromMirrorPtr(ref);
167 ref = reinterpret_cast<MirrorType*>(Mark(ref));
168 auto new_ref = mirror::CompressedReference<MirrorType>::FromMirrorPtr(ref);
169 // Update the field atomically. This may fail if mutator updates before us, but it's ok.
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700170 if (new_ref.AsMirrorPtr() != old_ref.AsMirrorPtr()) {
171 auto* atomic_root =
172 reinterpret_cast<Atomic<mirror::CompressedReference<MirrorType>>*>(root);
Orion Hodson4557b382018-01-03 11:47:54 +0000173 atomic_root->CompareAndSetStrongRelaxed(old_ref, new_ref);
Hiroshi Yamauchifa755182015-09-30 20:12:11 -0700174 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700175 }
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700176 AssertToSpaceInvariant(gc_root_source, ref);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700177 return ref;
178 } else {
179 return ref;
180 }
181}
182
Nicolas Geoffray13056a12017-05-11 11:48:28 +0000183template <typename MirrorType>
184inline MirrorType* ReadBarrier::IsMarked(MirrorType* ref) {
185 // Only read-barrier configurations can have mutators run while
186 // the GC is marking.
187 if (!kUseReadBarrier) {
188 return ref;
189 }
190 // IsMarked does not handle null, so handle it here.
191 if (ref == nullptr) {
192 return nullptr;
193 }
194 // IsMarked should only be called when the GC is marking.
195 if (!Thread::Current()->GetIsGcMarking()) {
196 return ref;
197 }
198
199 return reinterpret_cast<MirrorType*>(
200 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->IsMarked(ref));
201}
202
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800203inline bool ReadBarrier::IsDuringStartup() {
204 gc::Heap* heap = Runtime::Current()->GetHeap();
205 if (heap == nullptr) {
206 // During startup, the heap can be null.
207 return true;
208 }
209 if (heap->CurrentCollectorType() != gc::kCollectorTypeCC) {
210 // CC isn't running.
211 return true;
212 }
213 gc::collector::ConcurrentCopying* collector = heap->ConcurrentCopyingCollector();
214 if (collector == nullptr) {
215 // During startup, the collector can be null.
216 return true;
217 }
218 return false;
219}
220
221inline void ReadBarrier::AssertToSpaceInvariant(mirror::Object* obj, MemberOffset offset,
222 mirror::Object* ref) {
Andreas Gampee3ce7872017-02-22 13:36:21 -0800223 if (kEnableToSpaceInvariantChecks) {
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800224 if (ref == nullptr || IsDuringStartup()) {
225 return;
226 }
227 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->
228 AssertToSpaceInvariant(obj, offset, ref);
229 }
230}
231
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700232inline void ReadBarrier::AssertToSpaceInvariant(GcRootSource* gc_root_source,
233 mirror::Object* ref) {
Andreas Gampee3ce7872017-02-22 13:36:21 -0800234 if (kEnableToSpaceInvariantChecks) {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -0700235 if (ref == nullptr || IsDuringStartup()) {
236 return;
237 }
238 Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->
239 AssertToSpaceInvariant(gc_root_source, ref);
240 }
241}
242
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800243inline mirror::Object* ReadBarrier::Mark(mirror::Object* obj) {
Mathieu Chartier56fe2582016-07-14 13:30:03 -0700244 return Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->MarkFromReadBarrier(obj);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800245}
246
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -0700247inline bool ReadBarrier::IsGray(mirror::Object* obj, uintptr_t* fake_address_dependency) {
Roland Levillain14e5a292018-06-28 12:00:56 +0100248 return obj->GetReadBarrierState(fake_address_dependency) == kGrayState;
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -0700249}
250
251inline bool ReadBarrier::IsGray(mirror::Object* obj) {
252 // Use a load-acquire to load the read barrier bit to avoid reordering with the subsequent load.
253 // GetReadBarrierStateAcquire() has load-acquire semantics.
Roland Levillain14e5a292018-06-28 12:00:56 +0100254 return obj->GetReadBarrierStateAcquire() == kGrayState;
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800255}
256
Hiroshi Yamauchi800ac2d2014-04-02 17:32:54 -0700257} // namespace art
258
259#endif // ART_RUNTIME_READ_BARRIER_INL_H_