blob: fba62c3d670875f0bf1afb23f12bb0efb49a3e7b [file] [log] [blame]
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -08001/*
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#include "remembered_set.h"
18
Ian Rogers700a4022014-05-19 16:49:03 -070019#include <memory>
20
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080021#include "base/stl_util.h"
22#include "card_table-inl.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080023#include "gc/collector/mark_sweep-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070024#include "gc/collector/mark_sweep.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080025#include "gc/collector/semi_space.h"
26#include "gc/heap.h"
27#include "gc/space/space.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070028#include "heap_bitmap.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080029#include "mirror/class-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080030#include "mirror/object-inl.h"
31#include "mirror/object-refvisitor-inl.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080032#include "mirror/object_array-inl.h"
33#include "space_bitmap-inl.h"
34#include "thread.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080035
36namespace art {
37namespace gc {
38namespace accounting {
39
40class RememberedSetCardVisitor {
41 public:
42 explicit RememberedSetCardVisitor(RememberedSet::CardSet* const dirty_cards)
43 : dirty_cards_(dirty_cards) {}
44
Roland Levillain4b8f1ec2015-08-26 18:34:03 +010045 void operator()(uint8_t* card, uint8_t expected_value, uint8_t new_value ATTRIBUTE_UNUSED) const {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080046 if (expected_value == CardTable::kCardDirty) {
47 dirty_cards_->insert(card);
48 }
49 }
50
51 private:
52 RememberedSet::CardSet* const dirty_cards_;
53};
54
55void RememberedSet::ClearCards() {
56 CardTable* card_table = GetHeap()->GetCardTable();
57 RememberedSetCardVisitor card_visitor(&dirty_cards_);
58 // Clear dirty cards in the space and insert them into the dirty card set.
59 card_table->ModifyCardsAtomic(space_->Begin(), space_->End(), AgeCardVisitor(), card_visitor);
60}
61
62class RememberedSetReferenceVisitor {
63 public:
Mathieu Chartier97509952015-07-13 14:35:43 -070064 RememberedSetReferenceVisitor(space::ContinuousSpace* target_space,
65 bool* const contains_reference_to_target_space,
66 collector::GarbageCollector* collector)
67 : collector_(collector), target_space_(target_space),
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080068 contains_reference_to_target_space_(contains_reference_to_target_space) {}
69
Mathieu Chartier31e88222016-10-14 18:43:19 -070070 void operator()(ObjPtr<mirror::Object> obj,
71 MemberOffset offset,
72 bool is_static ATTRIBUTE_UNUSED) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070073 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070074 DCHECK(obj != nullptr);
Mathieu Chartier407f7022014-02-18 14:37:05 -080075 mirror::HeapReference<mirror::Object>* ref_ptr = obj->GetFieldObjectReferenceAddr(offset);
76 if (target_space_->HasAddress(ref_ptr->AsMirrorPtr())) {
77 *contains_reference_to_target_space_ = true;
Andreas Gampe98ea9d92018-10-19 14:06:15 -070078 collector_->MarkHeapReference(ref_ptr, /*do_atomic_update=*/ false);
Mathieu Chartier407f7022014-02-18 14:37:05 -080079 DCHECK(!target_space_->HasAddress(ref_ptr->AsMirrorPtr()));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080080 }
81 }
82
Mathieu Chartier31e88222016-10-14 18:43:19 -070083 void operator()(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> ref) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070084 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070085 if (target_space_->HasAddress(ref->GetReferent())) {
86 *contains_reference_to_target_space_ = true;
Mathieu Chartier97509952015-07-13 14:35:43 -070087 collector_->DelayReferenceReferent(klass, ref);
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070088 }
89 }
90
Mathieu Chartierda7c6502015-07-23 16:01:26 -070091 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070092 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiereb837eb2015-07-29 17:25:41 -070093 if (!root->IsNull()) {
Mathieu Chartierda7c6502015-07-23 16:01:26 -070094 VisitRoot(root);
95 }
96 }
97
98 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070099 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier39089122015-07-27 16:08:02 -0700100 if (target_space_->HasAddress(root->AsMirrorPtr())) {
101 *contains_reference_to_target_space_ = true;
102 root->Assign(collector_->MarkObject(root->AsMirrorPtr()));
103 DCHECK(!target_space_->HasAddress(root->AsMirrorPtr()));
104 }
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700105 }
106
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800107 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700108 collector::GarbageCollector* const collector_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800109 space::ContinuousSpace* const target_space_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800110 bool* const contains_reference_to_target_space_;
111};
112
113class RememberedSetObjectVisitor {
114 public:
Mathieu Chartier97509952015-07-13 14:35:43 -0700115 RememberedSetObjectVisitor(space::ContinuousSpace* target_space,
116 bool* const contains_reference_to_target_space,
117 collector::GarbageCollector* collector)
118 : collector_(collector), target_space_(target_space),
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800119 contains_reference_to_target_space_(contains_reference_to_target_space) {}
120
Mathieu Chartier31e88222016-10-14 18:43:19 -0700121 void operator()(ObjPtr<mirror::Object> obj) const REQUIRES(Locks::heap_bitmap_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700122 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier97509952015-07-13 14:35:43 -0700123 RememberedSetReferenceVisitor visitor(target_space_, contains_reference_to_target_space_,
124 collector_);
Mathieu Chartier059ef3d2015-08-18 13:54:21 -0700125 obj->VisitReferences(visitor, visitor);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800126 }
127
128 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700129 collector::GarbageCollector* const collector_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800130 space::ContinuousSpace* const target_space_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800131 bool* const contains_reference_to_target_space_;
132};
133
Mathieu Chartier97509952015-07-13 14:35:43 -0700134void RememberedSet::UpdateAndMarkReferences(space::ContinuousSpace* target_space,
135 collector::GarbageCollector* collector) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800136 CardTable* card_table = heap_->GetCardTable();
137 bool contains_reference_to_target_space = false;
Mathieu Chartier97509952015-07-13 14:35:43 -0700138 RememberedSetObjectVisitor obj_visitor(target_space, &contains_reference_to_target_space,
139 collector);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700140 ContinuousSpaceBitmap* bitmap = space_->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800141 CardSet remove_card_set;
Ian Rogers13735952014-10-08 12:43:28 -0700142 for (uint8_t* const card_addr : dirty_cards_) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800143 contains_reference_to_target_space = false;
144 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
145 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)));
146 bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, obj_visitor);
147 if (!contains_reference_to_target_space) {
148 // It was in the dirty card set, but it didn't actually contain
149 // a reference to the target space. So, remove it from the dirty
150 // card set so we won't have to scan it again (unless it gets
151 // dirty again.)
152 remove_card_set.insert(card_addr);
153 }
154 }
155
156 // Remove the cards that didn't contain a reference to the target
157 // space from the dirty card set.
Ian Rogers13735952014-10-08 12:43:28 -0700158 for (uint8_t* const card_addr : remove_card_set) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800159 DCHECK(dirty_cards_.find(card_addr) != dirty_cards_.end());
160 dirty_cards_.erase(card_addr);
161 }
162}
163
164void RememberedSet::Dump(std::ostream& os) {
165 CardTable* card_table = heap_->GetCardTable();
166 os << "RememberedSet dirty cards: [";
Ian Rogers13735952014-10-08 12:43:28 -0700167 for (const uint8_t* card_addr : dirty_cards_) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800168 auto start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
169 auto end = start + CardTable::kCardSize;
170 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "\n";
171 }
172 os << "]";
173}
174
175void RememberedSet::AssertAllDirtyCardsAreWithinSpace() const {
176 CardTable* card_table = heap_->GetCardTable();
Ian Rogers13735952014-10-08 12:43:28 -0700177 for (const uint8_t* card_addr : dirty_cards_) {
178 auto start = reinterpret_cast<uint8_t*>(card_table->AddrFromCard(card_addr));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800179 auto end = start + CardTable::kCardSize;
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700180 DCHECK_LE(space_->Begin(), start);
181 DCHECK_LE(end, space_->Limit());
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800182 }
183}
184
185} // namespace accounting
186} // namespace gc
187} // namespace art