blob: b5ab3d94b7ebb72c9fa37357bad2bd687d9a5dc6 [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:
Roland Levillain3887c462015-08-12 18:15:42 +010057 ModUnionAddToCardBitmapVisitor(ModUnionTable::CardBitmap* bitmap, CardTable* card_table)
Mathieu Chartier4858a932015-01-23 13:18:53 -080058 : bitmap_(bitmap), card_table_(card_table) {
Ian Rogers1d54e732013-05-02 21:10:01 -070059 }
60
Mathieu Chartier4858a932015-01-23 13:18:53 -080061 inline void operator()(uint8_t* card, uint8_t expected_value,
62 uint8_t new_value ATTRIBUTE_UNUSED) const {
63 if (expected_value == CardTable::kCardDirty) {
64 // We want the address the card represents, not the address of the card.
65 bitmap_->Set(reinterpret_cast<uintptr_t>(card_table_->AddrFromCard(card)));
66 }
67 }
68
69 private:
70 ModUnionTable::CardBitmap* const bitmap_;
71 CardTable* const card_table_;
72};
73
74class ModUnionAddToCardVectorVisitor {
75 public:
76 explicit ModUnionAddToCardVectorVisitor(std::vector<uint8_t*>* cleared_cards)
77 : cleared_cards_(cleared_cards) {
78 }
79
80 void operator()(uint8_t* card, uint8_t expected_card, uint8_t new_card ATTRIBUTE_UNUSED) const {
Ian Rogers1d54e732013-05-02 21:10:01 -070081 if (expected_card == CardTable::kCardDirty) {
82 cleared_cards_->push_back(card);
83 }
84 }
Mathieu Chartier4858a932015-01-23 13:18:53 -080085
Ian Rogers1d54e732013-05-02 21:10:01 -070086 private:
Ian Rogers13735952014-10-08 12:43:28 -070087 std::vector<uint8_t*>* const cleared_cards_;
Ian Rogers1d54e732013-05-02 21:10:01 -070088};
89
Mathieu Chartier11409ae2013-09-23 11:49:36 -070090class ModUnionUpdateObjectReferencesVisitor {
Ian Rogers1d54e732013-05-02 21:10:01 -070091 public:
Mathieu Chartier97509952015-07-13 14:35:43 -070092 ModUnionUpdateObjectReferencesVisitor(MarkObjectVisitor* visitor,
Mathieu Chartiere4cab172014-08-19 18:24:04 -070093 space::ContinuousSpace* from_space,
Mathieu Chartier4858a932015-01-23 13:18:53 -080094 space::ContinuousSpace* immune_space,
Mathieu Chartiere4cab172014-08-19 18:24:04 -070095 bool* contains_reference_to_other_space)
Mathieu Chartier97509952015-07-13 14:35:43 -070096 : visitor_(visitor), from_space_(from_space), immune_space_(immune_space),
Mathieu Chartiere4cab172014-08-19 18:24:04 -070097 contains_reference_to_other_space_(contains_reference_to_other_space) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -070098 }
Ian Rogers1d54e732013-05-02 21:10:01 -070099
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700100 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartier4858a932015-01-23 13:18:53 -0800101 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700102 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700103 MarkReference(obj->GetFieldObjectReferenceAddr(offset));
Ian Rogers1d54e732013-05-02 21:10:01 -0700104 }
105
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700106 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
107 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700108 VisitRoot(root);
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700109 }
110
111 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
112 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700113 MarkReference(root);
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700114 }
115
Ian Rogers1d54e732013-05-02 21:10:01 -0700116 private:
Mathieu Chartierd82e89e2015-08-05 10:10:07 -0700117 template<bool kPoisonReferences>
118 void MarkReference(mirror::ObjectReference<kPoisonReferences, mirror::Object>* obj_ptr) const
119 SHARED_REQUIRES(Locks::mutator_lock_) {
120 // Only add the reference if it is non null and fits our criteria.
121 mirror::Object* ref = obj_ptr->AsMirrorPtr();
122 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
123 *contains_reference_to_other_space_ = true;
124 mirror::Object* new_object = visitor_->MarkObject(ref);
125 if (ref != new_object) {
126 obj_ptr->Assign(new_object);
127 }
128 }
129 }
130
Mathieu Chartier97509952015-07-13 14:35:43 -0700131 MarkObjectVisitor* const visitor_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700132 // Space which we are scanning
133 space::ContinuousSpace* const from_space_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800134 space::ContinuousSpace* const immune_space_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700135 // Set if we have any references to another space.
136 bool* const contains_reference_to_other_space_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700137};
138
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700139class ModUnionScanImageRootVisitor {
140 public:
Mathieu Chartier4858a932015-01-23 13:18:53 -0800141 // Immune space is any other space which we don't care about references to. Currently this is
142 // the image space in the case of the zygote mod union table.
Mathieu Chartier97509952015-07-13 14:35:43 -0700143 ModUnionScanImageRootVisitor(MarkObjectVisitor* visitor,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800144 space::ContinuousSpace* from_space,
145 space::ContinuousSpace* immune_space,
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700146 bool* contains_reference_to_other_space)
Mathieu Chartier97509952015-07-13 14:35:43 -0700147 : visitor_(visitor), from_space_(from_space), immune_space_(immune_space),
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700148 contains_reference_to_other_space_(contains_reference_to_other_space) {}
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700149
150 void operator()(Object* root) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700151 REQUIRES(Locks::heap_bitmap_lock_)
152 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800153 DCHECK(root != nullptr);
Mathieu Chartier97509952015-07-13 14:35:43 -0700154 ModUnionUpdateObjectReferencesVisitor ref_visitor(visitor_, from_space_, immune_space_,
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700155 contains_reference_to_other_space_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700156 root->VisitReferences<kMovingClasses>(ref_visitor, VoidFunctor());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700157 }
158
159 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700160 MarkObjectVisitor* const visitor_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700161 // Space which we are scanning
162 space::ContinuousSpace* const from_space_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800163 space::ContinuousSpace* const immune_space_;
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700164 // Set if we have any references to another space.
165 bool* const contains_reference_to_other_space_;
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700166};
167
168void ModUnionTableReferenceCache::ClearCards() {
Ian Rogers1d54e732013-05-02 21:10:01 -0700169 CardTable* card_table = GetHeap()->GetCardTable();
Mathieu Chartier4858a932015-01-23 13:18:53 -0800170 ModUnionAddToCardSetVisitor visitor(&cleared_cards_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700171 // Clear dirty cards in the this space and update the corresponding mod-union bits.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700172 card_table->ModifyCardsAtomic(space_->Begin(), space_->End(), AgeCardVisitor(), visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700173}
174
175class AddToReferenceArrayVisitor {
176 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100177 AddToReferenceArrayVisitor(ModUnionTableReferenceCache* mod_union_table,
178 std::vector<mirror::HeapReference<Object>*>* references)
179 : mod_union_table_(mod_union_table), references_(references) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700180 }
181
182 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700183 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700184 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier407f7022014-02-18 14:37:05 -0800185 mirror::HeapReference<Object>* ref_ptr = obj->GetFieldObjectReferenceAddr(offset);
186 mirror::Object* ref = ref_ptr->AsMirrorPtr();
Ian Rogers1d54e732013-05-02 21:10:01 -0700187 // Only add the reference if it is non null and fits our criteria.
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700188 if (ref != nullptr && mod_union_table_->ShouldAddReference(ref)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700189 // Push the adddress of the reference.
Mathieu Chartier407f7022014-02-18 14:37:05 -0800190 references_->push_back(ref_ptr);
Ian Rogers1d54e732013-05-02 21:10:01 -0700191 }
192 }
193
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700194 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
195 SHARED_REQUIRES(Locks::mutator_lock_) {
196 if (kIsDebugBuild && !root->IsNull()) {
197 VisitRoot(root);
198 }
199 }
200
201 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
202 SHARED_REQUIRES(Locks::mutator_lock_) {
203 DCHECK(!mod_union_table_->ShouldAddReference(root->AsMirrorPtr()));
204 }
205
Ian Rogers1d54e732013-05-02 21:10:01 -0700206 private:
207 ModUnionTableReferenceCache* const mod_union_table_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800208 std::vector<mirror::HeapReference<Object>*>* const references_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700209};
210
211class ModUnionReferenceVisitor {
212 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100213 ModUnionReferenceVisitor(ModUnionTableReferenceCache* const mod_union_table,
214 std::vector<mirror::HeapReference<Object>*>* references)
215 : mod_union_table_(mod_union_table),
216 references_(references) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700217 }
218
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700219 void operator()(Object* obj) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700220 SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700221 // We don't have an early exit since we use the visitor pattern, an early
222 // exit should significantly speed this up.
223 AddToReferenceArrayVisitor visitor(mod_union_table_, references_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700224 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Ian Rogers1d54e732013-05-02 21:10:01 -0700225 }
226 private:
227 ModUnionTableReferenceCache* const mod_union_table_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800228 std::vector<mirror::HeapReference<Object>*>* const references_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700229};
230
231class CheckReferenceVisitor {
232 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100233 CheckReferenceVisitor(ModUnionTableReferenceCache* mod_union_table,
234 const std::set<const Object*>& references)
235 : mod_union_table_(mod_union_table),
236 references_(references) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700237 }
238
239 // Extra parameters are required since we use this same visitor signature for checking objects.
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700240 void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700241 SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700242 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700243 if (ref != nullptr && mod_union_table_->ShouldAddReference(ref) &&
Ian Rogers1d54e732013-05-02 21:10:01 -0700244 references_.find(ref) == references_.end()) {
Mathieu Chartier407f7022014-02-18 14:37:05 -0800245 Heap* heap = mod_union_table_->GetHeap();
Ian Rogers1d54e732013-05-02 21:10:01 -0700246 space::ContinuousSpace* from_space = heap->FindContinuousSpaceFromObject(obj, false);
247 space::ContinuousSpace* to_space = heap->FindContinuousSpaceFromObject(ref, false);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800248 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << PrettyTypeOf(obj)
249 << ")" << "References " << reinterpret_cast<const void*>(ref) << "(" << PrettyTypeOf(ref)
250 << ") without being in mod-union table";
251 LOG(INFO) << "FromSpace " << from_space->GetName() << " type "
252 << from_space->GetGcRetentionPolicy();
253 LOG(INFO) << "ToSpace " << to_space->GetName() << " type "
254 << to_space->GetGcRetentionPolicy();
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700255 heap->DumpSpaces(LOG(INFO));
Ian Rogers1d54e732013-05-02 21:10:01 -0700256 LOG(FATAL) << "FATAL ERROR";
257 }
258 }
259
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700260 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
261 SHARED_REQUIRES(Locks::mutator_lock_) {
262 if (kIsDebugBuild && !root->IsNull()) {
263 VisitRoot(root);
264 }
265 }
266
267 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
268 SHARED_REQUIRES(Locks::mutator_lock_) {
269 DCHECK(!mod_union_table_->ShouldAddReference(root->AsMirrorPtr()));
270 }
271
Ian Rogers1d54e732013-05-02 21:10:01 -0700272 private:
273 ModUnionTableReferenceCache* const mod_union_table_;
274 const std::set<const Object*>& references_;
275};
276
277class ModUnionCheckReferences {
278 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100279 ModUnionCheckReferences(ModUnionTableReferenceCache* mod_union_table,
280 const std::set<const Object*>& references)
Mathieu Chartier90443472015-07-16 20:32:27 -0700281 REQUIRES(Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -0700282 : mod_union_table_(mod_union_table), references_(references) {
283 }
284
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700285 void operator()(Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -0700286 Locks::heap_bitmap_lock_->AssertSharedHeld(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -0700287 CheckReferenceVisitor visitor(mod_union_table_, references_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700288 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Ian Rogers1d54e732013-05-02 21:10:01 -0700289 }
290
291 private:
292 ModUnionTableReferenceCache* const mod_union_table_;
293 const std::set<const Object*>& references_;
294};
295
296void ModUnionTableReferenceCache::Verify() {
297 // Start by checking that everything in the mod union table is marked.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700298 for (const auto& ref_pair : references_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800299 for (mirror::HeapReference<Object>* ref : ref_pair.second) {
300 CHECK(heap_->IsLiveObjectLocked(ref->AsMirrorPtr()));
Ian Rogers1d54e732013-05-02 21:10:01 -0700301 }
302 }
303
304 // Check the references of each clean card which is also in the mod union table.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700305 CardTable* card_table = heap_->GetCardTable();
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700306 ContinuousSpaceBitmap* live_bitmap = space_->GetLiveBitmap();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700307 for (const auto& ref_pair : references_) {
Ian Rogers13735952014-10-08 12:43:28 -0700308 const uint8_t* card = ref_pair.first;
Ian Rogers1d54e732013-05-02 21:10:01 -0700309 if (*card == CardTable::kCardClean) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700310 std::set<const Object*> reference_set;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800311 for (mirror::HeapReference<Object>* obj_ptr : ref_pair.second) {
312 reference_set.insert(obj_ptr->AsMirrorPtr());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700313 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700314 ModUnionCheckReferences visitor(this, reference_set);
315 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card));
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700316 live_bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700317 }
318 }
319}
320
321void ModUnionTableReferenceCache::Dump(std::ostream& os) {
322 CardTable* card_table = heap_->GetCardTable();
Ian Rogers1d54e732013-05-02 21:10:01 -0700323 os << "ModUnionTable cleared cards: [";
Ian Rogers13735952014-10-08 12:43:28 -0700324 for (uint8_t* card_addr : cleared_cards_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700325 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
Ian Rogers1d54e732013-05-02 21:10:01 -0700326 uintptr_t end = start + CardTable::kCardSize;
327 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << ",";
328 }
329 os << "]\nModUnionTable references: [";
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700330 for (const auto& ref_pair : references_) {
Ian Rogers13735952014-10-08 12:43:28 -0700331 const uint8_t* card_addr = ref_pair.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -0700332 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
Ian Rogers1d54e732013-05-02 21:10:01 -0700333 uintptr_t end = start + CardTable::kCardSize;
334 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "->{";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800335 for (mirror::HeapReference<Object>* ref : ref_pair.second) {
336 os << reinterpret_cast<const void*>(ref->AsMirrorPtr()) << ",";
Ian Rogers1d54e732013-05-02 21:10:01 -0700337 }
338 os << "},";
339 }
340}
341
Mathieu Chartier97509952015-07-13 14:35:43 -0700342void ModUnionTableReferenceCache::UpdateAndMarkReferences(MarkObjectVisitor* visitor) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700343 CardTable* card_table = heap_->GetCardTable();
Ian Rogers1d54e732013-05-02 21:10:01 -0700344
Ian Rogersef7d42f2014-01-06 12:55:46 -0800345 std::vector<mirror::HeapReference<Object>*> cards_references;
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700346 ModUnionReferenceVisitor add_visitor(this, &cards_references);
Ian Rogers1d54e732013-05-02 21:10:01 -0700347
Mathieu Chartier02e25112013-08-14 16:14:24 -0700348 for (const auto& card : cleared_cards_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700349 // Clear and re-compute alloc space references associated with this card.
350 cards_references.clear();
351 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card));
352 uintptr_t end = start + CardTable::kCardSize;
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700353 auto* space = heap_->FindContinuousSpaceFromObject(reinterpret_cast<Object*>(start), false);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700354 DCHECK(space != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700355 ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700356 live_bitmap->VisitMarkedRange(start, end, add_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700357
358 // Update the corresponding references for the card.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700359 auto found = references_.find(card);
Ian Rogers1d54e732013-05-02 21:10:01 -0700360 if (found == references_.end()) {
361 if (cards_references.empty()) {
362 // No reason to add empty array.
363 continue;
364 }
365 references_.Put(card, cards_references);
366 } else {
367 found->second = cards_references;
368 }
369 }
370 cleared_cards_.clear();
Ian Rogers1d54e732013-05-02 21:10:01 -0700371 size_t count = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -0700372 for (const auto& ref : references_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800373 for (mirror::HeapReference<Object>* obj_ptr : ref.second) {
Mathieu Chartier97509952015-07-13 14:35:43 -0700374 visitor->MarkHeapReference(obj_ptr);
Ian Rogers1d54e732013-05-02 21:10:01 -0700375 }
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700376 count += ref.second.size();
Ian Rogers1d54e732013-05-02 21:10:01 -0700377 }
378 if (VLOG_IS_ON(heap)) {
379 VLOG(gc) << "Marked " << count << " references in mod union table";
380 }
381}
382
Mathieu Chartier4858a932015-01-23 13:18:53 -0800383ModUnionTableCardCache::ModUnionTableCardCache(const std::string& name, Heap* heap,
384 space::ContinuousSpace* space)
385 : ModUnionTable(name, heap, space) {
386 // Normally here we could use End() instead of Limit(), but for testing we may want to have a
387 // mod-union table for a space which can still grow.
388 if (!space->IsImageSpace()) {
389 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(space->Limit()), CardTable::kCardSize);
390 }
391 card_bitmap_.reset(CardBitmap::Create(
392 "mod union bitmap", reinterpret_cast<uintptr_t>(space->Begin()),
393 RoundUp(reinterpret_cast<uintptr_t>(space->Limit()), CardTable::kCardSize)));
394}
395
396class CardBitVisitor {
397 public:
Mathieu Chartier97509952015-07-13 14:35:43 -0700398 CardBitVisitor(MarkObjectVisitor* visitor, space::ContinuousSpace* space,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800399 space::ContinuousSpace* immune_space, ModUnionTable::CardBitmap* card_bitmap)
Mathieu Chartier97509952015-07-13 14:35:43 -0700400 : visitor_(visitor), space_(space), immune_space_(immune_space),
Mathieu Chartier4858a932015-01-23 13:18:53 -0800401 bitmap_(space->GetLiveBitmap()), card_bitmap_(card_bitmap) {
402 DCHECK(immune_space_ != nullptr);
403 }
404
405 void operator()(size_t bit_index) const {
406 const uintptr_t start = card_bitmap_->AddrFromBitIndex(bit_index);
407 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)))
408 << start << " " << *space_;
409 bool reference_to_other_space = false;
Mathieu Chartier97509952015-07-13 14:35:43 -0700410 ModUnionScanImageRootVisitor scan_visitor(visitor_, space_, immune_space_,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800411 &reference_to_other_space);
412 bitmap_->VisitMarkedRange(start, start + CardTable::kCardSize, scan_visitor);
413 if (!reference_to_other_space) {
414 // No non null reference to another space, clear the bit.
415 card_bitmap_->ClearBit(bit_index);
416 }
417 }
418
419 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700420 MarkObjectVisitor* const visitor_;
Mathieu Chartier4858a932015-01-23 13:18:53 -0800421 space::ContinuousSpace* const space_;
422 space::ContinuousSpace* const immune_space_;
423 ContinuousSpaceBitmap* const bitmap_;
424 ModUnionTable::CardBitmap* const card_bitmap_;
425};
426
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700427void ModUnionTableCardCache::ClearCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800428 CardTable* const card_table = GetHeap()->GetCardTable();
429 ModUnionAddToCardBitmapVisitor visitor(card_bitmap_.get(), card_table);
Ian Rogers1d54e732013-05-02 21:10:01 -0700430 // Clear dirty cards in the this space and update the corresponding mod-union bits.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700431 card_table->ModifyCardsAtomic(space_->Begin(), space_->End(), AgeCardVisitor(), visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700432}
433
434// Mark all references to the alloc space(s).
Mathieu Chartier97509952015-07-13 14:35:43 -0700435void ModUnionTableCardCache::UpdateAndMarkReferences(MarkObjectVisitor* visitor) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800436 auto* image_space = heap_->GetImageSpace();
437 // If we don't have an image space, just pass in space_ as the immune space. Pass in the same
438 // space_ instead of image_space to avoid a null check in ModUnionUpdateObjectReferencesVisitor.
Mathieu Chartier97509952015-07-13 14:35:43 -0700439 CardBitVisitor bit_visitor(visitor, space_, image_space != nullptr ? image_space : space_,
Mathieu Chartier4858a932015-01-23 13:18:53 -0800440 card_bitmap_.get());
441 card_bitmap_->VisitSetBits(
Mathieu Chartier97509952015-07-13 14:35:43 -0700442 0, RoundUp(space_->Size(), CardTable::kCardSize) / CardTable::kCardSize, bit_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -0700443}
444
445void ModUnionTableCardCache::Dump(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700446 os << "ModUnionTable dirty cards: [";
Mathieu Chartier4858a932015-01-23 13:18:53 -0800447 // TODO: Find cleaner way of doing this.
448 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
449 addr += CardTable::kCardSize) {
450 if (card_bitmap_->Test(reinterpret_cast<uintptr_t>(addr))) {
451 os << reinterpret_cast<void*>(addr) << "-"
452 << reinterpret_cast<void*>(addr + CardTable::kCardSize) << "\n";
453 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700454 }
455 os << "]";
456}
457
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700458void ModUnionTableCardCache::SetCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800459 // 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 -0700460 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700461 addr += CardTable::kCardSize) {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800462 card_bitmap_->Set(reinterpret_cast<uintptr_t>(addr));
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700463 }
464}
465
Mathieu Chartier4858a932015-01-23 13:18:53 -0800466bool ModUnionTableCardCache::ContainsCardFor(uintptr_t addr) {
467 return card_bitmap_->Test(addr);
468}
469
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700470void ModUnionTableReferenceCache::SetCards() {
Mathieu Chartier4858a932015-01-23 13:18:53 -0800471 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize);
472 addr += CardTable::kCardSize) {
473 cleared_cards_.insert(heap_->GetCardTable()->CardFromAddr(reinterpret_cast<void*>(addr)));
474 }
475}
476
477bool ModUnionTableReferenceCache::ContainsCardFor(uintptr_t addr) {
478 auto* card_ptr = heap_->GetCardTable()->CardFromAddr(reinterpret_cast<void*>(addr));
479 return cleared_cards_.find(card_ptr) != cleared_cards_.end() ||
480 references_.find(card_ptr) != references_.end();
Mathieu Chartiere4cab172014-08-19 18:24:04 -0700481}
482
Ian Rogers1d54e732013-05-02 21:10:01 -0700483} // namespace accounting
484} // namespace gc
485} // namespace art