blob: b9e89253ff0dc5b6b3d405073bca40b39d384c04 [file] [log] [blame]
Ian Rogers1d54e732013-05-02 21:10:01 -07001/*
2 * Copyright (C) 2012 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#include "mod_union_table.h"
18
Ian Rogers700a4022014-05-19 16:49:03 -070019#include <memory>
20
Ian Rogers1d54e732013-05-02 21:10:01 -070021#include "base/stl_util.h"
Mathieu Chartier4858a932015-01-23 13:18:53 -080022#include "bitmap-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070023#include "card_table-inl.h"
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070024#include "gc/accounting/space_bitmap-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070025#include "gc/heap.h"
Lei Li3befba42015-01-23 16:37:59 +080026#include "gc/space/image_space.h"
Mathieu Chartier97509952015-07-13 14:35:43 -070027#include "gc/space/space.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "mirror/object-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "space_bitmap-inl.h"
30#include "thread.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070032using ::art::mirror::Object;
Ian Rogers1d54e732013-05-02 21:10:01 -070033
34namespace art {
35namespace gc {
36namespace accounting {
37
Mathieu Chartier4858a932015-01-23 13:18:53 -080038class ModUnionAddToCardSetVisitor {
Ian Rogers1d54e732013-05-02 21:10:01 -070039 public:
Mathieu Chartier4858a932015-01-23 13:18:53 -080040 explicit ModUnionAddToCardSetVisitor(ModUnionTable::CardSet* const cleared_cards)
41 : cleared_cards_(cleared_cards) {
Ian Rogers1d54e732013-05-02 21:10:01 -070042 }
43
Mathieu Chartier4858a932015-01-23 13:18:53 -080044 inline void operator()(uint8_t* card, uint8_t expected_value,
45 uint8_t new_value ATTRIBUTE_UNUSED) const {
Ian Rogers1d54e732013-05-02 21:10:01 -070046 if (expected_value == CardTable::kCardDirty) {
47 cleared_cards_->insert(card);
48 }
49 }
50
51 private:
Mathieu Chartier0a9dc052013-07-25 11:01:28 -070052 ModUnionTable::CardSet* const cleared_cards_;
Ian Rogers1d54e732013-05-02 21:10:01 -070053};
54
Mathieu Chartier4858a932015-01-23 13:18:53 -080055class ModUnionAddToCardBitmapVisitor {
Ian Rogers1d54e732013-05-02 21:10:01 -070056 public:
Mathieu Chartier4858a932015-01-23 13:18:53 -080057 explicit ModUnionAddToCardBitmapVisitor(ModUnionTable::CardBitmap* bitmap,
58 CardTable* card_table)
59 : bitmap_(bitmap), card_table_(card_table) {
Ian Rogers1d54e732013-05-02 21:10:01 -070060 }
61
Mathieu Chartier4858a932015-01-23 13:18:53 -080062 inline void operator()(uint8_t* card, uint8_t expected_value,
63 uint8_t new_value ATTRIBUTE_UNUSED) const {
64 if (expected_value == CardTable::kCardDirty) {
65 // We want the address the card represents, not the address of the card.
66 bitmap_->Set(reinterpret_cast<uintptr_t>(card_table_->AddrFromCard(card)));
67 }
68 }
69
70 private:
71 ModUnionTable::CardBitmap* const bitmap_;
72 CardTable* const card_table_;
73};
74
75class ModUnionAddToCardVectorVisitor {
76 public:
77 explicit ModUnionAddToCardVectorVisitor(std::vector<uint8_t*>* cleared_cards)
78 : cleared_cards_(cleared_cards) {
79 }
80
81 void operator()(uint8_t* card, uint8_t expected_card, uint8_t new_card ATTRIBUTE_UNUSED) const {
Ian Rogers1d54e732013-05-02 21:10:01 -070082 if (expected_card == CardTable::kCardDirty) {
83 cleared_cards_->push_back(card);
84 }
85 }
Mathieu Chartier4858a932015-01-23 13:18:53 -080086
Ian Rogers1d54e732013-05-02 21:10:01 -070087 private:
Ian Rogers13735952014-10-08 12:43:28 -070088 std::vector<uint8_t*>* const cleared_cards_;
Ian Rogers1d54e732013-05-02 21:10:01 -070089};
90
Mathieu Chartier11409ae2013-09-23 11:49:36 -070091class ModUnionUpdateObjectReferencesVisitor {
Ian Rogers1d54e732013-05-02 21:10:01 -070092 public:
Mathieu Chartier97509952015-07-13 14:35:43 -070093 ModUnionUpdateObjectReferencesVisitor(MarkObjectVisitor* visitor,
Mathieu Chartiere4cab172014-08-19 18:24:04 -070094 space::ContinuousSpace* from_space,
Mathieu Chartier4858a932015-01-23 13:18:53 -080095 space::ContinuousSpace* immune_space,
Mathieu Chartiere4cab172014-08-19 18:24:04 -070096 bool* contains_reference_to_other_space)
Mathieu Chartier97509952015-07-13 14:35:43 -070097 : visitor_(visitor), from_space_(from_space), immune_space_(immune_space),
Mathieu Chartiere4cab172014-08-19 18:24:04 -070098 contains_reference_to_other_space_(contains_reference_to_other_space) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -070099 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700100
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700101 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartier4858a932015-01-23 13:18:53 -0800102 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700103 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700104 MarkReference(obj->GetFieldObjectReferenceAddr(offset));
Ian Rogers1d54e732013-05-02 21:10:01 -0700105 }
106
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700107 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
108 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700109 VisitRoot(root);
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700110 }
111
112 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
113 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700114 MarkReference(root);
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700115 }
116
Ian Rogers1d54e732013-05-02 21:10:01 -0700117 private:
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700118 template<bool kPoisonReferences>
119 void MarkReference(mirror::ObjectReference<kPoisonReferences, mirror::Object>* obj_ptr) const
120 SHARED_REQUIRES(Locks::mutator_lock_) {
121 // Only add the reference if it is non null and fits our criteria.
122 mirror::Object* ref = obj_ptr->AsMirrorPtr();
123 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
124 *contains_reference_to_other_space_ = true;
125 mirror::Object* new_object = visitor_->MarkObject(ref);
126 if (ref != new_object) {
127 obj_ptr->Assign(new_object);
128 }
129 }
130 }
131
Mathieu Chartier97509952015-07-13 14:35:43 -0700132 MarkObjectVisitor* const visitor_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700133 // Space which we are scanning
134 space::ContinuousSpace* const from_space_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800135 space::ContinuousSpace* const immune_space_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700136 // Set if we have any references to another space.
137 bool* const contains_reference_to_other_space_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700138};
139
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700140class ModUnionScanImageRootVisitor {
141 public:
Mathieu Chartier4858a932015-01-23 13:18:53 -0800142 // Immune space is any other space which we don't care about references to. Currently this is
143 // the image space in the case of the zygote mod union table.
Mathieu Chartier97509952015-07-13 14:35:43 -0700144 ModUnionScanImageRootVisitor(MarkObjectVisitor* visitor,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800145 space::ContinuousSpace* from_space,
146 space::ContinuousSpace* immune_space,
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700147 bool* contains_reference_to_other_space)
Mathieu Chartier97509952015-07-13 14:35:43 -0700148 : visitor_(visitor), from_space_(from_space), immune_space_(immune_space),
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700149 contains_reference_to_other_space_(contains_reference_to_other_space) {}
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700150
151 void operator()(Object* root) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700152 REQUIRES(Locks::heap_bitmap_lock_)
153 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800154 DCHECK(root != nullptr);
Mathieu Chartier97509952015-07-13 14:35:43 -0700155 ModUnionUpdateObjectReferencesVisitor ref_visitor(visitor_, from_space_, immune_space_,
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700156 contains_reference_to_other_space_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700157 root->VisitReferences<kMovingClasses>(ref_visitor, VoidFunctor());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700158 }
159
160 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700161 MarkObjectVisitor* const visitor_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700162 // Space which we are scanning
163 space::ContinuousSpace* const from_space_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800164 space::ContinuousSpace* const immune_space_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700165 // Set if we have any references to another space.
166 bool* const contains_reference_to_other_space_;
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700167};
168
169void ModUnionTableReferenceCache::ClearCards() {
Ian Rogers1d54e732013-05-02 21:10:01 -0700170 CardTable* card_table = GetHeap()->GetCardTable();
Mathieu Chartier4858a932015-01-23 13:18:53 -0800171 ModUnionAddToCardSetVisitor visitor(&cleared_cards_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700172 // Clear dirty cards in the this space and update the corresponding mod-union bits.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700173 card_table->ModifyCardsAtomic(space_->Begin(), space_->End(), AgeCardVisitor(), visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700174}
175
176class AddToReferenceArrayVisitor {
177 public:
178 explicit AddToReferenceArrayVisitor(ModUnionTableReferenceCache* mod_union_table,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800179 std::vector<mirror::HeapReference<Object>*>* references)
180 : mod_union_table_(mod_union_table), references_(references) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700181 }
182
183 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700184 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700185 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier407f7022014-02-18 14:37:05 -0800186 mirror::HeapReference<Object>* ref_ptr = obj->GetFieldObjectReferenceAddr(offset);
187 mirror::Object* ref = ref_ptr->AsMirrorPtr();
Ian Rogers1d54e732013-05-02 21:10:01 -0700188 // Only add the reference if it is non null and fits our criteria.
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700189 if (ref != nullptr && mod_union_table_->ShouldAddReference(ref)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700190 // Push the adddress of the reference.
Mathieu Chartier407f7022014-02-18 14:37:05 -0800191 references_->push_back(ref_ptr);
Ian Rogers1d54e732013-05-02 21:10:01 -0700192 }
193 }
194
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700195 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
196 SHARED_REQUIRES(Locks::mutator_lock_) {
197 if (kIsDebugBuild && !root->IsNull()) {
198 VisitRoot(root);
199 }
200 }
201
202 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
203 SHARED_REQUIRES(Locks::mutator_lock_) {
204 DCHECK(!mod_union_table_->ShouldAddReference(root->AsMirrorPtr()));
205 }
206
Ian Rogers1d54e732013-05-02 21:10:01 -0700207 private:
208 ModUnionTableReferenceCache* const mod_union_table_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800209 std::vector<mirror::HeapReference<Object>*>* const references_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700210};
211
212class ModUnionReferenceVisitor {
213 public:
214 explicit ModUnionReferenceVisitor(ModUnionTableReferenceCache* const mod_union_table,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800215 std::vector<mirror::HeapReference<Object>*>* references)
Ian Rogers1d54e732013-05-02 21:10:01 -0700216 : mod_union_table_(mod_union_table),
217 references_(references) {
218 }
219
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700220 void operator()(Object* obj) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700221 SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700222 // We don't have an early exit since we use the visitor pattern, an early
223 // exit should significantly speed this up.
224 AddToReferenceArrayVisitor visitor(mod_union_table_, references_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700225 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Ian Rogers1d54e732013-05-02 21:10:01 -0700226 }
227 private:
228 ModUnionTableReferenceCache* const mod_union_table_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800229 std::vector<mirror::HeapReference<Object>*>* const references_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700230};
231
232class CheckReferenceVisitor {
233 public:
234 explicit CheckReferenceVisitor(ModUnionTableReferenceCache* mod_union_table,
235 const std::set<const Object*>& references)
236 : mod_union_table_(mod_union_table),
237 references_(references) {
238 }
239
240 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700241 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700242 SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700243 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700244 if (ref != nullptr && mod_union_table_->ShouldAddReference(ref) &&
Ian Rogers1d54e732013-05-02 21:10:01 -0700245 references_.find(ref) == references_.end()) {
Mathieu Chartier407f7022014-02-18 14:37:05 -0800246 Heap* heap = mod_union_table_->GetHeap();
Ian Rogers1d54e732013-05-02 21:10:01 -0700247 space::ContinuousSpace* from_space = heap->FindContinuousSpaceFromObject(obj, false);
248 space::ContinuousSpace* to_space = heap->FindContinuousSpaceFromObject(ref, false);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800249 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << PrettyTypeOf(obj)
250 << ")" << "References " << reinterpret_cast<const void*>(ref) << "(" << PrettyTypeOf(ref)
251 << ") without being in mod-union table";
252 LOG(INFO) << "FromSpace " << from_space->GetName() << " type "
253 << from_space->GetGcRetentionPolicy();
254 LOG(INFO) << "ToSpace " << to_space->GetName() << " type "
255 << to_space->GetGcRetentionPolicy();
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700256 heap->DumpSpaces(LOG(INFO));
Ian Rogers1d54e732013-05-02 21:10:01 -0700257 LOG(FATAL) << "FATAL ERROR";
258 }
259 }
260
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700261 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
262 SHARED_REQUIRES(Locks::mutator_lock_) {
263 if (kIsDebugBuild && !root->IsNull()) {
264 VisitRoot(root);
265 }
266 }
267
268 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
269 SHARED_REQUIRES(Locks::mutator_lock_) {
270 DCHECK(!mod_union_table_->ShouldAddReference(root->AsMirrorPtr()));
271 }
272
Ian Rogers1d54e732013-05-02 21:10:01 -0700273 private:
274 ModUnionTableReferenceCache* const mod_union_table_;
275 const std::set<const Object*>& references_;
276};
277
278class ModUnionCheckReferences {
279 public:
Brian Carlstromdf629502013-07-17 22:39:56 -0700280 explicit ModUnionCheckReferences(ModUnionTableReferenceCache* mod_union_table,
281 const std::set<const Object*>& references)
Mathieu Chartier90443472015-07-16 20:32:27 -0700282 REQUIRES(Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -0700283 : mod_union_table_(mod_union_table), references_(references) {
284 }
285
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700286 void operator()(Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -0700287 Locks::heap_bitmap_lock_->AssertSharedHeld(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -0700288 CheckReferenceVisitor visitor(mod_union_table_, references_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700289 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Ian Rogers1d54e732013-05-02 21:10:01 -0700290 }
291
292 private:
293 ModUnionTableReferenceCache* const mod_union_table_;
294 const std::set<const Object*>& references_;
295};
296
297void ModUnionTableReferenceCache::Verify() {
298 // Start by checking that everything in the mod union table is marked.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700299 for (const auto& ref_pair : references_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 for (mirror::HeapReference<Object>* ref : ref_pair.second) {
301 CHECK(heap_->IsLiveObjectLocked(ref->AsMirrorPtr()));
Ian Rogers1d54e732013-05-02 21:10:01 -0700302 }
303 }
304
305 // Check the references of each clean card which is also in the mod union table.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700306 CardTable* card_table = heap_->GetCardTable();
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700307 ContinuousSpaceBitmap* live_bitmap = space_->GetLiveBitmap();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700308 for (const auto& ref_pair : references_) {
Ian Rogers13735952014-10-08 12:43:28 -0700309 const uint8_t* card = ref_pair.first;
Ian Rogers1d54e732013-05-02 21:10:01 -0700310 if (*card == CardTable::kCardClean) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700311 std::set<const Object*> reference_set;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800312 for (mirror::HeapReference<Object>* obj_ptr : ref_pair.second) {
313 reference_set.insert(obj_ptr->AsMirrorPtr());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700314 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700315 ModUnionCheckReferences visitor(this, reference_set);
316 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card));
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700317 live_bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700318 }
319 }
320}
321
322void ModUnionTableReferenceCache::Dump(std::ostream& os) {
323 CardTable* card_table = heap_->GetCardTable();
Ian Rogers1d54e732013-05-02 21:10:01 -0700324 os << "ModUnionTable cleared cards: [";
Ian Rogers13735952014-10-08 12:43:28 -0700325 for (uint8_t* card_addr : cleared_cards_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700326 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
Ian Rogers1d54e732013-05-02 21:10:01 -0700327 uintptr_t end = start + CardTable::kCardSize;
328 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << ",";
329 }
330 os << "]\nModUnionTable references: [";
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700331 for (const auto& ref_pair : references_) {
Ian Rogers13735952014-10-08 12:43:28 -0700332 const uint8_t* card_addr = ref_pair.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -0700333 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
Ian Rogers1d54e732013-05-02 21:10:01 -0700334 uintptr_t end = start + CardTable::kCardSize;
335 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "->{";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800336 for (mirror::HeapReference<Object>* ref : ref_pair.second) {
337 os << reinterpret_cast<const void*>(ref->AsMirrorPtr()) << ",";
Ian Rogers1d54e732013-05-02 21:10:01 -0700338 }
339 os << "},";
340 }
341}
342
Mathieu Chartier97509952015-07-13 14:35:43 -0700343void ModUnionTableReferenceCache::UpdateAndMarkReferences(MarkObjectVisitor* visitor) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700344 CardTable* card_table = heap_->GetCardTable();
Ian Rogers1d54e732013-05-02 21:10:01 -0700345
Ian Rogersef7d42f2014-01-06 12:55:46 -0800346 std::vector<mirror::HeapReference<Object>*> cards_references;
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700347 ModUnionReferenceVisitor add_visitor(this, &cards_references);
Ian Rogers1d54e732013-05-02 21:10:01 -0700348
Mathieu Chartier02e25112013-08-14 16:14:24 -0700349 for (const auto& card : cleared_cards_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700350 // Clear and re-compute alloc space references associated with this card.
351 cards_references.clear();
352 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card));
353 uintptr_t end = start + CardTable::kCardSize;
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700354 auto* space = heap_->FindContinuousSpaceFromObject(reinterpret_cast<Object*>(start), false);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700355 DCHECK(space != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700356 ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700357 live_bitmap->VisitMarkedRange(start, end, add_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700358
359 // Update the corresponding references for the card.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700360 auto found = references_.find(card);
Ian Rogers1d54e732013-05-02 21:10:01 -0700361 if (found == references_.end()) {
362 if (cards_references.empty()) {
363 // No reason to add empty array.
364 continue;
365 }
366 references_.Put(card, cards_references);
367 } else {
368 found->second = cards_references;
369 }
370 }
371 cleared_cards_.clear();
Ian Rogers1d54e732013-05-02 21:10:01 -0700372 size_t count = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -0700373 for (const auto& ref : references_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800374 for (mirror::HeapReference<Object>* obj_ptr : ref.second) {
Mathieu Chartier97509952015-07-13 14:35:43 -0700375 visitor->MarkHeapReference(obj_ptr);
Ian Rogers1d54e732013-05-02 21:10:01 -0700376 }
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700377 count += ref.second.size();
Ian Rogers1d54e732013-05-02 21:10:01 -0700378 }
379 if (VLOG_IS_ON(heap)) {
380 VLOG(gc) << "Marked " << count << " references in mod union table";
381 }
382}
383
Mathieu Chartier4858a932015-01-23 13:18:53 -0800384ModUnionTableCardCache::ModUnionTableCardCache(const std::string& name, Heap* heap,
385 space::ContinuousSpace* space)
386 : ModUnionTable(name, heap, space) {
387 // Normally here we could use End() instead of Limit(), but for testing we may want to have a
388 // mod-union table for a space which can still grow.
389 if (!space->IsImageSpace()) {
390 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(space->Limit()), CardTable::kCardSize);
391 }
392 card_bitmap_.reset(CardBitmap::Create(
393 "mod union bitmap", reinterpret_cast<uintptr_t>(space->Begin()),
394 RoundUp(reinterpret_cast<uintptr_t>(space->Limit()), CardTable::kCardSize)));
395}
396
397class CardBitVisitor {
398 public:
Mathieu Chartier97509952015-07-13 14:35:43 -0700399 CardBitVisitor(MarkObjectVisitor* visitor, space::ContinuousSpace* space,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800400 space::ContinuousSpace* immune_space, ModUnionTable::CardBitmap* card_bitmap)
Mathieu Chartier97509952015-07-13 14:35:43 -0700401 : visitor_(visitor), space_(space), immune_space_(immune_space),
Mathieu Chartier4858a932015-01-23 13:18:53 -0800402 bitmap_(space->GetLiveBitmap()), card_bitmap_(card_bitmap) {
403 DCHECK(immune_space_ != nullptr);
404 }
405
406 void operator()(size_t bit_index) const {
407 const uintptr_t start = card_bitmap_->AddrFromBitIndex(bit_index);
408 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)))
409 << start << " " << *space_;
410 bool reference_to_other_space = false;
Mathieu Chartier97509952015-07-13 14:35:43 -0700411 ModUnionScanImageRootVisitor scan_visitor(visitor_, space_, immune_space_,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800412 &reference_to_other_space);
413 bitmap_->VisitMarkedRange(start, start + CardTable::kCardSize, scan_visitor);
414 if (!reference_to_other_space) {
415 // No non null reference to another space, clear the bit.
416 card_bitmap_->ClearBit(bit_index);
417 }
418 }
419
420 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700421 MarkObjectVisitor* const visitor_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800422 space::ContinuousSpace* const space_;
423 space::ContinuousSpace* const immune_space_;
424 ContinuousSpaceBitmap* const bitmap_;
425 ModUnionTable::CardBitmap* const card_bitmap_;
426};
427
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700428void ModUnionTableCardCache::ClearCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800429 CardTable* const card_table = GetHeap()->GetCardTable();
430 ModUnionAddToCardBitmapVisitor visitor(card_bitmap_.get(), card_table);
Ian Rogers1d54e732013-05-02 21:10:01 -0700431 // Clear dirty cards in the this space and update the corresponding mod-union bits.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700432 card_table->ModifyCardsAtomic(space_->Begin(), space_->End(), AgeCardVisitor(), visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700433}
434
435// Mark all references to the alloc space(s).
Mathieu Chartier97509952015-07-13 14:35:43 -0700436void ModUnionTableCardCache::UpdateAndMarkReferences(MarkObjectVisitor* visitor) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800437 auto* image_space = heap_->GetImageSpace();
438 // If we don't have an image space, just pass in space_ as the immune space. Pass in the same
439 // space_ instead of image_space to avoid a null check in ModUnionUpdateObjectReferencesVisitor.
Mathieu Chartier97509952015-07-13 14:35:43 -0700440 CardBitVisitor bit_visitor(visitor, space_, image_space != nullptr ? image_space : space_,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800441 card_bitmap_.get());
442 card_bitmap_->VisitSetBits(
Mathieu Chartier97509952015-07-13 14:35:43 -0700443 0, RoundUp(space_->Size(), CardTable::kCardSize) / CardTable::kCardSize, bit_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700444}
445
446void ModUnionTableCardCache::Dump(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700447 os << "ModUnionTable dirty cards: [";
Mathieu Chartier4858a932015-01-23 13:18:53 -0800448 // TODO: Find cleaner way of doing this.
449 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
450 addr += CardTable::kCardSize) {
451 if (card_bitmap_->Test(reinterpret_cast<uintptr_t>(addr))) {
452 os << reinterpret_cast<void*>(addr) << "-"
453 << reinterpret_cast<void*>(addr + CardTable::kCardSize) << "\n";
454 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700455 }
456 os << "]";
457}
458
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700459void ModUnionTableCardCache::SetCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800460 // Only clean up to the end since there cannot be any objects past the End() of the space.
Ian Rogers13735952014-10-08 12:43:28 -0700461 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700462 addr += CardTable::kCardSize) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800463 card_bitmap_->Set(reinterpret_cast<uintptr_t>(addr));
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700464 }
465}
466
Mathieu Chartier4858a932015-01-23 13:18:53 -0800467bool ModUnionTableCardCache::ContainsCardFor(uintptr_t addr) {
468 return card_bitmap_->Test(addr);
469}
470
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700471void ModUnionTableReferenceCache::SetCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800472 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
473 addr += CardTable::kCardSize) {
474 cleared_cards_.insert(heap_->GetCardTable()->CardFromAddr(reinterpret_cast<void*>(addr)));
475 }
476}
477
478bool ModUnionTableReferenceCache::ContainsCardFor(uintptr_t addr) {
479 auto* card_ptr = heap_->GetCardTable()->CardFromAddr(reinterpret_cast<void*>(addr));
480 return cleared_cards_.find(card_ptr) != cleared_cards_.end() ||
481 references_.find(card_ptr) != references_.end();
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700482}
483
Ian Rogers1d54e732013-05-02 21:10:01 -0700484} // namespace accounting
485} // namespace gc
486} // namespace art