blob: 54e77a7fe00b0547609fa20f383c60b1aadce750 [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"
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070033#include "gc/reference_processor.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070034#include "gc/space/bump_pointer_space.h"
35#include "gc/space/bump_pointer_space-inl.h"
36#include "gc/space/image_space.h"
37#include "gc/space/large_object_space.h"
38#include "gc/space/space-inl.h"
39#include "indirect_reference_table.h"
40#include "intern_table.h"
41#include "jni_internal.h"
42#include "mark_sweep-inl.h"
43#include "monitor.h"
Mathieu Chartier8fa2dad2014-03-13 12:22:56 -070044#include "mirror/reference-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070045#include "mirror/object-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070046#include "runtime.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070047#include "thread-inl.h"
48#include "thread_list.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070049
Mathieu Chartier590fee92013-09-13 13:46:47 -070050using ::art::mirror::Object;
51
52namespace art {
53namespace gc {
54namespace collector {
55
56static constexpr bool kProtectFromSpace = true;
Mathieu Chartier15d34022014-02-26 17:16:38 -080057static constexpr bool kStoreStackTraces = false;
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -070058static constexpr size_t kBytesPromotedThreshold = 4 * MB;
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -070059static constexpr size_t kLargeObjectBytesAllocatedThreshold = 16 * MB;
Mathieu Chartier590fee92013-09-13 13:46:47 -070060
Mathieu Chartier590fee92013-09-13 13:46:47 -070061void SemiSpace::BindBitmaps() {
62 timings_.StartSplit("BindBitmaps");
Mathieu Chartiera1602f22014-01-13 17:19:19 -080063 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -070064 // Mark all of the spaces we never collect as immune.
65 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080066 if (space->GetLiveBitmap() != nullptr) {
67 if (space == to_space_) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -080068 CHECK(to_space_->IsContinuousMemMapAllocSpace());
69 to_space_->AsContinuousMemMapAllocSpace()->BindLiveToMarkBitmap();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080070 } else if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyNeverCollect
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080071 || space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect
72 // Add the main free list space and the non-moving
73 // space to the immune space if a bump pointer space
74 // only collection.
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080075 || (generational_ && !whole_heap_collection_ &&
76 (space == GetHeap()->GetNonMovingSpace() ||
77 space == GetHeap()->GetPrimaryFreeListSpace()))) {
Mathieu Chartier8d562102014-03-12 17:42:10 -070078 CHECK(immune_region_.AddContinuousSpace(space)) << "Failed to add space " << *space;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080079 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070080 }
81 }
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080082 if (generational_ && !whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080083 // We won't collect the large object space if a bump pointer space only collection.
84 is_large_object_space_immune_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080085 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070086 timings_.EndSplit();
87}
88
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080089SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix)
Mathieu Chartier590fee92013-09-13 13:46:47 -070090 : GarbageCollector(heap,
91 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"),
Mathieu Chartier590fee92013-09-13 13:46:47 -070092 to_space_(nullptr),
93 from_space_(nullptr),
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -080094 generational_(generational),
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -080095 last_gc_to_space_end_(nullptr),
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080096 bytes_promoted_(0),
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -070097 bytes_promoted_since_last_whole_heap_collection_(0),
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -070098 large_object_bytes_allocated_at_last_whole_heap_collection_(0),
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -080099 whole_heap_collection_(true),
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700100 collector_name_(name_),
101 swap_semi_spaces_(true) {
102}
103
104void SemiSpace::RunPhases() {
105 Thread* self = Thread::Current();
106 InitializePhase();
107 // Semi-space collector is special since it is sometimes called with the mutators suspended
108 // during the zygote creation and collector transitions. If we already exclusively hold the
109 // mutator lock, then we can't lock it again since it will cause a deadlock.
110 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
111 GetHeap()->PreGcVerificationPaused(this);
112 GetHeap()->PrePauseRosAllocVerification(this);
113 MarkingPhase();
114 ReclaimPhase();
115 GetHeap()->PostGcVerificationPaused(this);
116 } else {
117 Locks::mutator_lock_->AssertNotHeld(self);
118 {
119 ScopedPause pause(this);
120 GetHeap()->PreGcVerificationPaused(this);
121 GetHeap()->PrePauseRosAllocVerification(this);
122 MarkingPhase();
123 }
124 {
125 ReaderMutexLock mu(self, *Locks::mutator_lock_);
126 ReclaimPhase();
127 }
128 GetHeap()->PostGcVerification(this);
129 }
130 FinishPhase();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700131}
132
133void SemiSpace::InitializePhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800134 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700135 mark_stack_ = heap_->GetMarkStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700136 DCHECK(mark_stack_ != nullptr);
Mathieu Chartier8d562102014-03-12 17:42:10 -0700137 immune_region_.Reset();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800138 is_large_object_space_immune_ = false;
Mathieu Chartierad35d902014-02-11 16:20:42 -0800139 saved_bytes_ = 0;
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700140 bytes_moved_ = 0;
141 objects_moved_ = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700142 self_ = Thread::Current();
Mathieu Chartier31f44142014-04-08 14:40:03 -0700143 CHECK(from_space_->CanMoveObjects()) << "Attempting to move from " << *from_space_;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800144 // Set the initial bitmap.
145 to_space_live_bitmap_ = to_space_->GetLiveBitmap();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700146 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700147 // TODO: I don't think we should need heap bitmap lock to Get the mark bitmap.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700148 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
149 mark_bitmap_ = heap_->GetMarkBitmap();
150 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700151}
152
153void SemiSpace::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800154 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700155 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700156 GetHeap()->GetReferenceProcessor()->ProcessReferences(
Mathieu Chartier308351a2014-06-15 12:39:02 -0700157 false, &timings_, clear_soft_references_, &HeapReferenceMarkedCallback,
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700158 &MarkObjectCallback, &ProcessMarkStackCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700159}
160
161void SemiSpace::MarkingPhase() {
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700162 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self_));
Mathieu Chartier15d34022014-02-26 17:16:38 -0800163 if (kStoreStackTraces) {
164 Locks::mutator_lock_->AssertExclusiveHeld(self_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700165 // Store the stack traces into the runtime fault string in case we Get a heap corruption
Mathieu Chartier15d34022014-02-26 17:16:38 -0800166 // related crash later.
167 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
168 std::ostringstream oss;
169 Runtime* runtime = Runtime::Current();
170 runtime->GetThreadList()->DumpForSigQuit(oss);
171 runtime->GetThreadList()->DumpNativeStacks(oss);
172 runtime->SetFaultMessage(oss.str());
173 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
174 }
Mathieu Chartier0651d412014-04-29 14:37:57 -0700175 // Revoke the thread local buffers since the GC may allocate into a RosAllocSpace and this helps
176 // to prevent fragmentation.
177 RevokeAllThreadLocalBuffers();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800178 if (generational_) {
179 if (gc_cause_ == kGcCauseExplicit || gc_cause_ == kGcCauseForNativeAlloc ||
180 clear_soft_references_) {
181 // If an explicit, native allocation-triggered, or last attempt
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700182 // collection, collect the whole heap.
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800183 whole_heap_collection_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800184 }
185 if (whole_heap_collection_) {
186 VLOG(heap) << "Whole heap collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700187 name_ = collector_name_ + " whole";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800188 } else {
189 VLOG(heap) << "Bump pointer space only collection";
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700190 name_ = collector_name_ + " bps";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800191 }
192 }
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700193
194 if (!clear_soft_references_) {
195 if (!generational_) {
196 // If non-generational, always clear soft references.
197 clear_soft_references_ = true;
198 } else {
199 // If generational, clear soft references if a whole heap collection.
200 if (whole_heap_collection_) {
201 clear_soft_references_ = true;
202 }
203 }
204 }
205
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800206 Locks::mutator_lock_->AssertExclusiveHeld(self_);
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800207
Ian Rogers5fe9af72013-11-14 00:17:20 -0800208 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800209 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800210 // If last_gc_to_space_end_ is out of the bounds of the from-space
211 // (the to-space from last GC), then point it to the beginning of
212 // the from-space. For example, the very first GC or the
213 // pre-zygote compaction.
214 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) {
215 last_gc_to_space_end_ = from_space_->Begin();
216 }
217 // Reset this before the marking starts below.
218 bytes_promoted_ = 0;
219 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700220 // Assume the cleared space is already empty.
221 BindBitmaps();
222 // Process dirty cards and add dirty cards to mod-union tables.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800223 heap_->ProcessCards(timings_, kUseRememberedSet && generational_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700224 // Clear the whole card table since we can not Get any additional dirty cards during the
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800225 // paused GC. This saves memory but only works for pause the world collectors.
226 timings_.NewSplit("ClearCardTable");
227 heap_->GetCardTable()->ClearCardTable();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700228 // Need to do this before the checkpoint since we don't want any threads to add references to
229 // the live stack during the recursive mark.
230 timings_.NewSplit("SwapStacks");
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800231 if (kUseThreadLocalAllocationStack) {
232 heap_->RevokeAllThreadLocalAllocationStacks(self_);
233 }
234 heap_->SwapStacks(self_);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700235 {
236 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
237 MarkRoots();
238 // Mark roots of immune spaces.
239 UpdateAndMarkModUnion();
240 // Recursively mark remaining objects.
241 MarkReachableObjects();
242 }
243 ProcessReferences(self_);
244 {
245 ReaderMutexLock mu(self_, *Locks::heap_bitmap_lock_);
246 SweepSystemWeaks();
247 }
248 timings_.NewSplit("RecordFree");
249 // Revoke buffers before measuring how many objects were moved since the TLABs need to be revoked
250 // before they are properly counted.
251 RevokeAllThreadLocalBuffers();
252 // Record freed memory.
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700253 const int64_t from_bytes = from_space_->GetBytesAllocated();
254 const int64_t to_bytes = bytes_moved_;
255 const uint64_t from_objects = from_space_->GetObjectsAllocated();
256 const uint64_t to_objects = objects_moved_;
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700257 CHECK_LE(to_objects, from_objects);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700258 // Note: Freed bytes can be negative if we copy form a compacted space to a free-list backed
259 // space.
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700260 RecordFree(from_objects - to_objects, from_bytes - to_bytes);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700261 // Clear and protect the from space.
262 from_space_->Clear();
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700263 VLOG(heap) << "Protecting from_space_: " << *from_space_;
264 from_space_->GetMemMap()->Protect(kProtectFromSpace ? PROT_NONE : PROT_READ);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700265 timings_.StartSplit("PreSweepingGcVerification");
266 heap_->PreSweepingGcVerification(this);
267 timings_.EndSplit();
Mathieu Chartier4240c512014-05-27 10:10:11 -0700268 if (swap_semi_spaces_) {
269 heap_->SwapSemiSpaces();
270 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700271}
272
Mathieu Chartier590fee92013-09-13 13:46:47 -0700273void SemiSpace::UpdateAndMarkModUnion() {
274 for (auto& space : heap_->GetContinuousSpaces()) {
275 // If the space is immune then we need to mark the references to other spaces.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700276 if (immune_region_.ContainsSpace(space)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700277 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800278 if (table != nullptr) {
279 // TODO: Improve naming.
280 TimingLogger::ScopedSplit split(
281 space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
282 "UpdateAndMarkImageModUnionTable",
283 &timings_);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800284 table->UpdateAndMarkReferences(MarkHeapReferenceCallback, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800285 } else if (heap_->FindRememberedSetFromSpace(space) != nullptr) {
286 DCHECK(kUseRememberedSet);
287 // If a bump pointer space only collection, the non-moving
288 // space is added to the immune space. The non-moving space
289 // doesn't have a mod union table, but has a remembered
290 // set. Its dirty cards will be scanned later in
291 // MarkReachableObjects().
292 DCHECK(generational_ && !whole_heap_collection_ &&
293 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
294 << "Space " << space->GetName() << " "
295 << "generational_=" << generational_ << " "
296 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800297 } else {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800298 DCHECK(!kUseRememberedSet);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800299 // If a bump pointer space only collection, the non-moving
300 // space is added to the immune space. But the non-moving
301 // space doesn't have a mod union table. Instead, its live
302 // bitmap will be scanned later in MarkReachableObjects().
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800303 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800304 (space == heap_->GetNonMovingSpace() || space == heap_->GetPrimaryFreeListSpace()))
305 << "Space " << space->GetName() << " "
306 << "generational_=" << generational_ << " "
307 << "whole_heap_collection_=" << whole_heap_collection_ << " ";
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800308 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700309 }
310 }
311}
312
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800313class SemiSpaceScanObjectVisitor {
314 public:
315 explicit SemiSpaceScanObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
Mathieu Chartier0651d412014-04-29 14:37:57 -0700316 void operator()(Object* obj) const EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_,
317 Locks::heap_bitmap_lock_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800318 DCHECK(obj != nullptr);
319 semi_space_->ScanObject(obj);
320 }
321 private:
Ian Rogers6fac4472014-02-25 17:01:10 -0800322 SemiSpace* const semi_space_;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800323};
324
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800325// Used to verify that there's no references to the from-space.
326class SemiSpaceVerifyNoFromSpaceReferencesVisitor {
327 public:
328 explicit SemiSpaceVerifyNoFromSpaceReferencesVisitor(space::ContinuousMemMapAllocSpace* from_space) :
329 from_space_(from_space) {}
330
Mathieu Chartier407f7022014-02-18 14:37:05 -0800331 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const
332 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) ALWAYS_INLINE {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700333 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800334 if (from_space_->HasAddress(ref)) {
335 Runtime::Current()->GetHeap()->DumpObject(LOG(INFO), obj);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700336 LOG(FATAL) << ref << " found in from space";
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800337 }
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800338 }
339 private:
340 space::ContinuousMemMapAllocSpace* from_space_;
341};
342
343void SemiSpace::VerifyNoFromSpaceReferences(Object* obj) {
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800344 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
345 SemiSpaceVerifyNoFromSpaceReferencesVisitor visitor(from_space_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700346 obj->VisitReferences<kMovingClasses>(visitor, VoidFunctor());
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800347}
348
349class SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor {
350 public:
351 explicit SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor(SemiSpace* ss) : semi_space_(ss) {}
352 void operator()(Object* obj) const
353 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
354 DCHECK(obj != nullptr);
355 semi_space_->VerifyNoFromSpaceReferences(obj);
356 }
357 private:
358 SemiSpace* const semi_space_;
359};
360
Mathieu Chartier590fee92013-09-13 13:46:47 -0700361void SemiSpace::MarkReachableObjects() {
362 timings_.StartSplit("MarkStackAsLive");
363 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
364 heap_->MarkAllocStackAsLive(live_stack);
365 live_stack->Reset();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800366
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700367 timings_.NewSplit("UpdateAndMarkRememberedSets");
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800368 for (auto& space : heap_->GetContinuousSpaces()) {
369 // If the space is immune and has no mod union table (the
370 // non-moving space when the bump pointer space only collection is
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800371 // enabled,) then we need to scan its live bitmap or dirty cards as roots
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800372 // (including the objects on the live stack which have just marked
373 // in the live bitmap above in MarkAllocStackAsLive().)
Mathieu Chartier8d562102014-03-12 17:42:10 -0700374 if (immune_region_.ContainsSpace(space) &&
375 heap_->FindModUnionTableFromSpace(space) == nullptr) {
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800376 DCHECK(generational_ && !whole_heap_collection_ &&
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800377 (space == GetHeap()->GetNonMovingSpace() || space == GetHeap()->GetPrimaryFreeListSpace()));
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800378 accounting::RememberedSet* rem_set = heap_->FindRememberedSetFromSpace(space);
379 if (kUseRememberedSet) {
380 DCHECK(rem_set != nullptr);
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700381 rem_set->UpdateAndMarkReferences(MarkHeapReferenceCallback, DelayReferenceReferentCallback,
382 from_space_, this);
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800383 if (kIsDebugBuild) {
384 // Verify that there are no from-space references that
385 // remain in the space, that is, the remembered set (and the
386 // card table) didn't miss any from-space references in the
387 // space.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700388 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800389 SemiSpaceVerifyNoFromSpaceReferencesObjectVisitor visitor(this);
390 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
391 reinterpret_cast<uintptr_t>(space->End()),
392 visitor);
393 }
394 } else {
395 DCHECK(rem_set == nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700396 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800397 SemiSpaceScanObjectVisitor visitor(this);
398 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()),
399 reinterpret_cast<uintptr_t>(space->End()),
400 visitor);
401 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800402 }
403 }
404
405 if (is_large_object_space_immune_) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700406 timings_.NewSplit("VisitLargeObjects");
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800407 DCHECK(generational_ && !whole_heap_collection_);
Hiroshi Yamauchiba5870d2014-01-29 15:31:03 -0800408 // Delay copying the live set to the marked set until here from
409 // BindBitmaps() as the large objects on the allocation stack may
410 // be newly added to the live set above in MarkAllocStackAsLive().
411 GetHeap()->GetLargeObjectsSpace()->CopyLiveToMarked();
412
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800413 // When the large object space is immune, we need to scan the
414 // large object space as roots as they contain references to their
415 // classes (primitive array classes) that could move though they
416 // don't contain any other references.
417 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700418 accounting::LargeObjectBitmap* large_live_bitmap = large_object_space->GetLiveBitmap();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800419 SemiSpaceScanObjectVisitor visitor(this);
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700420 large_live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(large_object_space->Begin()),
421 reinterpret_cast<uintptr_t>(large_object_space->End()),
422 visitor);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800423 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700424 timings_.EndSplit();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700425 // Recursively process the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800426 ProcessMarkStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700427}
428
429void SemiSpace::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800430 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700431 {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800432 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700433 // Reclaim unmarked objects.
434 Sweep(false);
435 // Swap the live and mark bitmaps for each space which we modified space. This is an
436 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
437 // bitmaps.
438 timings_.StartSplit("SwapBitmaps");
439 SwapBitmaps();
440 timings_.EndSplit();
441 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800442 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
443 GetHeap()->UnBindBitmaps();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700444 }
Mathieu Chartierad35d902014-02-11 16:20:42 -0800445 if (saved_bytes_ > 0) {
446 VLOG(heap) << "Avoided dirtying " << PrettySize(saved_bytes_);
447 }
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800448
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800449 if (generational_) {
Hiroshi Yamauchi4b1782f2013-12-05 16:46:22 -0800450 // Record the end (top) of the to space so we can distinguish
451 // between objects that were allocated since the last GC and the
452 // older objects.
453 last_gc_to_space_end_ = to_space_->End();
454 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700455}
456
457void SemiSpace::ResizeMarkStack(size_t new_size) {
458 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
459 CHECK_LE(mark_stack_->Size(), new_size);
460 mark_stack_->Resize(new_size);
461 for (const auto& obj : temp) {
462 mark_stack_->PushBack(obj);
463 }
464}
465
466inline void SemiSpace::MarkStackPush(Object* obj) {
467 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
468 ResizeMarkStack(mark_stack_->Capacity() * 2);
469 }
470 // The object must be pushed on to the mark stack.
471 mark_stack_->PushBack(obj);
472}
473
Mathieu Chartierad35d902014-02-11 16:20:42 -0800474static inline size_t CopyAvoidingDirtyingPages(void* dest, const void* src, size_t size) {
475 if (LIKELY(size <= static_cast<size_t>(kPageSize))) {
476 // We will dirty the current page and somewhere in the middle of the next page. This means
477 // that the next object copied will also dirty that page.
478 // TODO: Worth considering the last object copied? We may end up dirtying one page which is
479 // not necessary per GC.
480 memcpy(dest, src, size);
481 return 0;
482 }
483 size_t saved_bytes = 0;
484 byte* byte_dest = reinterpret_cast<byte*>(dest);
485 if (kIsDebugBuild) {
486 for (size_t i = 0; i < size; ++i) {
487 CHECK_EQ(byte_dest[i], 0U);
488 }
489 }
490 // Process the start of the page. The page must already be dirty, don't bother with checking.
491 const byte* byte_src = reinterpret_cast<const byte*>(src);
492 const byte* limit = byte_src + size;
493 size_t page_remain = AlignUp(byte_dest, kPageSize) - byte_dest;
494 // Copy the bytes until the start of the next page.
495 memcpy(dest, src, page_remain);
496 byte_src += page_remain;
497 byte_dest += page_remain;
Mathieu Chartier407f7022014-02-18 14:37:05 -0800498 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), kPageSize);
499 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_dest), sizeof(uintptr_t));
500 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_src), sizeof(uintptr_t));
Mathieu Chartierad35d902014-02-11 16:20:42 -0800501 while (byte_src + kPageSize < limit) {
502 bool all_zero = true;
503 uintptr_t* word_dest = reinterpret_cast<uintptr_t*>(byte_dest);
504 const uintptr_t* word_src = reinterpret_cast<const uintptr_t*>(byte_src);
505 for (size_t i = 0; i < kPageSize / sizeof(*word_src); ++i) {
506 // Assumes the destination of the copy is all zeros.
507 if (word_src[i] != 0) {
508 all_zero = false;
509 word_dest[i] = word_src[i];
510 }
511 }
512 if (all_zero) {
513 // Avoided copying into the page since it was all zeros.
514 saved_bytes += kPageSize;
515 }
516 byte_src += kPageSize;
517 byte_dest += kPageSize;
518 }
519 // Handle the part of the page at the end.
520 memcpy(byte_dest, byte_src, limit - byte_src);
521 return saved_bytes;
522}
523
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800524mirror::Object* SemiSpace::MarkNonForwardedObject(mirror::Object* obj) {
525 size_t object_size = obj->SizeOf();
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800526 size_t bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800527 mirror::Object* forward_address = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800528 if (generational_ && reinterpret_cast<byte*>(obj) < last_gc_to_space_end_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800529 // If it's allocated before the last GC (older), move
530 // (pseudo-promote) it to the main free list space (as sort
531 // of an old generation.)
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800532 space::MallocSpace* promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
Mathieu Chartier0651d412014-04-29 14:37:57 -0700533 forward_address = promo_dest_space->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
534 nullptr);
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700535 if (UNLIKELY(forward_address == nullptr)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800536 // If out of space, fall back to the to-space.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700537 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800538 } else {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700539 bytes_promoted_ += bytes_allocated;
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800540 // Dirty the card at the destionation as it may contain
541 // references (including the class pointer) to the bump pointer
542 // space.
543 GetHeap()->WriteBarrierEveryFieldOf(forward_address);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800544 // Handle the bitmaps marking.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700545 accounting::ContinuousSpaceBitmap* live_bitmap = promo_dest_space->GetLiveBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800546 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700547 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800548 DCHECK(mark_bitmap != nullptr);
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800549 DCHECK(!live_bitmap->Test(forward_address));
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800550 if (!whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800551 // If collecting the bump pointer spaces only, live_bitmap == mark_bitmap.
552 DCHECK_EQ(live_bitmap, mark_bitmap);
553
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800554 // If a bump pointer space only collection, delay the live
555 // bitmap marking of the promoted object until it's popped off
556 // the mark stack (ProcessMarkStack()). The rationale: we may
557 // be in the middle of scanning the objects in the promo
558 // destination space for
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800559 // non-moving-space-to-bump-pointer-space references by
560 // iterating over the marked bits of the live bitmap
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800561 // (MarkReachableObjects()). If we don't delay it (and instead
562 // mark the promoted object here), the above promo destination
563 // space scan could encounter the just-promoted object and
564 // forward the references in the promoted object's fields even
565 // through it is pushed onto the mark stack. If this happens,
566 // the promoted object would be in an inconsistent state, that
567 // is, it's on the mark stack (gray) but its fields are
568 // already forwarded (black), which would cause a
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800569 // DCHECK(!to_space_->HasAddress(obj)) failure below.
570 } else {
571 // Mark forward_address on the live bit map.
572 live_bitmap->Set(forward_address);
573 // Mark forward_address on the mark bit map.
574 DCHECK(!mark_bitmap->Test(forward_address));
575 mark_bitmap->Set(forward_address);
576 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800577 }
578 DCHECK(forward_address != nullptr);
579 } else {
580 // If it's allocated after the last GC (younger), copy it to the to-space.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700581 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800582 }
Hiroshi Yamauchi13bf2e62014-05-19 12:49:45 -0700583 CHECK(forward_address != nullptr) << "Out of memory in the to-space.";
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700584 ++objects_moved_;
585 bytes_moved_ += bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800586 // Copy over the object and add it to the mark stack since we still need to update its
587 // references.
Mathieu Chartierad35d902014-02-11 16:20:42 -0800588 saved_bytes_ +=
589 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700590 if (kUseBakerOrBrooksReadBarrier) {
591 obj->AssertReadBarrierPointer();
592 if (kUseBrooksReadBarrier) {
593 DCHECK_EQ(forward_address->GetReadBarrierPointer(), obj);
594 forward_address->SetReadBarrierPointer(forward_address);
595 }
596 forward_address->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800597 }
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800598 if (to_space_live_bitmap_ != nullptr) {
599 to_space_live_bitmap_->Set(forward_address);
600 }
Mathieu Chartier5dc08a62014-01-10 10:10:23 -0800601 DCHECK(to_space_->HasAddress(forward_address) ||
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800602 (generational_ && GetHeap()->GetPrimaryFreeListSpace()->HasAddress(forward_address)));
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800603 return forward_address;
604}
605
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800606void SemiSpace::ProcessMarkStackCallback(void* arg) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800607 reinterpret_cast<SemiSpace*>(arg)->ProcessMarkStack();
608}
609
610mirror::Object* SemiSpace::MarkObjectCallback(mirror::Object* root, void* arg) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700611 auto ref = StackReference<mirror::Object>::FromMirrorPtr(root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800612 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
613 return ref.AsMirrorPtr();
614}
615
616void SemiSpace::MarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>* obj_ptr,
617 void* arg) {
618 reinterpret_cast<SemiSpace*>(arg)->MarkObject(obj_ptr);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800619}
620
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -0700621void SemiSpace::DelayReferenceReferentCallback(mirror::Class* klass, mirror::Reference* ref,
622 void* arg) {
623 reinterpret_cast<SemiSpace*>(arg)->DelayReferenceReferent(klass, ref);
624}
625
Mathieu Chartier815873e2014-02-13 18:02:13 -0800626void SemiSpace::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
627 RootType /*root_type*/) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700628 auto ref = StackReference<mirror::Object>::FromMirrorPtr(*root);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800629 reinterpret_cast<SemiSpace*>(arg)->MarkObject(&ref);
630 if (*root != ref.AsMirrorPtr()) {
631 *root = ref.AsMirrorPtr();
632 }
Mathieu Chartier815873e2014-02-13 18:02:13 -0800633}
634
Mathieu Chartier590fee92013-09-13 13:46:47 -0700635// Marks all objects in the root set.
636void SemiSpace::MarkRoots() {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700637 timings_.NewSplit("MarkRoots");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700638 // TODO: Visit up image roots as well?
Mathieu Chartier893263b2014-03-04 11:07:42 -0800639 Runtime::Current()->VisitRoots(MarkRootCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700640}
641
Mathieu Chartier308351a2014-06-15 12:39:02 -0700642bool SemiSpace::HeapReferenceMarkedCallback(mirror::HeapReference<mirror::Object>* object,
643 void* arg) {
644 mirror::Object* obj = object->AsMirrorPtr();
645 mirror::Object* new_obj =
646 reinterpret_cast<SemiSpace*>(arg)->GetMarkedForwardAddress(obj);
647 if (new_obj == nullptr) {
648 return false;
649 }
650 if (new_obj != obj) {
651 // Write barrier is not necessary since it still points to the same object, just at a different
652 // address.
653 object->Assign(new_obj);
654 }
655 return true;
656}
657
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800658mirror::Object* SemiSpace::MarkedForwardingAddressCallback(mirror::Object* object, void* arg) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700659 return reinterpret_cast<SemiSpace*>(arg)->GetMarkedForwardAddress(object);
660}
661
662void SemiSpace::SweepSystemWeaks() {
663 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier39e32612013-11-12 16:28:05 -0800664 Runtime::Current()->SweepSystemWeaks(MarkedForwardingAddressCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700665 timings_.EndSplit();
666}
667
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800668bool SemiSpace::ShouldSweepSpace(space::ContinuousSpace* space) const {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700669 return space != from_space_ && space != to_space_ && !immune_region_.ContainsSpace(space);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700670}
671
672void SemiSpace::Sweep(bool swap_bitmaps) {
673 DCHECK(mark_stack_->IsEmpty());
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700674 TimingLogger::ScopedSplit split("Sweep", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700675 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800676 if (space->IsContinuousMemMapAllocSpace()) {
677 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
678 if (!ShouldSweepSpace(alloc_space)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800679 continue;
680 }
Mathieu Chartierec050072014-01-07 16:00:07 -0800681 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800682 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepAllocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -0800683 size_t freed_objects = 0;
684 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800685 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700686 RecordFree(freed_objects, freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700687 }
688 }
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800689 if (!is_large_object_space_immune_) {
690 SweepLargeObjects(swap_bitmaps);
691 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700692}
693
694void SemiSpace::SweepLargeObjects(bool swap_bitmaps) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800695 DCHECK(!is_large_object_space_immune_);
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700696 TimingLogger::ScopedSplit split("SweepLargeObjects", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700697 size_t freed_objects = 0;
698 size_t freed_bytes = 0;
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700699 heap_->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -0700700 RecordFreeLargeObjects(freed_objects, freed_bytes);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700701}
702
703// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
704// marked, put it on the appropriate list in the heap for later processing.
Mathieu Chartier407f7022014-02-18 14:37:05 -0800705void SemiSpace::DelayReferenceReferent(mirror::Class* klass, mirror::Reference* reference) {
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700706 heap_->GetReferenceProcessor()->DelayReferenceReferent(klass, reference,
Mathieu Chartier308351a2014-06-15 12:39:02 -0700707 &HeapReferenceMarkedCallback, this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700708}
709
Ian Rogers719d1a32014-03-06 12:13:39 -0800710class SemiSpaceMarkObjectVisitor {
711 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800712 explicit SemiSpaceMarkObjectVisitor(SemiSpace* collector) : collector_(collector) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800713 }
714
Mathieu Chartier407f7022014-02-18 14:37:05 -0800715 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const ALWAYS_INLINE
716 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartier580a8df2014-03-26 15:15:57 -0700717 // Object was already verified when we scanned it.
718 collector_->MarkObject(obj->GetFieldObjectReferenceAddr<kVerifyNone>(offset));
Ian Rogers719d1a32014-03-06 12:13:39 -0800719 }
Mathieu Chartier407f7022014-02-18 14:37:05 -0800720
721 void operator()(mirror::Class* klass, mirror::Reference* ref) const
722 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
723 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
724 collector_->DelayReferenceReferent(klass, ref);
725 }
726
Ian Rogers719d1a32014-03-06 12:13:39 -0800727 private:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800728 SemiSpace* const collector_;
Ian Rogers719d1a32014-03-06 12:13:39 -0800729};
730
731// Visit all of the references of an object and update.
732void SemiSpace::ScanObject(Object* obj) {
Ian Rogers719d1a32014-03-06 12:13:39 -0800733 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
734 SemiSpaceMarkObjectVisitor visitor(this);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800735 obj->VisitReferences<kMovingClasses>(visitor, visitor);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700736}
737
738// Scan anything that's on the mark stack.
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800739void SemiSpace::ProcessMarkStack() {
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700740 space::MallocSpace* promo_dest_space = nullptr;
741 accounting::ContinuousSpaceBitmap* live_bitmap = nullptr;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800742 if (generational_ && !whole_heap_collection_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800743 // If a bump pointer space only collection (and the promotion is
744 // enabled,) we delay the live-bitmap marking of promoted objects
745 // from MarkObject() until this function.
746 promo_dest_space = GetHeap()->GetPrimaryFreeListSpace();
747 live_bitmap = promo_dest_space->GetLiveBitmap();
748 DCHECK(live_bitmap != nullptr);
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700749 accounting::ContinuousSpaceBitmap* mark_bitmap = promo_dest_space->GetMarkBitmap();
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800750 DCHECK(mark_bitmap != nullptr);
751 DCHECK_EQ(live_bitmap, mark_bitmap);
752 }
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800753 timings_.StartSplit("ProcessMarkStack");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700754 while (!mark_stack_->IsEmpty()) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800755 Object* obj = mark_stack_->PopBack();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800756 if (generational_ && !whole_heap_collection_ && promo_dest_space->HasAddress(obj)) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800757 // obj has just been promoted. Mark the live bitmap for it,
758 // which is delayed from MarkObject().
759 DCHECK(!live_bitmap->Test(obj));
760 live_bitmap->Set(obj);
761 }
762 ScanObject(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700763 }
764 timings_.EndSplit();
765}
766
Mathieu Chartier590fee92013-09-13 13:46:47 -0700767inline Object* SemiSpace::GetMarkedForwardAddress(mirror::Object* obj) const
768 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
769 // All immune objects are assumed marked.
Mathieu Chartier8d562102014-03-12 17:42:10 -0700770 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700771 return obj;
772 }
773 if (from_space_->HasAddress(obj)) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700774 // Returns either the forwarding address or nullptr.
775 return GetForwardingAddressInFromSpace(obj);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700776 } else if (to_space_->HasAddress(obj)) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800777 // Should be unlikely.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700778 // Already forwarded, must be marked.
779 return obj;
780 }
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700781 return mark_bitmap_->Test(obj) ? obj : nullptr;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700782}
783
Mathieu Chartier590fee92013-09-13 13:46:47 -0700784void SemiSpace::SetToSpace(space::ContinuousMemMapAllocSpace* to_space) {
785 DCHECK(to_space != nullptr);
786 to_space_ = to_space;
787}
788
789void SemiSpace::SetFromSpace(space::ContinuousMemMapAllocSpace* from_space) {
790 DCHECK(from_space != nullptr);
791 from_space_ = from_space;
792}
793
794void SemiSpace::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800795 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700796 // Null the "to" and "from" spaces since compacting from one to the other isn't valid until
797 // further action is done by the heap.
798 to_space_ = nullptr;
799 from_space_ = nullptr;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700800 CHECK(mark_stack_->IsEmpty());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700801 mark_stack_->Reset();
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800802 if (generational_) {
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800803 // Decide whether to do a whole heap collection or a bump pointer
804 // only space collection at the next collection by updating
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700805 // whole_heap_collection.
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800806 if (!whole_heap_collection_) {
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700807 // Enable whole_heap_collection if the bytes promoted since the
808 // last whole heap collection or the large object bytes
809 // allocated exceeds a threshold.
810 bytes_promoted_since_last_whole_heap_collection_ += bytes_promoted_;
811 bool bytes_promoted_threshold_exceeded =
812 bytes_promoted_since_last_whole_heap_collection_ >= kBytesPromotedThreshold;
813 uint64_t current_los_bytes_allocated = GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated();
814 uint64_t last_los_bytes_allocated =
815 large_object_bytes_allocated_at_last_whole_heap_collection_;
816 bool large_object_bytes_threshold_exceeded =
817 current_los_bytes_allocated >=
818 last_los_bytes_allocated + kLargeObjectBytesAllocatedThreshold;
819 if (bytes_promoted_threshold_exceeded || large_object_bytes_threshold_exceeded) {
820 whole_heap_collection_ = true;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800821 }
822 } else {
Hiroshi Yamauchi24faeb22014-05-07 13:12:43 -0700823 // Reset the counters.
824 bytes_promoted_since_last_whole_heap_collection_ = bytes_promoted_;
825 large_object_bytes_allocated_at_last_whole_heap_collection_ =
826 GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated();
827 whole_heap_collection_ = false;
Hiroshi Yamauchi05e713a2014-01-09 13:24:51 -0800828 }
829 }
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700830 // Clear all of the spaces' mark bitmaps.
831 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
832 heap_->ClearMarkedObjects();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700833}
834
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700835void SemiSpace::RevokeAllThreadLocalBuffers() {
836 timings_.StartSplit("(Paused)RevokeAllThreadLocalBuffers");
837 GetHeap()->RevokeAllThreadLocalBuffers();
838 timings_.EndSplit();
839}
840
Mathieu Chartier590fee92013-09-13 13:46:47 -0700841} // namespace collector
842} // namespace gc
843} // namespace art