blob: eeb385e9574a8b88ecdace6f54d490c857db9953 [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"
23#include "heap_bitmap.h"
24#include "gc/collector/mark_sweep.h"
25#include "gc/collector/mark_sweep-inl.h"
26#include "gc/collector/semi_space.h"
27#include "gc/heap.h"
28#include "gc/space/space.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080029#include "mirror/object-inl.h"
30#include "mirror/class-inl.h"
31#include "mirror/object_array-inl.h"
32#include "space_bitmap-inl.h"
33#include "thread.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080034
35namespace art {
36namespace gc {
37namespace accounting {
38
39class RememberedSetCardVisitor {
40 public:
41 explicit RememberedSetCardVisitor(RememberedSet::CardSet* const dirty_cards)
42 : dirty_cards_(dirty_cards) {}
43
Ian Rogers13735952014-10-08 12:43:28 -070044 void operator()(uint8_t* card, uint8_t expected_value, uint8_t new_value) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070045 UNUSED(new_value);
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 Chartier407f7022014-02-18 14:37:05 -080064 RememberedSetReferenceVisitor(MarkHeapReferenceCallback* callback,
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070065 DelayReferenceReferentCallback* ref_callback,
Mathieu Chartier407f7022014-02-18 14:37:05 -080066 space::ContinuousSpace* target_space,
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080067 bool* const contains_reference_to_target_space, void* arg)
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070068 : callback_(callback), ref_callback_(ref_callback), target_space_(target_space), arg_(arg),
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080069 contains_reference_to_target_space_(contains_reference_to_target_space) {}
70
Mathieu Chartier407f7022014-02-18 14:37:05 -080071 void operator()(mirror::Object* obj, MemberOffset offset, bool /* is_static */) const
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080072 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070073 DCHECK(obj != nullptr);
Mathieu Chartier407f7022014-02-18 14:37:05 -080074 mirror::HeapReference<mirror::Object>* ref_ptr = obj->GetFieldObjectReferenceAddr(offset);
75 if (target_space_->HasAddress(ref_ptr->AsMirrorPtr())) {
76 *contains_reference_to_target_space_ = true;
77 callback_(ref_ptr, arg_);
78 DCHECK(!target_space_->HasAddress(ref_ptr->AsMirrorPtr()));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080079 }
80 }
81
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070082 void operator()(mirror::Class* klass, mirror::Reference* ref) const
83 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
84 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
85 if (target_space_->HasAddress(ref->GetReferent())) {
86 *contains_reference_to_target_space_ = true;
87 ref_callback_(klass, ref, arg_);
88 }
89 }
90
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080091 private:
Mathieu Chartier407f7022014-02-18 14:37:05 -080092 MarkHeapReferenceCallback* const callback_;
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070093 DelayReferenceReferentCallback* const ref_callback_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080094 space::ContinuousSpace* const target_space_;
95 void* const arg_;
96 bool* const contains_reference_to_target_space_;
97};
98
99class RememberedSetObjectVisitor {
100 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800101 RememberedSetObjectVisitor(MarkHeapReferenceCallback* callback,
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700102 DelayReferenceReferentCallback* ref_callback,
Mathieu Chartier407f7022014-02-18 14:37:05 -0800103 space::ContinuousSpace* target_space,
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800104 bool* const contains_reference_to_target_space, void* arg)
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700105 : callback_(callback), ref_callback_(ref_callback), target_space_(target_space), arg_(arg),
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800106 contains_reference_to_target_space_(contains_reference_to_target_space) {}
107
108 void operator()(mirror::Object* obj) const EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_)
109 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700110 RememberedSetReferenceVisitor visitor(callback_, ref_callback_, target_space_,
111 contains_reference_to_target_space_, arg_);
112 obj->VisitReferences<kMovingClasses>(visitor, visitor);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800113 }
114
115 private:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800116 MarkHeapReferenceCallback* const callback_;
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700117 DelayReferenceReferentCallback* const ref_callback_;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800118 space::ContinuousSpace* const target_space_;
119 void* const arg_;
120 bool* const contains_reference_to_target_space_;
121};
122
Mathieu Chartier407f7022014-02-18 14:37:05 -0800123void RememberedSet::UpdateAndMarkReferences(MarkHeapReferenceCallback* callback,
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700124 DelayReferenceReferentCallback* ref_callback,
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800125 space::ContinuousSpace* target_space, void* arg) {
126 CardTable* card_table = heap_->GetCardTable();
127 bool contains_reference_to_target_space = false;
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700128 RememberedSetObjectVisitor obj_visitor(callback, ref_callback, target_space,
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800129 &contains_reference_to_target_space, arg);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700130 ContinuousSpaceBitmap* bitmap = space_->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800131 CardSet remove_card_set;
Ian Rogers13735952014-10-08 12:43:28 -0700132 for (uint8_t* const card_addr : dirty_cards_) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800133 contains_reference_to_target_space = false;
134 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
135 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)));
136 bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, obj_visitor);
137 if (!contains_reference_to_target_space) {
138 // It was in the dirty card set, but it didn't actually contain
139 // a reference to the target space. So, remove it from the dirty
140 // card set so we won't have to scan it again (unless it gets
141 // dirty again.)
142 remove_card_set.insert(card_addr);
143 }
144 }
145
146 // Remove the cards that didn't contain a reference to the target
147 // space from the dirty card set.
Ian Rogers13735952014-10-08 12:43:28 -0700148 for (uint8_t* const card_addr : remove_card_set) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800149 DCHECK(dirty_cards_.find(card_addr) != dirty_cards_.end());
150 dirty_cards_.erase(card_addr);
151 }
152}
153
154void RememberedSet::Dump(std::ostream& os) {
155 CardTable* card_table = heap_->GetCardTable();
156 os << "RememberedSet dirty cards: [";
Ian Rogers13735952014-10-08 12:43:28 -0700157 for (const uint8_t* card_addr : dirty_cards_) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800158 auto start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr));
159 auto end = start + CardTable::kCardSize;
160 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "\n";
161 }
162 os << "]";
163}
164
165void RememberedSet::AssertAllDirtyCardsAreWithinSpace() const {
166 CardTable* card_table = heap_->GetCardTable();
Ian Rogers13735952014-10-08 12:43:28 -0700167 for (const uint8_t* card_addr : dirty_cards_) {
168 auto start = reinterpret_cast<uint8_t*>(card_table->AddrFromCard(card_addr));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800169 auto end = start + CardTable::kCardSize;
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700170 DCHECK_LE(space_->Begin(), start);
171 DCHECK_LE(end, space_->Limit());
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800172 }
173}
174
175} // namespace accounting
176} // namespace gc
177} // namespace art