blob: a0659e70a75c214879332ad14532c6664647936c [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 size_t kBytesPromotedThreshold = 4 * MB;
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -070068static constexpr size_t kLargeObjectBytesAllocatedThreshold = 16 * 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 Yamauchi24faeb22014-05-07 13:12:43 -0700107 large_object_bytes_allocated_at_last_whole_heap_collection_(0),
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800108 whole_heap_collection_(true),
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700109 collector_name_(name_),
110 swap_semi_spaces_(true) {
111}
112
113void SemiSpace::RunPhases() {
114 Thread* self = Thread::Current();
115 InitializePhase();
116 // Semi-space collector is special since it is sometimes called with the mutators suspended
117 // during the zygote creation and collector transitions. If we already exclusively hold the
118 // mutator lock, then we can't lock it again since it will cause a deadlock.
119 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
120 GetHeap()->PreGcVerificationPaused(this);
121 GetHeap()->PrePauseRosAllocVerification(this);
122 MarkingPhase();
123 ReclaimPhase();
124 GetHeap()->PostGcVerificationPaused(this);
125 } else {
126 Locks::mutator_lock_->AssertNotHeld(self);
127 {
128 ScopedPause pause(this);
129 GetHeap()->PreGcVerificationPaused(this);
130 GetHeap()->PrePauseRosAllocVerification(this);
131 MarkingPhase();
132 }
133 {
134 ReaderMutexLock mu(self, *Locks::mutator_lock_);
135 ReclaimPhase();
136 }
137 GetHeap()->PostGcVerification(this);
138 }
139 FinishPhase();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700140}
141
142void SemiSpace::InitializePhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800143 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700144 mark_stack_ = heap_->mark_stack_.get();
145 DCHECK(mark_stack_ != nullptr);
Mathieu Chartier8d562102014-03-12 17:42:10 -0700146 immune_region_.Reset();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800147 is_large_object_space_immune_ = false;
Mathieu Chartierad35d902014-02-11 16:20:42 -0800148 saved_bytes_ = 0;
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700149 bytes_moved_ = 0;
150 objects_moved_ = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700151 self_ = Thread::Current();
Mathieu Chartier31f44142014-04-08 14:40:03 -0700152 CHECK(from_space_->CanMoveObjects()) << "Attempting to move from " << *from_space_;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800153 // Set the initial bitmap.
154 to_space_live_bitmap_ = to_space_->GetLiveBitmap();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700155 {
156 // TODO: I don't think we should need heap bitmap lock to get the mark bitmap.
157 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
158 mark_bitmap_ = heap_->GetMarkBitmap();
159 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700160}
161
162void SemiSpace::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800163 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700164 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800165 GetHeap()->ProcessReferences(timings_, clear_soft_references_, &MarkedForwardingAddressCallback,
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800166 &MarkObjectCallback, &ProcessMarkStackCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700167}
168
169void SemiSpace::MarkingPhase() {
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700170 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self_));
Mathieu Chartier15d34022014-02-26 17:16:38 -0800171 if (kStoreStackTraces) {
172 Locks::mutator_lock_->AssertExclusiveHeld(self_);
173 // Store the stack traces into the runtime fault string in case we get a heap corruption
174 // related crash later.
175 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
176 std::ostringstream oss;
177 Runtime* runtime = Runtime::Current();
178 runtime->GetThreadList()->DumpForSigQuit(oss);
179 runtime->GetThreadList()->DumpNativeStacks(oss);
180 runtime->SetFaultMessage(oss.str());
181 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
182 }
Mathieu Chartier0651d412014-04-29 14:37:57 -0700183 // Revoke the thread local buffers since the GC may allocate into a RosAllocSpace and this helps
184 // to prevent fragmentation.
185 RevokeAllThreadLocalBuffers();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800186 if (generational_) {
187 if (gc_cause_ == kGcCauseExplicit || gc_cause_ == kGcCauseForNativeAlloc ||
188 clear_soft_references_) {
189 // If an explicit, native allocation-triggered, or last attempt
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700190 // collection, collect the whole heap.
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800191 whole_heap_collection_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800192 }
193 if (whole_heap_collection_) {
194 VLOG(heap) << "Whole heap collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700195 name_ = collector_name_ + " whole";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800196 } else {
197 VLOG(heap) << "Bump pointer space only collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700198 name_ = collector_name_ + " bps";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800199 }
200 }
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700201
202 if (!clear_soft_references_) {
203 if (!generational_) {
204 // If non-generational, always clear soft references.
205 clear_soft_references_ = true;
206 } else {
207 // If generational, clear soft references if a whole heap collection.
208 if (whole_heap_collection_) {
209 clear_soft_references_ = true;
210 }
211 }
212 }
213
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800214 Locks::mutator_lock_->AssertExclusiveHeld(self_);
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800215
Ian Rogers5fe9af72013-11-14 00:17:20 -0800216 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800217 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800218 // If last_gc_to_space_end_ is out of the bounds of the from-space
219 // (the to-space from last GC), then point it to the beginning of
220 // the from-space. For example, the very first GC or the
221 // pre-zygote compaction.
222 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) {
223 last_gc_to_space_end_ = from_space_->Begin();
224 }
225 // Reset this before the marking starts below.
226 bytes_promoted_ = 0;
227 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700228 // Assume the cleared space is already empty.
229 BindBitmaps();
230 // Process dirty cards and add dirty cards to mod-union tables.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800231 heap_->ProcessCards(timings_, kUseRememberedSet && generational_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800232 // Clear the whole card table since we can not get any additional dirty cards during the
233 // paused GC. This saves memory but only works for pause the world collectors.
234 timings_.NewSplit("ClearCardTable");
235 heap_->GetCardTable()->ClearCardTable();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700236 // Need to do this before the checkpoint since we don't want any threads to add references to
237 // the live stack during the recursive mark.
238 timings_.NewSplit("SwapStacks");
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800239 if (kUseThreadLocalAllocationStack) {
240 heap_->RevokeAllThreadLocalAllocationStacks(self_);
241 }
242 heap_->SwapStacks(self_);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700243 {
244 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
245 MarkRoots();
246 // Mark roots of immune spaces.
247 UpdateAndMarkModUnion();
248 // Recursively mark remaining objects.
249 MarkReachableObjects();
250 }
251 ProcessReferences(self_);
252 {
253 ReaderMutexLock mu(self_, *Locks::heap_bitmap_lock_);
254 SweepSystemWeaks();
255 }
256 timings_.NewSplit("RecordFree");
257 // Revoke buffers before measuring how many objects were moved since the TLABs need to be revoked
258 // before they are properly counted.
259 RevokeAllThreadLocalBuffers();
260 // Record freed memory.
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700261 const int64_t from_bytes = from_space_->GetBytesAllocated();
262 const int64_t to_bytes = bytes_moved_;
263 const uint64_t from_objects = from_space_->GetObjectsAllocated();
264 const uint64_t to_objects = objects_moved_;
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700265 CHECK_LE(to_objects, from_objects);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700266 // Note: Freed bytes can be negative if we copy form a compacted space to a free-list backed
267 // space.
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700268 RecordFree(from_objects - to_objects, from_bytes - to_bytes);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700269 // Clear and protect the from space.
270 from_space_->Clear();
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700271 VLOG(heap) << "Protecting from_space_: " << *from_space_;
272 from_space_->GetMemMap()->Protect(kProtectFromSpace ? PROT_NONE : PROT_READ);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700273 if (swap_semi_spaces_) {
274 heap_->SwapSemiSpaces();
275 }
276 timings_.StartSplit("PreSweepingGcVerification");
277 heap_->PreSweepingGcVerification(this);
278 timings_.EndSplit();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700279}
280
Mathieu Chartier590fee92013-09-13 13:46:47 -0700281void SemiSpace::UpdateAndMarkModUnion() {
282 for (auto& space : heap_->GetContinuousSpaces()) {
283 // If the space is immune then we need to mark the references to other spaces.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700284 if (immune_region_.ContainsSpace(space)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700285 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800286 if (table != nullptr) {
287 // TODO: Improve naming.
288 TimingLogger::ScopedSplit split(
289 space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
290 "UpdateAndMarkImageModUnionTable",
291 &timings_);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800292 table->UpdateAndMarkReferences(MarkHeapReferenceCallback, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800293 } else if (heap_->FindRememberedSetFromSpace(space) != nullptr) {
294 DCHECK(kUseRememberedSet);
295 // If a bump pointer space only collection, the non-moving
296 // space is added to the immune space. The non-moving space
297 // doesn't have a mod union table, but has a remembered
298 // set. Its dirty cards will be scanned later in
299 // MarkReachableObjects().
300 DCHECK(generational_ && !whole_heap_collection_ &&
301 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
302 << "Space " << space->GetName() << " "
303 << "generational_=" << generational_ << " "
304 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800305 } else {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800306 DCHECK(!kUseRememberedSet);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800307 // If a bump pointer space only collection, the non-moving
308 // space is added to the immune space. But the non-moving
309 // space doesn't have a mod union table. Instead, its live
310 // bitmap will be scanned later in MarkReachableObjects().
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800311 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800312 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
313 << "Space " << space->GetName() << " "
314 << "generational_=" << generational_ << " "
315 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800316 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700317 }
318 }
319}
320
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800321class SemiSpaceScanObjectVisitor {
322 public:
323 explicit SemiSpaceScanObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
Mathieu Chartier0651d412014-04-29 14:37:57 -0700324 void operator()(Object* obj) const EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_,
325 Locks::heap_bitmap_lock_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800326 DCHECK(obj != nullptr);
327 semi_space_->ScanObject(obj);
328 }
329 private:
Ian Rogers6fac4472014-02-25 17:01:10 -0800330 SemiSpace* const semi_space_;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800331};
332
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800333// Used to verify that there's no references to the from-space.
334class SemiSpaceVerifyNoFromSpaceReferencesVisitor {
335 public:
336 explicit SemiSpaceVerifyNoFromSpaceReferencesVisitor(space::ContinuousMemMapAllocSpace* from_space) :
337 from_space_(from_space) {}
338
Mathieu Chartier407f7022014-02-18 14:37:05 -0800339 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const
340 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) ALWAYS_INLINE {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700341 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800342 if (from_space_->HasAddress(ref)) {
343 Runtime::Current()->GetHeap()->DumpObject(LOG(INFO), obj);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700344 LOG(FATAL) << ref << " found in from space";
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800345 }
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800346 }
347 private:
348 space::ContinuousMemMapAllocSpace* from_space_;
349};
350
351void SemiSpace::VerifyNoFromSpaceReferences(Object* obj) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800352 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
353 SemiSpaceVerifyNoFromSpaceReferencesVisitor visitor(from_space_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700354 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800355}
356
357class SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor {
358 public:
359 explicit SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
360 void operator()(Object* obj) const
361 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
362 DCHECK(obj != nullptr);
363 semi_space_->VerifyNoFromSpaceReferences(obj);
364 }
365 private:
366 SemiSpace* const semi_space_;
367};
368
Mathieu Chartier590fee92013-09-13 13:46:47 -0700369void SemiSpace::MarkReachableObjects() {
370 timings_.StartSplit("MarkStackAsLive");
371 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
372 heap_->MarkAllocStackAsLive(live_stack);
373 live_stack->Reset();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800374
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700375 timings_.NewSplit("UpdateAndMarkRememberedSets");
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800376 for (auto& space : heap_->GetContinuousSpaces()) {
377 // If the space is immune and has no mod union table (the
378 // non-moving space when the bump pointer space only collection is
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800379 // enabled,) then we need to scan its live bitmap or dirty cards as roots
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800380 // (including the objects on the live stack which have just marked
381 // in the live bitmap above in MarkAllocStackAsLive().)
Mathieu Chartier8d562102014-03-12 17:42:10 -0700382 if (immune_region_.ContainsSpace(space) &&
383 heap_->FindModUnionTableFromSpace(space) == nullptr) {
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800384 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800385 (space == GetHeap()->GetNonMovingSpace() || space == GetHeap()->GetPrimaryFreeListSpace()));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800386 accounting::RememberedSet* rem_set = heap_->FindRememberedSetFromSpace(space);
387 if (kUseRememberedSet) {
388 DCHECK(rem_set != nullptr);
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700389 rem_set->UpdateAndMarkReferences(MarkHeapReferenceCallback, DelayReferenceReferentCallback,
390 from_space_, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800391 if (kIsDebugBuild) {
392 // Verify that there are no from-space references that
393 // remain in the space, that is, the remembered set (and the
394 // card table) didn't miss any from-space references in the
395 // space.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700396 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800397 SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor visitor(this);
398 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
399 reinterpret_cast<uintptr_t>(space->End()),
400 visitor);
401 }
402 } else {
403 DCHECK(rem_set == nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700404 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800405 SemiSpaceScanObjectVisitor visitor(this);
406 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
407 reinterpret_cast<uintptr_t>(space->End()),
408 visitor);
409 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800410 }
411 }
412
413 if (is_large_object_space_immune_) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700414 timings_.NewSplit("VisitLargeObjects");
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800415 DCHECK(generational_ && !whole_heap_collection_);
Hiroshi Yamauchiba5870d2014-01-29 15:31:03 -0800416 // Delay copying the live set to the marked set until here from
417 // BindBitmaps() as the large objects on the allocation stack may
418 // be newly added to the live set above in MarkAllocStackAsLive().
419 GetHeap()->GetLargeObjectsSpace()->CopyLiveToMarked();
420
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800421 // When the large object space is immune, we need to scan the
422 // large object space as roots as they contain references to their
423 // classes (primitive array classes) that could move though they
424 // don't contain any other references.
425 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700426 accounting::LargeObjectBitmap* large_live_bitmap = large_object_space->GetLiveBitmap();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800427 SemiSpaceScanObjectVisitor visitor(this);
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700428 large_live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(large_object_space->Begin()),
429 reinterpret_cast<uintptr_t>(large_object_space->End()),
430 visitor);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800431 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700432 timings_.EndSplit();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700433 // Recursively process the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800434 ProcessMarkStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700435}
436
437void SemiSpace::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800438 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700439 {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800440 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700441 // Reclaim unmarked objects.
442 Sweep(false);
443 // Swap the live and mark bitmaps for each space which we modified space. This is an
444 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
445 // bitmaps.
446 timings_.StartSplit("SwapBitmaps");
447 SwapBitmaps();
448 timings_.EndSplit();
449 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800450 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
451 GetHeap()->UnBindBitmaps();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700452 }
Mathieu Chartierad35d902014-02-11 16:20:42 -0800453 if (saved_bytes_ > 0) {
454 VLOG(heap) << "Avoided dirtying " << PrettySize(saved_bytes_);
455 }
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800456
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800457 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800458 // Record the end (top) of the to space so we can distinguish
459 // between objects that were allocated since the last GC and the
460 // older objects.
461 last_gc_to_space_end_ = to_space_->End();
462 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700463}
464
465void SemiSpace::ResizeMarkStack(size_t new_size) {
466 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
467 CHECK_LE(mark_stack_->Size(), new_size);
468 mark_stack_->Resize(new_size);
469 for (const auto& obj : temp) {
470 mark_stack_->PushBack(obj);
471 }
472}
473
474inline void SemiSpace::MarkStackPush(Object* obj) {
475 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
476 ResizeMarkStack(mark_stack_->Capacity() * 2);
477 }
478 // The object must be pushed on to the mark stack.
479 mark_stack_->PushBack(obj);
480}
481
Mathieu Chartierad35d902014-02-11 16:20:42 -0800482static inline size_t CopyAvoidingDirtyingPages(void* dest, const void* src, size_t size) {
483 if (LIKELY(size <= static_cast<size_t>(kPageSize))) {
484 // We will dirty the current page and somewhere in the middle of the next page. This means
485 // that the next object copied will also dirty that page.
486 // TODO: Worth considering the last object copied? We may end up dirtying one page which is
487 // not necessary per GC.
488 memcpy(dest, src, size);
489 return 0;
490 }
491 size_t saved_bytes = 0;
492 byte* byte_dest = reinterpret_cast<byte*>(dest);
493 if (kIsDebugBuild) {
494 for (size_t i = 0; i < size; ++i) {
495 CHECK_EQ(byte_dest[i], 0U);
496 }
497 }
498 // Process the start of the page. The page must already be dirty, don't bother with checking.
499 const byte* byte_src = reinterpret_cast<const byte*>(src);
500 const byte* limit = byte_src + size;
501 size_t page_remain = AlignUp(byte_dest, kPageSize) - byte_dest;
502 // Copy the bytes until the start of the next page.
503 memcpy(dest, src, page_remain);
504 byte_src += page_remain;
505 byte_dest += page_remain;
Mathieu Chartier407f7022014-02-18 14:37:05 -0800506 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), kPageSize);
507 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), sizeof(uintptr_t));
508 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_src), sizeof(uintptr_t));
Mathieu Chartierad35d902014-02-11 16:20:42 -0800509 while (byte_src + kPageSize < limit) {
510 bool all_zero = true;
511 uintptr_t* word_dest = reinterpret_cast<uintptr_t*>(byte_dest);
512 const uintptr_t* word_src = reinterpret_cast<const uintptr_t*>(byte_src);
513 for (size_t i = 0; i < kPageSize / sizeof(*word_src); ++i) {
514 // Assumes the destination of the copy is all zeros.
515 if (word_src[i] != 0) {
516 all_zero = false;
517 word_dest[i] = word_src[i];
518 }
519 }
520 if (all_zero) {
521 // Avoided copying into the page since it was all zeros.
522 saved_bytes += kPageSize;
523 }
524 byte_src += kPageSize;
525 byte_dest += kPageSize;
526 }
527 // Handle the part of the page at the end.
528 memcpy(byte_dest, byte_src, limit - byte_src);
529 return saved_bytes;
530}
531
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800532mirror::Object* SemiSpace::MarkNonForwardedObject(mirror::Object* obj) {
533 size_t object_size = obj->SizeOf();
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800534 size_t bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800535 mirror::Object* forward_address = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800536 if (generational_ && reinterpret_cast<byte*>(obj) < last_gc_to_space_end_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800537 // If it's allocated before the last GC (older), move
538 // (pseudo-promote) it to the main free list space (as sort
539 // of an old generation.)
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800540 space::MallocSpace* promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
Mathieu Chartier0651d412014-04-29 14:37:57 -0700541 forward_address = promo_dest_space->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
542 nullptr);
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700543 if (UNLIKELY(forward_address == nullptr)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800544 // If out of space, fall back to the to-space.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700545 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800546 } else {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700547 bytes_promoted_ += bytes_allocated;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800548 // Dirty the card at the destionation as it may contain
549 // references (including the class pointer) to the bump pointer
550 // space.
551 GetHeap()->WriteBarrierEveryFieldOf(forward_address);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800552 // Handle the bitmaps marking.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700553 accounting::ContinuousSpaceBitmap* live_bitmap = promo_dest_space->GetLiveBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800554 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700555 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800556 DCHECK(mark_bitmap != nullptr);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800557 DCHECK(!live_bitmap->Test(forward_address));
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800558 if (!whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800559 // If collecting the bump pointer spaces only, live_bitmap == mark_bitmap.
560 DCHECK_EQ(live_bitmap, mark_bitmap);
561
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800562 // If a bump pointer space only collection, delay the live
563 // bitmap marking of the promoted object until it's popped off
564 // the mark stack (ProcessMarkStack()). The rationale: we may
565 // be in the middle of scanning the objects in the promo
566 // destination space for
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800567 // non-moving-space-to-bump-pointer-space references by
568 // iterating over the marked bits of the live bitmap
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800569 // (MarkReachableObjects()). If we don't delay it (and instead
570 // mark the promoted object here), the above promo destination
571 // space scan could encounter the just-promoted object and
572 // forward the references in the promoted object's fields even
573 // through it is pushed onto the mark stack. If this happens,
574 // the promoted object would be in an inconsistent state, that
575 // is, it's on the mark stack (gray) but its fields are
576 // already forwarded (black), which would cause a
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800577 // DCHECK(!to_space_->HasAddress(obj)) failure below.
578 } else {
579 // Mark forward_address on the live bit map.
580 live_bitmap->Set(forward_address);
581 // Mark forward_address on the mark bit map.
582 DCHECK(!mark_bitmap->Test(forward_address));
583 mark_bitmap->Set(forward_address);
584 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800585 }
586 DCHECK(forward_address != nullptr);
587 } else {
588 // If it's allocated after the last GC (younger), copy it to the to-space.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700589 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800590 }
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700591 ++objects_moved_;
592 bytes_moved_ += bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800593 // Copy over the object and add it to the mark stack since we still need to update its
594 // references.
Mathieu Chartierad35d902014-02-11 16:20:42 -0800595 saved_bytes_ +=
596 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700597 if (kUseBakerOrBrooksReadBarrier) {
598 obj->AssertReadBarrierPointer();
599 if (kUseBrooksReadBarrier) {
600 DCHECK_EQ(forward_address->GetReadBarrierPointer(), obj);
601 forward_address->SetReadBarrierPointer(forward_address);
602 }
603 forward_address->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800604 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800605 if (to_space_live_bitmap_ != nullptr) {
606 to_space_live_bitmap_->Set(forward_address);
607 }
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800608 DCHECK(to_space_->HasAddress(forward_address) ||
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800609 (generational_ && GetHeap()->GetPrimaryFreeListSpace()->HasAddress(forward_address)));
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800610 return forward_address;
611}
612
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800613void SemiSpace::ProcessMarkStackCallback(void* arg) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800614 reinterpret_cast<SemiSpace*>(arg)->ProcessMarkStack();
615}
616
617mirror::Object* SemiSpace::MarkObjectCallback(mirror::Object* root, void* arg) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700618 auto ref = StackReference<mirror::Object>::FromMirrorPtr(root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800619 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
620 return ref.AsMirrorPtr();
621}
622
623void SemiSpace::MarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>* obj_ptr,
624 void* arg) {
625 reinterpret_cast<SemiSpace*>(arg)->MarkObject(obj_ptr);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800626}
627
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700628void SemiSpace::DelayReferenceReferentCallback(mirror::Class* klass, mirror::Reference* ref,
629 void* arg) {
630 reinterpret_cast<SemiSpace*>(arg)->DelayReferenceReferent(klass, ref);
631}
632
Mathieu Chartier815873e2014-02-13 18:02:13 -0800633void SemiSpace::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
634 RootType /*root_type*/) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700635 auto ref = StackReference<mirror::Object>::FromMirrorPtr(*root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800636 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
637 if (*root != ref.AsMirrorPtr()) {
638 *root = ref.AsMirrorPtr();
639 }
Mathieu Chartier815873e2014-02-13 18:02:13 -0800640}
641
Mathieu Chartier590fee92013-09-13 13:46:47 -0700642// Marks all objects in the root set.
643void SemiSpace::MarkRoots() {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700644 timings_.NewSplit("MarkRoots");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700645 // TODO: Visit up image roots as well?
Mathieu Chartier893263b2014-03-04 11:07:42 -0800646 Runtime::Current()->VisitRoots(MarkRootCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700647}
648
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800649mirror::Object* SemiSpace::MarkedForwardingAddressCallback(mirror::Object* object, void* arg) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700650 return reinterpret_cast<SemiSpace*>(arg)->GetMarkedForwardAddress(object);
651}
652
653void SemiSpace::SweepSystemWeaks() {
654 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier39e32612013-11-12 16:28:05 -0800655 Runtime::Current()->SweepSystemWeaks(MarkedForwardingAddressCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700656 timings_.EndSplit();
657}
658
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800659bool SemiSpace::ShouldSweepSpace(space::ContinuousSpace* space) const {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700660 return space != from_space_ && space != to_space_ && !immune_region_.ContainsSpace(space);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700661}
662
663void SemiSpace::Sweep(bool swap_bitmaps) {
664 DCHECK(mark_stack_->IsEmpty());
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700665 TimingLogger::ScopedSplit split("Sweep", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700666 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800667 if (space->IsContinuousMemMapAllocSpace()) {
668 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
669 if (!ShouldSweepSpace(alloc_space)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800670 continue;
671 }
Mathieu Chartierec050072014-01-07 16:00:07 -0800672 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800673 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepAllocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -0800674 size_t freed_objects = 0;
675 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800676 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700677 RecordFree(freed_objects, freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700678 }
679 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800680 if (!is_large_object_space_immune_) {
681 SweepLargeObjects(swap_bitmaps);
682 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700683}
684
685void SemiSpace::SweepLargeObjects(bool swap_bitmaps) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800686 DCHECK(!is_large_object_space_immune_);
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700687 TimingLogger::ScopedSplit split("SweepLargeObjects", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700688 size_t freed_objects = 0;
689 size_t freed_bytes = 0;
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700690 heap_->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700691 RecordFreeLargeObjects(freed_objects, freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700692}
693
694// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
695// marked, put it on the appropriate list in the heap for later processing.
Mathieu Chartier407f7022014-02-18 14:37:05 -0800696void SemiSpace::DelayReferenceReferent(mirror::Class* klass, mirror::Reference* reference) {
697 heap_->DelayReferenceReferent(klass, reference, MarkedForwardingAddressCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700698}
699
Ian Rogers719d1a32014-03-06 12:13:39 -0800700class SemiSpaceMarkObjectVisitor {
701 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800702 explicit SemiSpaceMarkObjectVisitor(SemiSpace* collector) : collector_(collector) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800703 }
704
Mathieu Chartier407f7022014-02-18 14:37:05 -0800705 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const ALWAYS_INLINE
706 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartier580a8df2014-03-26 15:15:57 -0700707 // Object was already verified when we scanned it.
708 collector_->MarkObject(obj->GetFieldObjectReferenceAddr<kVerifyNone>(offset));
Ian Rogers719d1a32014-03-06 12:13:39 -0800709 }
Mathieu Chartier407f7022014-02-18 14:37:05 -0800710
711 void operator()(mirror::Class* klass, mirror::Reference* ref) const
712 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
713 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
714 collector_->DelayReferenceReferent(klass, ref);
715 }
716
Ian Rogers719d1a32014-03-06 12:13:39 -0800717 private:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800718 SemiSpace* const collector_;
Ian Rogers719d1a32014-03-06 12:13:39 -0800719};
720
721// Visit all of the references of an object and update.
722void SemiSpace::ScanObject(Object* obj) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800723 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
724 SemiSpaceMarkObjectVisitor visitor(this);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800725 obj->VisitReferences<kMovingClasses>(visitor, visitor);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700726}
727
728// Scan anything that's on the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800729void SemiSpace::ProcessMarkStack() {
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700730 space::MallocSpace* promo_dest_space = nullptr;
731 accounting::ContinuousSpaceBitmap* live_bitmap = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800732 if (generational_ && !whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800733 // If a bump pointer space only collection (and the promotion is
734 // enabled,) we delay the live-bitmap marking of promoted objects
735 // from MarkObject() until this function.
736 promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
737 live_bitmap = promo_dest_space->GetLiveBitmap();
738 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700739 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800740 DCHECK(mark_bitmap != nullptr);
741 DCHECK_EQ(live_bitmap, mark_bitmap);
742 }
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800743 timings_.StartSplit("ProcessMarkStack");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700744 while (!mark_stack_->IsEmpty()) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800745 Object* obj = mark_stack_->PopBack();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800746 if (generational_ && !whole_heap_collection_ && promo_dest_space->HasAddress(obj)) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800747 // obj has just been promoted. Mark the live bitmap for it,
748 // which is delayed from MarkObject().
749 DCHECK(!live_bitmap->Test(obj));
750 live_bitmap->Set(obj);
751 }
752 ScanObject(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700753 }
754 timings_.EndSplit();
755}
756
Mathieu Chartier590fee92013-09-13 13:46:47 -0700757inline Object* SemiSpace::GetMarkedForwardAddress(mirror::Object* obj) const
758 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
759 // All immune objects are assumed marked.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700760 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700761 return obj;
762 }
763 if (from_space_->HasAddress(obj)) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700764 // Returns either the forwarding address or nullptr.
765 return GetForwardingAddressInFromSpace(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700766 } else if (to_space_->HasAddress(obj)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800767 // Should be unlikely.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700768 // Already forwarded, must be marked.
769 return obj;
770 }
771 return heap_->GetMarkBitmap()->Test(obj) ? obj : nullptr;
772}
773
Mathieu Chartier590fee92013-09-13 13:46:47 -0700774void SemiSpace::SetToSpace(space::ContinuousMemMapAllocSpace* to_space) {
775 DCHECK(to_space != nullptr);
776 to_space_ = to_space;
777}
778
779void SemiSpace::SetFromSpace(space::ContinuousMemMapAllocSpace* from_space) {
780 DCHECK(from_space != nullptr);
781 from_space_ = from_space;
782}
783
784void SemiSpace::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800785 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700786 // Null the "to" and "from" spaces since compacting from one to the other isn't valid until
787 // further action is done by the heap.
788 to_space_ = nullptr;
789 from_space_ = nullptr;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700790 CHECK(mark_stack_->IsEmpty());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700791 mark_stack_->Reset();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800792 if (generational_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800793 // Decide whether to do a whole heap collection or a bump pointer
794 // only space collection at the next collection by updating
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700795 // whole_heap_collection.
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800796 if (!whole_heap_collection_) {
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700797 // Enable whole_heap_collection if the bytes promoted since the
798 // last whole heap collection or the large object bytes
799 // allocated exceeds a threshold.
800 bytes_promoted_since_last_whole_heap_collection_ += bytes_promoted_;
801 bool bytes_promoted_threshold_exceeded =
802 bytes_promoted_since_last_whole_heap_collection_ >= kBytesPromotedThreshold;
803 uint64_t current_los_bytes_allocated = GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated();
804 uint64_t last_los_bytes_allocated =
805 large_object_bytes_allocated_at_last_whole_heap_collection_;
806 bool large_object_bytes_threshold_exceeded =
807 current_los_bytes_allocated >=
808 last_los_bytes_allocated + kLargeObjectBytesAllocatedThreshold;
809 if (bytes_promoted_threshold_exceeded || large_object_bytes_threshold_exceeded) {
810 whole_heap_collection_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800811 }
812 } else {
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700813 // Reset the counters.
814 bytes_promoted_since_last_whole_heap_collection_ = bytes_promoted_;
815 large_object_bytes_allocated_at_last_whole_heap_collection_ =
816 GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated();
817 whole_heap_collection_ = false;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800818 }
819 }
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700820 // Clear all of the spaces' mark bitmaps.
821 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
822 heap_->ClearMarkedObjects();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700823}
824
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700825void SemiSpace::RevokeAllThreadLocalBuffers() {
826 timings_.StartSplit("(Paused)RevokeAllThreadLocalBuffers");
827 GetHeap()->RevokeAllThreadLocalBuffers();
828 timings_.EndSplit();
829}
830
Mathieu Chartier590fee92013-09-13 13:46:47 -0700831} // namespace collector
832} // namespace gc
833} // namespace art