blob: c0e172e81552a495c13bdc7c5f33b34ecb48740d [file] [log] [blame]
Mathieu Chartier590fee92013-09-13 13:46:47 -07001/*
2 * Copyright (C) 2013 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
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070017#include "semi_space-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070018
19#include <functional>
20#include <numeric>
21#include <climits>
22#include <vector>
23
24#include "base/logging.h"
25#include "base/macros.h"
26#include "base/mutex-inl.h"
27#include "base/timing_logger.h"
Mathieu Chartier4aeec172014-03-27 16:09:46 -070028#include "gc/accounting/heap_bitmap-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070029#include "gc/accounting/mod_union_table.h"
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -080030#include "gc/accounting/remembered_set.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070031#include "gc/accounting/space_bitmap-inl.h"
32#include "gc/heap.h"
33#include "gc/space/bump_pointer_space.h"
34#include "gc/space/bump_pointer_space-inl.h"
35#include "gc/space/image_space.h"
36#include "gc/space/large_object_space.h"
37#include "gc/space/space-inl.h"
38#include "indirect_reference_table.h"
39#include "intern_table.h"
40#include "jni_internal.h"
41#include "mark_sweep-inl.h"
42#include "monitor.h"
43#include "mirror/art_field.h"
44#include "mirror/art_field-inl.h"
45#include "mirror/class-inl.h"
46#include "mirror/class_loader.h"
47#include "mirror/dex_cache.h"
Mathieu Chartier8fa2dad2014-03-13 12:22:56 -070048#include "mirror/reference-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070049#include "mirror/object-inl.h"
50#include "mirror/object_array.h"
51#include "mirror/object_array-inl.h"
52#include "runtime.h"
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070053#include "stack.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070054#include "thread-inl.h"
55#include "thread_list.h"
56#include "verifier/method_verifier.h"
57
58using ::art::mirror::Class;
59using ::art::mirror::Object;
60
61namespace art {
62namespace gc {
63namespace collector {
64
65static constexpr bool kProtectFromSpace = true;
Mathieu Chartier15d34022014-02-26 17:16:38 -080066static constexpr bool kStoreStackTraces = false;
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -070067static constexpr bool kUseBytesPromoted = true;
68static constexpr size_t kBytesPromotedThreshold = 4 * MB;
Mathieu Chartier590fee92013-09-13 13:46:47 -070069
Mathieu Chartier590fee92013-09-13 13:46:47 -070070void SemiSpace::BindBitmaps() {
71 timings_.StartSplit("BindBitmaps");
Mathieu Chartiera1602f22014-01-13 17:19:19 -080072 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -070073 // Mark all of the spaces we never collect as immune.
74 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080075 if (space->GetLiveBitmap() != nullptr) {
76 if (space == to_space_) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -080077 CHECK(to_space_->IsContinuousMemMapAllocSpace());
78 to_space_->AsContinuousMemMapAllocSpace()->BindLiveToMarkBitmap();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080079 } else if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyNeverCollect
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080080 || space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect
81 // Add the main free list space and the non-moving
82 // space to the immune space if a bump pointer space
83 // only collection.
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080084 || (generational_ && !whole_heap_collection_ &&
85 (space == GetHeap()->GetNonMovingSpace() ||
86 space == GetHeap()->GetPrimaryFreeListSpace()))) {
Mathieu Chartier8d562102014-03-12 17:42:10 -070087 CHECK(immune_region_.AddContinuousSpace(space)) << "Failed to add space " << *space;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080088 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070089 }
90 }
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080091 if (generational_ && !whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080092 // We won't collect the large object space if a bump pointer space only collection.
93 is_large_object_space_immune_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080094 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070095 timings_.EndSplit();
96}
97
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080098SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix)
Mathieu Chartier590fee92013-09-13 13:46:47 -070099 : GarbageCollector(heap,
100 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700101 to_space_(nullptr),
102 from_space_(nullptr),
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800103 generational_(generational),
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800104 last_gc_to_space_end_(nullptr),
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800105 bytes_promoted_(0),
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700106 bytes_promoted_since_last_whole_heap_collection_(0),
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800107 whole_heap_collection_(true),
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700108 whole_heap_collection_interval_counter_(0),
109 collector_name_(name_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700110}
111
112void SemiSpace::InitializePhase() {
113 timings_.Reset();
Ian Rogers5fe9af72013-11-14 00:17:20 -0800114 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700115 mark_stack_ = heap_->mark_stack_.get();
116 DCHECK(mark_stack_ != nullptr);
Mathieu Chartier8d562102014-03-12 17:42:10 -0700117 immune_region_.Reset();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800118 is_large_object_space_immune_ = false;
Mathieu Chartierad35d902014-02-11 16:20:42 -0800119 saved_bytes_ = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700120 self_ = Thread::Current();
121 // Do any pre GC verification.
122 timings_.NewSplit("PreGcVerification");
123 heap_->PreGcVerification(this);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700124 CHECK(from_space_->CanMoveObjects()) << "Attempting to move from " << *from_space_;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800125 // Set the initial bitmap.
126 to_space_live_bitmap_ = to_space_->GetLiveBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700127}
128
129void SemiSpace::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800130 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700131 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800132 GetHeap()->ProcessReferences(timings_, clear_soft_references_, &MarkedForwardingAddressCallback,
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800133 &MarkObjectCallback, &ProcessMarkStackCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700134}
135
136void SemiSpace::MarkingPhase() {
Mathieu Chartier15d34022014-02-26 17:16:38 -0800137 if (kStoreStackTraces) {
138 Locks::mutator_lock_->AssertExclusiveHeld(self_);
139 // Store the stack traces into the runtime fault string in case we get a heap corruption
140 // related crash later.
141 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
142 std::ostringstream oss;
143 Runtime* runtime = Runtime::Current();
144 runtime->GetThreadList()->DumpForSigQuit(oss);
145 runtime->GetThreadList()->DumpNativeStacks(oss);
146 runtime->SetFaultMessage(oss.str());
147 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
148 }
149
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800150 if (generational_) {
151 if (gc_cause_ == kGcCauseExplicit || gc_cause_ == kGcCauseForNativeAlloc ||
152 clear_soft_references_) {
153 // If an explicit, native allocation-triggered, or last attempt
154 // collection, collect the whole heap (and reset the interval
155 // counter to be consistent.)
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800156 whole_heap_collection_ = true;
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700157 if (!kUseBytesPromoted) {
158 whole_heap_collection_interval_counter_ = 0;
159 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800160 }
161 if (whole_heap_collection_) {
162 VLOG(heap) << "Whole heap collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700163 name_ = collector_name_ + " whole";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800164 } else {
165 VLOG(heap) << "Bump pointer space only collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700166 name_ = collector_name_ + " bps";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800167 }
168 }
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700169
170 if (!clear_soft_references_) {
171 if (!generational_) {
172 // If non-generational, always clear soft references.
173 clear_soft_references_ = true;
174 } else {
175 // If generational, clear soft references if a whole heap collection.
176 if (whole_heap_collection_) {
177 clear_soft_references_ = true;
178 }
179 }
180 }
181
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800182 Locks::mutator_lock_->AssertExclusiveHeld(self_);
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800183
Ian Rogers5fe9af72013-11-14 00:17:20 -0800184 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800185 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800186 // If last_gc_to_space_end_ is out of the bounds of the from-space
187 // (the to-space from last GC), then point it to the beginning of
188 // the from-space. For example, the very first GC or the
189 // pre-zygote compaction.
190 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) {
191 last_gc_to_space_end_ = from_space_->Begin();
192 }
193 // Reset this before the marking starts below.
194 bytes_promoted_ = 0;
195 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700196 // Assume the cleared space is already empty.
197 BindBitmaps();
198 // Process dirty cards and add dirty cards to mod-union tables.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800199 heap_->ProcessCards(timings_, kUseRememberedSet && generational_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800200 // Clear the whole card table since we can not get any additional dirty cards during the
201 // paused GC. This saves memory but only works for pause the world collectors.
202 timings_.NewSplit("ClearCardTable");
203 heap_->GetCardTable()->ClearCardTable();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700204 // Need to do this before the checkpoint since we don't want any threads to add references to
205 // the live stack during the recursive mark.
206 timings_.NewSplit("SwapStacks");
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800207 if (kUseThreadLocalAllocationStack) {
208 heap_->RevokeAllThreadLocalAllocationStacks(self_);
209 }
210 heap_->SwapStacks(self_);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800211 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700212 MarkRoots();
213 // Mark roots of immune spaces.
214 UpdateAndMarkModUnion();
215 // Recursively mark remaining objects.
216 MarkReachableObjects();
217}
218
Mathieu Chartier590fee92013-09-13 13:46:47 -0700219void SemiSpace::UpdateAndMarkModUnion() {
220 for (auto& space : heap_->GetContinuousSpaces()) {
221 // If the space is immune then we need to mark the references to other spaces.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700222 if (immune_region_.ContainsSpace(space)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700223 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800224 if (table != nullptr) {
225 // TODO: Improve naming.
226 TimingLogger::ScopedSplit split(
227 space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
228 "UpdateAndMarkImageModUnionTable",
229 &timings_);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800230 table->UpdateAndMarkReferences(MarkHeapReferenceCallback, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800231 } else if (heap_->FindRememberedSetFromSpace(space) != nullptr) {
232 DCHECK(kUseRememberedSet);
233 // If a bump pointer space only collection, the non-moving
234 // space is added to the immune space. The non-moving space
235 // doesn't have a mod union table, but has a remembered
236 // set. Its dirty cards will be scanned later in
237 // MarkReachableObjects().
238 DCHECK(generational_ && !whole_heap_collection_ &&
239 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
240 << "Space " << space->GetName() << " "
241 << "generational_=" << generational_ << " "
242 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800243 } else {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800244 DCHECK(!kUseRememberedSet);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800245 // If a bump pointer space only collection, the non-moving
246 // space is added to the immune space. But the non-moving
247 // space doesn't have a mod union table. Instead, its live
248 // bitmap will be scanned later in MarkReachableObjects().
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800249 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800250 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
251 << "Space " << space->GetName() << " "
252 << "generational_=" << generational_ << " "
253 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800254 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700255 }
256 }
257}
258
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800259class SemiSpaceScanObjectVisitor {
260 public:
261 explicit SemiSpaceScanObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
Mathieu Chartier407f7022014-02-18 14:37:05 -0800262 void operator()(Object* obj) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
263 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800264 // TODO: fix NO_THREAD_SAFETY_ANALYSIS. ScanObject() requires an
265 // exclusive lock on the mutator lock, but
266 // SpaceBitmap::VisitMarkedRange() only requires the shared lock.
267 DCHECK(obj != nullptr);
268 semi_space_->ScanObject(obj);
269 }
270 private:
Ian Rogers6fac4472014-02-25 17:01:10 -0800271 SemiSpace* const semi_space_;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800272};
273
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800274// Used to verify that there's no references to the from-space.
275class SemiSpaceVerifyNoFromSpaceReferencesVisitor {
276 public:
277 explicit SemiSpaceVerifyNoFromSpaceReferencesVisitor(space::ContinuousMemMapAllocSpace* from_space) :
278 from_space_(from_space) {}
279
Mathieu Chartier407f7022014-02-18 14:37:05 -0800280 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const
281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) ALWAYS_INLINE {
282 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset, false);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800283 if (from_space_->HasAddress(ref)) {
284 Runtime::Current()->GetHeap()->DumpObject(LOG(INFO), obj);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700285 LOG(FATAL) << ref << " found in from space";
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800286 }
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800287 }
288 private:
289 space::ContinuousMemMapAllocSpace* from_space_;
290};
291
292void SemiSpace::VerifyNoFromSpaceReferences(Object* obj) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800293 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
294 SemiSpaceVerifyNoFromSpaceReferencesVisitor visitor(from_space_);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800295 obj->VisitReferences<kMovingClasses>(visitor);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800296}
297
298class SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor {
299 public:
300 explicit SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
301 void operator()(Object* obj) const
302 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
303 DCHECK(obj != nullptr);
304 semi_space_->VerifyNoFromSpaceReferences(obj);
305 }
306 private:
307 SemiSpace* const semi_space_;
308};
309
Mathieu Chartier590fee92013-09-13 13:46:47 -0700310void SemiSpace::MarkReachableObjects() {
311 timings_.StartSplit("MarkStackAsLive");
312 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
313 heap_->MarkAllocStackAsLive(live_stack);
314 live_stack->Reset();
315 timings_.EndSplit();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800316
317 for (auto& space : heap_->GetContinuousSpaces()) {
318 // If the space is immune and has no mod union table (the
319 // non-moving space when the bump pointer space only collection is
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800320 // enabled,) then we need to scan its live bitmap or dirty cards as roots
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800321 // (including the objects on the live stack which have just marked
322 // in the live bitmap above in MarkAllocStackAsLive().)
Mathieu Chartier8d562102014-03-12 17:42:10 -0700323 if (immune_region_.ContainsSpace(space) &&
324 heap_->FindModUnionTableFromSpace(space) == nullptr) {
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800325 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800326 (space == GetHeap()->GetNonMovingSpace() || space == GetHeap()->GetPrimaryFreeListSpace()));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800327 accounting::RememberedSet* rem_set = heap_->FindRememberedSetFromSpace(space);
328 if (kUseRememberedSet) {
329 DCHECK(rem_set != nullptr);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800330 rem_set->UpdateAndMarkReferences(MarkHeapReferenceCallback, from_space_, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800331 if (kIsDebugBuild) {
332 // Verify that there are no from-space references that
333 // remain in the space, that is, the remembered set (and the
334 // card table) didn't miss any from-space references in the
335 // space.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700336 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800337 SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor visitor(this);
338 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
339 reinterpret_cast<uintptr_t>(space->End()),
340 visitor);
341 }
342 } else {
343 DCHECK(rem_set == nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700344 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800345 SemiSpaceScanObjectVisitor visitor(this);
346 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
347 reinterpret_cast<uintptr_t>(space->End()),
348 visitor);
349 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800350 }
351 }
352
353 if (is_large_object_space_immune_) {
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800354 DCHECK(generational_ && !whole_heap_collection_);
Hiroshi Yamauchiba5870d2014-01-29 15:31:03 -0800355 // Delay copying the live set to the marked set until here from
356 // BindBitmaps() as the large objects on the allocation stack may
357 // be newly added to the live set above in MarkAllocStackAsLive().
358 GetHeap()->GetLargeObjectsSpace()->CopyLiveToMarked();
359
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800360 // When the large object space is immune, we need to scan the
361 // large object space as roots as they contain references to their
362 // classes (primitive array classes) that could move though they
363 // don't contain any other references.
364 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
365 accounting::ObjectSet* large_live_objects = large_object_space->GetLiveObjects();
366 SemiSpaceScanObjectVisitor visitor(this);
367 for (const Object* obj : large_live_objects->GetObjects()) {
368 visitor(const_cast<Object*>(obj));
369 }
370 }
371
Mathieu Chartier590fee92013-09-13 13:46:47 -0700372 // Recursively process the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800373 ProcessMarkStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700374}
375
376void SemiSpace::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800377 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800378 ProcessReferences(self_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700379 {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800380 ReaderMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700381 SweepSystemWeaks();
382 }
383 // Record freed memory.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800384 uint64_t from_bytes = from_space_->GetBytesAllocated();
385 uint64_t to_bytes = to_space_->GetBytesAllocated();
386 uint64_t from_objects = from_space_->GetObjectsAllocated();
387 uint64_t to_objects = to_space_->GetObjectsAllocated();
388 CHECK_LE(to_objects, from_objects);
389 int64_t freed_bytes = from_bytes - to_bytes;
390 int64_t freed_objects = from_objects - to_objects;
Ian Rogersb122a4b2013-11-19 18:00:50 -0800391 freed_bytes_.FetchAndAdd(freed_bytes);
392 freed_objects_.FetchAndAdd(freed_objects);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800393 // Note: Freed bytes can be negative if we copy form a compacted space to a free-list backed
394 // space.
395 heap_->RecordFree(freed_objects, freed_bytes);
Mathieu Chartierb272cd32014-04-11 16:42:46 -0700396
Mathieu Chartier590fee92013-09-13 13:46:47 -0700397 timings_.StartSplit("PreSweepingGcVerification");
398 heap_->PreSweepingGcVerification(this);
399 timings_.EndSplit();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700400 {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800401 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700402 // Reclaim unmarked objects.
403 Sweep(false);
404 // Swap the live and mark bitmaps for each space which we modified space. This is an
405 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
406 // bitmaps.
407 timings_.StartSplit("SwapBitmaps");
408 SwapBitmaps();
409 timings_.EndSplit();
410 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800411 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
412 GetHeap()->UnBindBitmaps();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700413 }
Mathieu Chartierb272cd32014-04-11 16:42:46 -0700414 // TODO: Do this before doing verification since the from space may have objects which weren't
415 // moved and point to dead objects.
Mathieu Chartier31f44142014-04-08 14:40:03 -0700416 from_space_->Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700417 // Protect the from space.
Mathieu Chartier15d34022014-02-26 17:16:38 -0800418 VLOG(heap) << "Protecting space " << *from_space_;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700419 if (kProtectFromSpace) {
Mathieu Chartier15d34022014-02-26 17:16:38 -0800420 from_space_->GetMemMap()->Protect(PROT_NONE);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700421 } else {
Mathieu Chartier15d34022014-02-26 17:16:38 -0800422 from_space_->GetMemMap()->Protect(PROT_READ);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700423 }
Mathieu Chartierad35d902014-02-11 16:20:42 -0800424 if (saved_bytes_ > 0) {
425 VLOG(heap) << "Avoided dirtying " << PrettySize(saved_bytes_);
426 }
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800427
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800428 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800429 // Record the end (top) of the to space so we can distinguish
430 // between objects that were allocated since the last GC and the
431 // older objects.
432 last_gc_to_space_end_ = to_space_->End();
433 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700434}
435
436void SemiSpace::ResizeMarkStack(size_t new_size) {
437 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
438 CHECK_LE(mark_stack_->Size(), new_size);
439 mark_stack_->Resize(new_size);
440 for (const auto& obj : temp) {
441 mark_stack_->PushBack(obj);
442 }
443}
444
445inline void SemiSpace::MarkStackPush(Object* obj) {
446 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
447 ResizeMarkStack(mark_stack_->Capacity() * 2);
448 }
449 // The object must be pushed on to the mark stack.
450 mark_stack_->PushBack(obj);
451}
452
453// Rare case, probably not worth inlining since it will increase instruction cache miss rate.
454bool SemiSpace::MarkLargeObject(const Object* obj) {
455 // TODO: support >1 discontinuous space.
456 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800457 DCHECK(large_object_space->Contains(obj));
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -0800458 accounting::ObjectSet* large_objects = large_object_space->GetMarkObjects();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700459 if (UNLIKELY(!large_objects->Test(obj))) {
460 large_objects->Set(obj);
461 return true;
462 }
463 return false;
464}
465
Mathieu Chartierad35d902014-02-11 16:20:42 -0800466static inline size_t CopyAvoidingDirtyingPages(void* dest, const void* src, size_t size) {
467 if (LIKELY(size <= static_cast<size_t>(kPageSize))) {
468 // We will dirty the current page and somewhere in the middle of the next page. This means
469 // that the next object copied will also dirty that page.
470 // TODO: Worth considering the last object copied? We may end up dirtying one page which is
471 // not necessary per GC.
472 memcpy(dest, src, size);
473 return 0;
474 }
475 size_t saved_bytes = 0;
476 byte* byte_dest = reinterpret_cast<byte*>(dest);
477 if (kIsDebugBuild) {
478 for (size_t i = 0; i < size; ++i) {
479 CHECK_EQ(byte_dest[i], 0U);
480 }
481 }
482 // Process the start of the page. The page must already be dirty, don't bother with checking.
483 const byte* byte_src = reinterpret_cast<const byte*>(src);
484 const byte* limit = byte_src + size;
485 size_t page_remain = AlignUp(byte_dest, kPageSize) - byte_dest;
486 // Copy the bytes until the start of the next page.
487 memcpy(dest, src, page_remain);
488 byte_src += page_remain;
489 byte_dest += page_remain;
Mathieu Chartier407f7022014-02-18 14:37:05 -0800490 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), kPageSize);
491 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), sizeof(uintptr_t));
492 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_src), sizeof(uintptr_t));
Mathieu Chartierad35d902014-02-11 16:20:42 -0800493 while (byte_src + kPageSize < limit) {
494 bool all_zero = true;
495 uintptr_t* word_dest = reinterpret_cast<uintptr_t*>(byte_dest);
496 const uintptr_t* word_src = reinterpret_cast<const uintptr_t*>(byte_src);
497 for (size_t i = 0; i < kPageSize / sizeof(*word_src); ++i) {
498 // Assumes the destination of the copy is all zeros.
499 if (word_src[i] != 0) {
500 all_zero = false;
501 word_dest[i] = word_src[i];
502 }
503 }
504 if (all_zero) {
505 // Avoided copying into the page since it was all zeros.
506 saved_bytes += kPageSize;
507 }
508 byte_src += kPageSize;
509 byte_dest += kPageSize;
510 }
511 // Handle the part of the page at the end.
512 memcpy(byte_dest, byte_src, limit - byte_src);
513 return saved_bytes;
514}
515
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800516mirror::Object* SemiSpace::MarkNonForwardedObject(mirror::Object* obj) {
517 size_t object_size = obj->SizeOf();
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800518 size_t bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800519 mirror::Object* forward_address = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800520 if (generational_ && reinterpret_cast<byte*>(obj) < last_gc_to_space_end_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800521 // If it's allocated before the last GC (older), move
522 // (pseudo-promote) it to the main free list space (as sort
523 // of an old generation.)
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800524 size_t bytes_promoted;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800525 space::MallocSpace* promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
Ian Rogers6fac4472014-02-25 17:01:10 -0800526 forward_address = promo_dest_space->Alloc(self_, object_size, &bytes_promoted, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800527 if (forward_address == nullptr) {
528 // If out of space, fall back to the to-space.
Ian Rogers6fac4472014-02-25 17:01:10 -0800529 forward_address = to_space_->Alloc(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800530 } else {
531 GetHeap()->num_bytes_allocated_.FetchAndAdd(bytes_promoted);
532 bytes_promoted_ += bytes_promoted;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800533 // Dirty the card at the destionation as it may contain
534 // references (including the class pointer) to the bump pointer
535 // space.
536 GetHeap()->WriteBarrierEveryFieldOf(forward_address);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800537 // Handle the bitmaps marking.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700538 accounting::ContinuousSpaceBitmap* live_bitmap = promo_dest_space->GetLiveBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800539 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700540 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800541 DCHECK(mark_bitmap != nullptr);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800542 DCHECK(!live_bitmap->Test(forward_address));
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800543 if (!whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800544 // If collecting the bump pointer spaces only, live_bitmap == mark_bitmap.
545 DCHECK_EQ(live_bitmap, mark_bitmap);
546
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800547 // If a bump pointer space only collection, delay the live
548 // bitmap marking of the promoted object until it's popped off
549 // the mark stack (ProcessMarkStack()). The rationale: we may
550 // be in the middle of scanning the objects in the promo
551 // destination space for
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800552 // non-moving-space-to-bump-pointer-space references by
553 // iterating over the marked bits of the live bitmap
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800554 // (MarkReachableObjects()). If we don't delay it (and instead
555 // mark the promoted object here), the above promo destination
556 // space scan could encounter the just-promoted object and
557 // forward the references in the promoted object's fields even
558 // through it is pushed onto the mark stack. If this happens,
559 // the promoted object would be in an inconsistent state, that
560 // is, it's on the mark stack (gray) but its fields are
561 // already forwarded (black), which would cause a
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800562 // DCHECK(!to_space_->HasAddress(obj)) failure below.
563 } else {
564 // Mark forward_address on the live bit map.
565 live_bitmap->Set(forward_address);
566 // Mark forward_address on the mark bit map.
567 DCHECK(!mark_bitmap->Test(forward_address));
568 mark_bitmap->Set(forward_address);
569 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800570 }
571 DCHECK(forward_address != nullptr);
572 } else {
573 // If it's allocated after the last GC (younger), copy it to the to-space.
Ian Rogers6fac4472014-02-25 17:01:10 -0800574 forward_address = to_space_->Alloc(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800575 }
576 // Copy over the object and add it to the mark stack since we still need to update its
577 // references.
Mathieu Chartierad35d902014-02-11 16:20:42 -0800578 saved_bytes_ +=
579 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700580 if (kUseBakerOrBrooksReadBarrier) {
581 obj->AssertReadBarrierPointer();
582 if (kUseBrooksReadBarrier) {
583 DCHECK_EQ(forward_address->GetReadBarrierPointer(), obj);
584 forward_address->SetReadBarrierPointer(forward_address);
585 }
586 forward_address->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800587 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800588 if (to_space_live_bitmap_ != nullptr) {
589 to_space_live_bitmap_->Set(forward_address);
590 }
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800591 DCHECK(to_space_->HasAddress(forward_address) ||
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800592 (generational_ && GetHeap()->GetPrimaryFreeListSpace()->HasAddress(forward_address)));
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800593 return forward_address;
594}
595
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800596void SemiSpace::ProcessMarkStackCallback(void* arg) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800597 reinterpret_cast<SemiSpace*>(arg)->ProcessMarkStack();
598}
599
600mirror::Object* SemiSpace::MarkObjectCallback(mirror::Object* root, void* arg) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700601 auto ref = StackReference<mirror::Object>::FromMirrorPtr(root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800602 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
603 return ref.AsMirrorPtr();
604}
605
606void SemiSpace::MarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>* obj_ptr,
607 void* arg) {
608 reinterpret_cast<SemiSpace*>(arg)->MarkObject(obj_ptr);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800609}
610
Mathieu Chartier815873e2014-02-13 18:02:13 -0800611void SemiSpace::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
612 RootType /*root_type*/) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700613 auto ref = StackReference<mirror::Object>::FromMirrorPtr(*root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800614 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
615 if (*root != ref.AsMirrorPtr()) {
616 *root = ref.AsMirrorPtr();
617 }
Mathieu Chartier815873e2014-02-13 18:02:13 -0800618}
619
Mathieu Chartier590fee92013-09-13 13:46:47 -0700620// Marks all objects in the root set.
621void SemiSpace::MarkRoots() {
622 timings_.StartSplit("MarkRoots");
623 // TODO: Visit up image roots as well?
Mathieu Chartier893263b2014-03-04 11:07:42 -0800624 Runtime::Current()->VisitRoots(MarkRootCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700625 timings_.EndSplit();
626}
627
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800628mirror::Object* SemiSpace::MarkedForwardingAddressCallback(mirror::Object* object, void* arg) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700629 return reinterpret_cast<SemiSpace*>(arg)->GetMarkedForwardAddress(object);
630}
631
632void SemiSpace::SweepSystemWeaks() {
633 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier39e32612013-11-12 16:28:05 -0800634 Runtime::Current()->SweepSystemWeaks(MarkedForwardingAddressCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700635 timings_.EndSplit();
636}
637
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800638bool SemiSpace::ShouldSweepSpace(space::ContinuousSpace* space) const {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700639 return space != from_space_ && space != to_space_ && !immune_region_.ContainsSpace(space);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700640}
641
642void SemiSpace::Sweep(bool swap_bitmaps) {
643 DCHECK(mark_stack_->IsEmpty());
Ian Rogers5fe9af72013-11-14 00:17:20 -0800644 TimingLogger::ScopedSplit("Sweep", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700645 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800646 if (space->IsContinuousMemMapAllocSpace()) {
647 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
648 if (!ShouldSweepSpace(alloc_space)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800649 continue;
650 }
Mathieu Chartierec050072014-01-07 16:00:07 -0800651 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800652 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepAllocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -0800653 size_t freed_objects = 0;
654 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800655 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartierec050072014-01-07 16:00:07 -0800656 heap_->RecordFree(freed_objects, freed_bytes);
657 freed_objects_.FetchAndAdd(freed_objects);
658 freed_bytes_.FetchAndAdd(freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700659 }
660 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800661 if (!is_large_object_space_immune_) {
662 SweepLargeObjects(swap_bitmaps);
663 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700664}
665
666void SemiSpace::SweepLargeObjects(bool swap_bitmaps) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800667 DCHECK(!is_large_object_space_immune_);
Ian Rogers5fe9af72013-11-14 00:17:20 -0800668 TimingLogger::ScopedSplit("SweepLargeObjects", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700669 size_t freed_objects = 0;
670 size_t freed_bytes = 0;
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -0800671 GetHeap()->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800672 freed_large_objects_.FetchAndAdd(freed_objects);
673 freed_large_object_bytes_.FetchAndAdd(freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700674 GetHeap()->RecordFree(freed_objects, freed_bytes);
675}
676
677// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
678// marked, put it on the appropriate list in the heap for later processing.
Mathieu Chartier407f7022014-02-18 14:37:05 -0800679void SemiSpace::DelayReferenceReferent(mirror::Class* klass, mirror::Reference* reference) {
680 heap_->DelayReferenceReferent(klass, reference, MarkedForwardingAddressCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700681}
682
Ian Rogers719d1a32014-03-06 12:13:39 -0800683class SemiSpaceMarkObjectVisitor {
684 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800685 explicit SemiSpaceMarkObjectVisitor(SemiSpace* collector) : collector_(collector) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800686 }
687
Mathieu Chartier407f7022014-02-18 14:37:05 -0800688 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const ALWAYS_INLINE
689 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartier580a8df2014-03-26 15:15:57 -0700690 // Object was already verified when we scanned it.
691 collector_->MarkObject(obj->GetFieldObjectReferenceAddr<kVerifyNone>(offset));
Ian Rogers719d1a32014-03-06 12:13:39 -0800692 }
Mathieu Chartier407f7022014-02-18 14:37:05 -0800693
694 void operator()(mirror::Class* klass, mirror::Reference* ref) const
695 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
696 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
697 collector_->DelayReferenceReferent(klass, ref);
698 }
699
Ian Rogers719d1a32014-03-06 12:13:39 -0800700 private:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800701 SemiSpace* const collector_;
Ian Rogers719d1a32014-03-06 12:13:39 -0800702};
703
704// Visit all of the references of an object and update.
705void SemiSpace::ScanObject(Object* obj) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800706 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
707 SemiSpaceMarkObjectVisitor visitor(this);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800708 obj->VisitReferences<kMovingClasses>(visitor, visitor);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700709}
710
711// Scan anything that's on the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800712void SemiSpace::ProcessMarkStack() {
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700713 space::MallocSpace* promo_dest_space = nullptr;
714 accounting::ContinuousSpaceBitmap* live_bitmap = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800715 if (generational_ && !whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800716 // If a bump pointer space only collection (and the promotion is
717 // enabled,) we delay the live-bitmap marking of promoted objects
718 // from MarkObject() until this function.
719 promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
720 live_bitmap = promo_dest_space->GetLiveBitmap();
721 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700722 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800723 DCHECK(mark_bitmap != nullptr);
724 DCHECK_EQ(live_bitmap, mark_bitmap);
725 }
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800726 timings_.StartSplit("ProcessMarkStack");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700727 while (!mark_stack_->IsEmpty()) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800728 Object* obj = mark_stack_->PopBack();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800729 if (generational_ && !whole_heap_collection_ && promo_dest_space->HasAddress(obj)) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800730 // obj has just been promoted. Mark the live bitmap for it,
731 // which is delayed from MarkObject().
732 DCHECK(!live_bitmap->Test(obj));
733 live_bitmap->Set(obj);
734 }
735 ScanObject(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700736 }
737 timings_.EndSplit();
738}
739
Mathieu Chartier590fee92013-09-13 13:46:47 -0700740inline Object* SemiSpace::GetMarkedForwardAddress(mirror::Object* obj) const
741 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
742 // All immune objects are assumed marked.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700743 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700744 return obj;
745 }
746 if (from_space_->HasAddress(obj)) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700747 // Returns either the forwarding address or nullptr.
748 return GetForwardingAddressInFromSpace(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700749 } else if (to_space_->HasAddress(obj)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800750 // Should be unlikely.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700751 // Already forwarded, must be marked.
752 return obj;
753 }
754 return heap_->GetMarkBitmap()->Test(obj) ? obj : nullptr;
755}
756
Mathieu Chartier590fee92013-09-13 13:46:47 -0700757void SemiSpace::SetToSpace(space::ContinuousMemMapAllocSpace* to_space) {
758 DCHECK(to_space != nullptr);
759 to_space_ = to_space;
760}
761
762void SemiSpace::SetFromSpace(space::ContinuousMemMapAllocSpace* from_space) {
763 DCHECK(from_space != nullptr);
764 from_space_ = from_space;
765}
766
767void SemiSpace::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800768 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700769 Heap* heap = GetHeap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700770 timings_.NewSplit("PostGcVerification");
771 heap->PostGcVerification(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700772 // Null the "to" and "from" spaces since compacting from one to the other isn't valid until
773 // further action is done by the heap.
774 to_space_ = nullptr;
775 from_space_ = nullptr;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700776 CHECK(mark_stack_->IsEmpty());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700777 mark_stack_->Reset();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800778 if (generational_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800779 // Decide whether to do a whole heap collection or a bump pointer
780 // only space collection at the next collection by updating
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700781 // whole_heap_collection.
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800782 if (!whole_heap_collection_) {
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700783 if (!kUseBytesPromoted) {
784 // Enable whole_heap_collection once every
785 // kDefaultWholeHeapCollectionInterval collections.
786 --whole_heap_collection_interval_counter_;
787 DCHECK_GE(whole_heap_collection_interval_counter_, 0);
788 if (whole_heap_collection_interval_counter_ == 0) {
789 whole_heap_collection_ = true;
790 }
791 } else {
792 // Enable whole_heap_collection if the bytes promoted since
793 // the last whole heap collection exceeds a threshold.
794 bytes_promoted_since_last_whole_heap_collection_ += bytes_promoted_;
795 if (bytes_promoted_since_last_whole_heap_collection_ >= kBytesPromotedThreshold) {
796 whole_heap_collection_ = true;
797 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800798 }
799 } else {
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700800 if (!kUseBytesPromoted) {
801 DCHECK_EQ(whole_heap_collection_interval_counter_, 0);
802 whole_heap_collection_interval_counter_ = kDefaultWholeHeapCollectionInterval;
803 whole_heap_collection_ = false;
804 } else {
805 // Reset it.
806 bytes_promoted_since_last_whole_heap_collection_ = bytes_promoted_;
807 whole_heap_collection_ = false;
808 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800809 }
810 }
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700811 // Clear all of the spaces' mark bitmaps.
812 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
813 heap_->ClearMarkedObjects();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700814}
815
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700816void SemiSpace::RevokeAllThreadLocalBuffers() {
817 timings_.StartSplit("(Paused)RevokeAllThreadLocalBuffers");
818 GetHeap()->RevokeAllThreadLocalBuffers();
819 timings_.EndSplit();
820}
821
Mathieu Chartier590fee92013-09-13 13:46:47 -0700822} // namespace collector
823} // namespace gc
824} // namespace art