blob: ff2eda0e3009e467f3a32183aa0ef131169ebb2b [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Carl Shapiro69759ea2011-07-21 18:13:35 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "mark_sweep.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070018
Mathieu Chartier2b82db42012-11-14 17:29:05 -080019#include <functional>
20#include <numeric>
Carl Shapiro58551df2011-07-24 03:09:51 -070021#include <climits>
22#include <vector>
23
Mathieu Chartier94c32c52013-08-09 11:14:04 -070024#include "base/bounded_fifo.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/macros.h"
Ian Rogers693ff612013-02-01 10:56:12 -080027#include "base/mutex-inl.h"
Sameer Abu Asala8439542013-02-14 16:06:42 -080028#include "base/timing_logger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
Mathieu Chartier4aeec172014-03-27 16:09:46 -070030#include "gc/accounting/heap_bitmap-inl.h"
Mathieu Chartier11409ae2013-09-23 11:49:36 -070031#include "gc/accounting/mod_union_table.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070032#include "gc/accounting/space_bitmap-inl.h"
33#include "gc/heap.h"
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070034#include "gc/reference_processor.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070035#include "gc/space/image_space.h"
36#include "gc/space/large_object_space.h"
37#include "gc/space/space-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mark_sweep-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070039#include "mirror/art_field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "mirror/object-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070041#include "runtime.h"
Mathieu Chartier4aeec172014-03-27 16:09:46 -070042#include "scoped_thread_state_change.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070043#include "thread-inl.h"
Mathieu Chartier6f1c9492012-10-15 12:08:41 -070044#include "thread_list.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070045
Brian Carlstromea46f952013-07-30 01:26:50 -070046using ::art::mirror::ArtField;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070047using ::art::mirror::Class;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070048using ::art::mirror::Object;
49using ::art::mirror::ObjectArray;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050
Carl Shapiro69759ea2011-07-21 18:13:35 -070051namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070052namespace gc {
53namespace collector {
Carl Shapiro69759ea2011-07-21 18:13:35 -070054
Mathieu Chartier02b6a782012-10-26 13:51:26 -070055// Performance options.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080056static constexpr bool kUseRecursiveMark = false;
57static constexpr bool kUseMarkStackPrefetch = true;
58static constexpr size_t kSweepArrayChunkFreeSize = 1024;
59static constexpr bool kPreCleanCards = true;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070060
61// Parallelism options.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080062static constexpr bool kParallelCardScan = true;
63static constexpr bool kParallelRecursiveMark = true;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070064// Don't attempt to parallelize mark stack processing unless the mark stack is at least n
65// elements. This is temporary until we reduce the overhead caused by allocating tasks, etc.. Not
66// having this can add overhead in ProcessReferences since we may end up doing many calls of
67// ProcessMarkStack with very small mark stacks.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080068static constexpr size_t kMinimumParallelMarkStackSize = 128;
69static constexpr bool kParallelProcessMarkStack = true;
Mathieu Chartier858f1c52012-10-17 17:45:55 -070070
Mathieu Chartier02b6a782012-10-26 13:51:26 -070071// Profiling and information flags.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080072static constexpr bool kProfileLargeObjects = false;
73static constexpr bool kMeasureOverhead = false;
74static constexpr bool kCountTasks = false;
75static constexpr bool kCountJavaLangRefs = false;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -070076static constexpr bool kCountMarkedObjects = false;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070077
78// Turn off kCheckLocks when profiling the GC since it slows the GC down by up to 40%.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080079static constexpr bool kCheckLocks = kDebugLocking;
Mathieu Chartier7bf9f192014-04-04 11:09:41 -070080static constexpr bool kVerifyRootsMarked = kIsDebugBuild;
Mathieu Chartier02b6a782012-10-26 13:51:26 -070081
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -070082// If true, revoke the rosalloc thread-local buffers at the
83// checkpoint, as opposed to during the pause.
84static constexpr bool kRevokeRosAllocThreadLocalBuffersAtCheckpoint = true;
85
Mathieu Chartier2b82db42012-11-14 17:29:05 -080086void MarkSweep::BindBitmaps() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -070087 timings_.StartSplit("BindBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -080088 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -080089 // Mark all of the spaces we never collect as immune.
Mathieu Chartier94c32c52013-08-09 11:14:04 -070090 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -070091 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyNeverCollect) {
Mathieu Chartier8d562102014-03-12 17:42:10 -070092 CHECK(immune_region_.AddContinuousSpace(space)) << "Failed to add space " << *space;
Mathieu Chartier2b82db42012-11-14 17:29:05 -080093 }
94 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -070095 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -080096}
97
Ian Rogers1d54e732013-05-02 21:10:01 -070098MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix)
99 : GarbageCollector(heap,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700100 name_prefix +
Ian Rogers1d54e732013-05-02 21:10:01 -0700101 (is_concurrent ? "concurrent mark sweep": "mark sweep")),
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800102 gc_barrier_(new Barrier(0)),
Mathieu Chartier958291c2013-08-27 18:14:55 -0700103 mark_stack_lock_("mark sweep mark stack lock", kMarkSweepMarkStackLock),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700104 is_concurrent_(is_concurrent) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800105}
106
107void MarkSweep::InitializePhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800108 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -0700109 mark_stack_ = heap_->mark_stack_.get();
110 DCHECK(mark_stack_ != nullptr);
Mathieu Chartier8d562102014-03-12 17:42:10 -0700111 immune_region_.Reset();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800112 class_count_ = 0;
113 array_count_ = 0;
114 other_count_ = 0;
115 large_object_test_ = 0;
116 large_object_mark_ = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800117 overhead_time_ = 0;
118 work_chunks_created_ = 0;
119 work_chunks_deleted_ = 0;
120 reference_count_ = 0;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700121 mark_null_count_ = 0;
122 mark_immune_count_ = 0;
123 mark_fastpath_count_ = 0;
124 mark_slowpath_count_ = 0;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700125 {
126 // TODO: I don't think we should need heap bitmap lock to get the mark bitmap.
127 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
128 mark_bitmap_ = heap_->GetMarkBitmap();
129 }
Hiroshi Yamauchidf386c52014-04-08 16:21:52 -0700130 if (!clear_soft_references_) {
131 // Always clear soft references if a non-sticky collection.
132 clear_soft_references_ = GetGcType() != collector::kGcTypeSticky;
133 }
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700134}
135
136void MarkSweep::RunPhases() {
137 Thread* self = Thread::Current();
138 InitializePhase();
139 Locks::mutator_lock_->AssertNotHeld(self);
140 if (IsConcurrent()) {
141 GetHeap()->PreGcVerification(this);
142 {
143 ReaderMutexLock mu(self, *Locks::mutator_lock_);
144 MarkingPhase();
145 }
146 ScopedPause pause(this);
147 GetHeap()->PrePauseRosAllocVerification(this);
148 PausePhase();
149 RevokeAllThreadLocalBuffers();
150 } else {
151 ScopedPause pause(this);
152 GetHeap()->PreGcVerificationPaused(this);
153 MarkingPhase();
154 GetHeap()->PrePauseRosAllocVerification(this);
155 PausePhase();
156 RevokeAllThreadLocalBuffers();
157 }
158 {
159 // Sweeping always done concurrently, even for non concurrent mark sweep.
160 ReaderMutexLock mu(self, *Locks::mutator_lock_);
161 ReclaimPhase();
162 }
163 GetHeap()->PostGcVerification(this);
164 FinishPhase();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800165}
166
167void MarkSweep::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800168 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier8e56c7e2012-11-20 13:25:50 -0800169 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700170 GetHeap()->GetReferenceProcessor()->ProcessReferences(
171 true, &timings_, clear_soft_references_, &IsMarkedCallback, &MarkObjectCallback,
172 &ProcessMarkStackCallback, this);
Mathieu Chartier1ad27842014-03-19 17:08:17 -0700173}
174
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700175void MarkSweep::PausePhase() {
176 TimingLogger::ScopedSplit split("(Paused)PausePhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800177 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800178 Locks::mutator_lock_->AssertExclusiveHeld(self);
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700179 if (IsConcurrent()) {
180 // Handle the dirty objects if we are a concurrent GC.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800181 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800182 // Re-mark root set.
183 ReMarkRoots();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800184 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700185 RecursiveMarkDirtyObjects(true, accounting::CardTable::kCardDirty);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800186 }
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700187 {
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700188 TimingLogger::ScopedSplit split("SwapStacks", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800189 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700190 heap_->SwapStacks(self);
191 live_stack_freeze_size_ = heap_->GetLiveStack()->Size();
192 // Need to revoke all the thread local allocation stacks since we just swapped the allocation
193 // stacks and don't want anybody to allocate into the live stack.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800194 RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800195 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700196 timings_.StartSplit("PreSweepingGcVerification");
197 heap_->PreSweepingGcVerification(this);
198 timings_.EndSplit();
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700199 // Disallow new system weaks to prevent a race which occurs when someone adds a new system
200 // weak before we sweep them. Since this new system weak may not be marked, the GC may
201 // incorrectly sweep it. This also fixes a race where interning may attempt to return a strong
202 // reference to a string that is about to be swept.
203 Runtime::Current()->DisallowNewSystemWeaks();
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700204 // Enable the reference processing slow path, needs to be done with mutators paused since there
205 // is no lock in the GetReferent fast path.
206 GetHeap()->GetReferenceProcessor()->EnableSlowPath();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800207}
208
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800209void MarkSweep::PreCleanCards() {
210 // Don't do this for non concurrent GCs since they don't have any dirty cards.
211 if (kPreCleanCards && IsConcurrent()) {
212 Thread* self = Thread::Current();
213 CHECK(!Locks::mutator_lock_->IsExclusiveHeld(self));
214 // Process dirty cards and add dirty cards to mod union tables, also ages cards.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800215 heap_->ProcessCards(timings_, false);
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -0800216 // The checkpoint root marking is required to avoid a race condition which occurs if the
217 // following happens during a reference write:
218 // 1. mutator dirties the card (write barrier)
219 // 2. GC ages the card (the above ProcessCards call)
220 // 3. GC scans the object (the RecursiveMarkDirtyObjects call below)
221 // 4. mutator writes the value (corresponding to the write barrier in 1.)
222 // This causes the GC to age the card but not necessarily mark the reference which the mutator
223 // wrote into the object stored in the card.
224 // Having the checkpoint fixes this issue since it ensures that the card mark and the
225 // reference write are visible to the GC before the card is scanned (this is due to locks being
226 // acquired / released in the checkpoint code).
227 // The other roots are also marked to help reduce the pause.
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700228 MarkRootsCheckpoint(self, false);
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800229 MarkNonThreadRoots();
Mathieu Chartier893263b2014-03-04 11:07:42 -0800230 MarkConcurrentRoots(
231 static_cast<VisitRootFlags>(kVisitRootFlagClearRootLog | kVisitRootFlagNewRoots));
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800232 // Process the newly aged cards.
233 RecursiveMarkDirtyObjects(false, accounting::CardTable::kCardDirty - 1);
234 // TODO: Empty allocation stack to reduce the number of objects we need to test / mark as live
235 // in the next GC.
236 }
237}
238
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800239void MarkSweep::RevokeAllThreadLocalAllocationStacks(Thread* self) {
240 if (kUseThreadLocalAllocationStack) {
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700241 timings_.NewSplit("RevokeAllThreadLocalAllocationStacks");
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800242 Locks::mutator_lock_->AssertExclusiveHeld(self);
243 heap_->RevokeAllThreadLocalAllocationStacks(self);
244 }
245}
246
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800247void MarkSweep::MarkingPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800248 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800249 Thread* self = Thread::Current();
250
251 BindBitmaps();
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700252 FindDefaultSpaceBitmap();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700253
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800254 // Process dirty cards and add dirty cards to mod union tables.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800255 heap_->ProcessCards(timings_, false);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800256
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800257 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800258 MarkRoots(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800259 MarkReachableObjects();
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800260 // Pre-clean dirtied cards to reduce pauses.
261 PreCleanCards();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800262}
263
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700264void MarkSweep::UpdateAndMarkModUnion() {
265 for (const auto& space : heap_->GetContinuousSpaces()) {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700266 if (immune_region_.ContainsSpace(space)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700267 const char* name = space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
268 "UpdateAndMarkImageModUnionTable";
Ian Rogers5fe9af72013-11-14 00:17:20 -0800269 TimingLogger::ScopedSplit split(name, &timings_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700270 accounting::ModUnionTable* mod_union_table = heap_->FindModUnionTableFromSpace(space);
271 CHECK(mod_union_table != nullptr);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800272 mod_union_table->UpdateAndMarkReferences(MarkHeapReferenceCallback, this);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700273 }
274 }
275}
276
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800277void MarkSweep::MarkReachableObjects() {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700278 UpdateAndMarkModUnion();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800279 // Recursively mark all the non-image bits set in the mark bitmap.
280 RecursiveMark();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800281}
282
283void MarkSweep::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800284 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartier720ef762013-08-17 14:46:54 -0700285 Thread* self = Thread::Current();
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700286 // Process the references concurrently.
287 ProcessReferences(self);
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700288 SweepSystemWeaks(self);
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700289 Runtime::Current()->AllowNewSystemWeaks();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800290 {
291 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
292
293 // Reclaim unmarked objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700294 Sweep(false);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800295
296 // Swap the live and mark bitmaps for each space which we modified space. This is an
297 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
298 // bitmaps.
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700299 timings_.StartSplit("SwapBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800300 SwapBitmaps();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700301 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800302
303 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800304 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
305 GetHeap()->UnBindBitmaps();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800306 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800307}
308
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700309void MarkSweep::FindDefaultSpaceBitmap() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800310 TimingLogger::ScopedSplit split("FindDefaultMarkBitmap", &timings_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700311 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700312 accounting::ContinuousSpaceBitmap* bitmap = space->GetMarkBitmap();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700313 // We want to have the main space instead of non moving if possible.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700314 if (bitmap != nullptr &&
315 space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700316 current_space_bitmap_ = bitmap;
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700317 // If we are not the non moving space exit the loop early since this will be good enough.
318 if (space != heap_->GetNonMovingSpace()) {
319 break;
320 }
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700321 }
322 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700323 if (current_space_bitmap_ == nullptr) {
324 heap_->DumpSpaces();
325 LOG(FATAL) << "Could not find a default mark bitmap";
326 }
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700327}
328
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800329void MarkSweep::ExpandMarkStack() {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700330 ResizeMarkStack(mark_stack_->Capacity() * 2);
331}
332
333void MarkSweep::ResizeMarkStack(size_t new_size) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800334 // Rare case, no need to have Thread::Current be a parameter.
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800335 if (UNLIKELY(mark_stack_->Size() < mark_stack_->Capacity())) {
336 // Someone else acquired the lock and expanded the mark stack before us.
337 return;
338 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700339 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
Mathieu Chartierba311b42013-08-27 13:02:30 -0700340 CHECK_LE(mark_stack_->Size(), new_size);
341 mark_stack_->Resize(new_size);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700342 for (const auto& obj : temp) {
343 mark_stack_->PushBack(obj);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800344 }
345}
346
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700347inline void MarkSweep::MarkObjectNonNullParallel(Object* obj) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700348 DCHECK(obj != nullptr);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800349 if (MarkObjectParallel(obj)) {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700350 MutexLock mu(Thread::Current(), mark_stack_lock_);
351 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
Mathieu Chartier184e3222013-08-03 14:02:57 -0700352 ExpandMarkStack();
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800353 }
Mathieu Chartierba311b42013-08-27 13:02:30 -0700354 // The object must be pushed on to the mark stack.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700355 mark_stack_->PushBack(obj);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800356 }
357}
358
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800359mirror::Object* MarkSweep::MarkObjectCallback(mirror::Object* obj, void* arg) {
Mathieu Chartier39e32612013-11-12 16:28:05 -0800360 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
361 mark_sweep->MarkObject(obj);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800362 return obj;
363}
364
Mathieu Chartier407f7022014-02-18 14:37:05 -0800365void MarkSweep::MarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>* ref, void* arg) {
366 reinterpret_cast<MarkSweep*>(arg)->MarkObject(ref->AsMirrorPtr());
367}
368
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700369class MarkSweepMarkObjectSlowPath {
370 public:
371 explicit MarkSweepMarkObjectSlowPath(MarkSweep* mark_sweep) : mark_sweep_(mark_sweep) {
372 }
373
374 void operator()(const Object* obj) const ALWAYS_INLINE {
375 if (kProfileLargeObjects) {
376 // TODO: Differentiate between marking and testing somehow.
377 ++mark_sweep_->large_object_test_;
378 ++mark_sweep_->large_object_mark_;
379 }
380 space::LargeObjectSpace* large_object_space = mark_sweep_->GetHeap()->GetLargeObjectsSpace();
381 if (UNLIKELY(!IsAligned<kPageSize>(obj) ||
382 (kIsDebugBuild && !large_object_space->Contains(obj)))) {
383 LOG(ERROR) << "Tried to mark " << obj << " not contained by any spaces";
384 LOG(ERROR) << "Attempting see if it's a bad root";
385 mark_sweep_->VerifyRoots();
386 LOG(FATAL) << "Can't mark invalid object";
387 }
388 }
389
390 private:
391 MarkSweep* const mark_sweep_;
392};
393
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700394inline void MarkSweep::MarkObjectNonNull(Object* obj) {
395 DCHECK(obj != nullptr);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700396 if (kUseBakerOrBrooksReadBarrier) {
397 // Verify all the objects have the correct pointer installed.
398 obj->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800399 }
Mathieu Chartier8d562102014-03-12 17:42:10 -0700400 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700401 if (kCountMarkedObjects) {
402 ++mark_immune_count_;
403 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700404 DCHECK(mark_bitmap_->Test(obj));
405 } else if (LIKELY(current_space_bitmap_->HasAddress(obj))) {
406 if (kCountMarkedObjects) {
407 ++mark_fastpath_count_;
408 }
409 if (UNLIKELY(!current_space_bitmap_->Set(obj))) {
410 PushOnMarkStack(obj); // This object was not previously marked.
411 }
412 } else {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700413 if (kCountMarkedObjects) {
414 ++mark_slowpath_count_;
415 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700416 MarkSweepMarkObjectSlowPath visitor(this);
417 // TODO: We already know that the object is not in the current_space_bitmap_ but MarkBitmap::Set
418 // will check again.
419 if (!mark_bitmap_->Set(obj, visitor)) {
420 PushOnMarkStack(obj); // Was not already marked, push.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700421 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700422 }
423}
424
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700425inline void MarkSweep::PushOnMarkStack(Object* obj) {
426 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
427 // Lock is not needed but is here anyways to please annotalysis.
428 MutexLock mu(Thread::Current(), mark_stack_lock_);
429 ExpandMarkStack();
430 }
431 // The object must be pushed on to the mark stack.
432 mark_stack_->PushBack(obj);
433}
434
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700435inline bool MarkSweep::MarkObjectParallel(const Object* obj) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700436 DCHECK(obj != nullptr);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700437 if (kUseBakerOrBrooksReadBarrier) {
438 // Verify all the objects have the correct pointer installed.
439 obj->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800440 }
Mathieu Chartier8d562102014-03-12 17:42:10 -0700441 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700442 DCHECK(IsMarked(obj));
443 return false;
444 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700445 // Try to take advantage of locality of references within a space, failing this find the space
446 // the hard way.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700447 accounting::ContinuousSpaceBitmap* object_bitmap = current_space_bitmap_;
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700448 if (LIKELY(object_bitmap->HasAddress(obj))) {
449 return !object_bitmap->AtomicTestAndSet(obj);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700450 }
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700451 MarkSweepMarkObjectSlowPath visitor(this);
452 return !mark_bitmap_->AtomicTestAndSet(obj, visitor);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700453}
454
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700455// Used to mark objects when processing the mark stack. If an object is null, it is not marked.
456inline void MarkSweep::MarkObject(Object* obj) {
457 if (obj != nullptr) {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700458 MarkObjectNonNull(obj);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700459 } else if (kCountMarkedObjects) {
460 ++mark_null_count_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700461 }
462}
463
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700464void MarkSweep::MarkRootParallelCallback(Object** root, void* arg, uint32_t /*thread_id*/,
Mathieu Chartier815873e2014-02-13 18:02:13 -0800465 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800466 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNullParallel(*root);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800467}
468
Mathieu Chartier893263b2014-03-04 11:07:42 -0800469void MarkSweep::VerifyRootMarked(Object** root, void* arg, uint32_t /*thread_id*/,
470 RootType /*root_type*/) {
471 CHECK(reinterpret_cast<MarkSweep*>(arg)->IsMarked(*root));
472}
473
Mathieu Chartier815873e2014-02-13 18:02:13 -0800474void MarkSweep::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
475 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800476 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNull(*root);
477}
478
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700479void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg,
Mathieu Chartier7bf9f192014-04-04 11:09:41 -0700480 const StackVisitor* visitor, RootType root_type) {
481 reinterpret_cast<MarkSweep*>(arg)->VerifyRoot(root, vreg, visitor, root_type);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700482}
483
Mathieu Chartier7bf9f192014-04-04 11:09:41 -0700484void MarkSweep::VerifyRoot(const Object* root, size_t vreg, const StackVisitor* visitor,
485 RootType root_type) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700486 // See if the root is on any space bitmap.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700487 if (heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(root) == nullptr) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700488 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier4202b742012-10-17 17:51:25 -0700489 if (!large_object_space->Contains(root)) {
Mathieu Chartier7bf9f192014-04-04 11:09:41 -0700490 LOG(ERROR) << "Found invalid root: " << root << " with type " << root_type;
Ian Rogers40e3bac2012-11-20 00:09:14 -0800491 if (visitor != NULL) {
492 LOG(ERROR) << visitor->DescribeLocation() << " in VReg: " << vreg;
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700493 }
494 }
495 }
496}
497
498void MarkSweep::VerifyRoots() {
499 Runtime::Current()->GetThreadList()->VerifyRoots(VerifyRootCallback, this);
500}
501
Mathieu Chartier893263b2014-03-04 11:07:42 -0800502void MarkSweep::MarkRoots(Thread* self) {
503 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
504 // If we exclusively hold the mutator lock, all threads must be suspended.
505 timings_.StartSplit("MarkRoots");
506 Runtime::Current()->VisitRoots(MarkRootCallback, this);
507 timings_.EndSplit();
508 RevokeAllThreadLocalAllocationStacks(self);
509 } else {
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700510 MarkRootsCheckpoint(self, kRevokeRosAllocThreadLocalBuffersAtCheckpoint);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800511 // At this point the live stack should no longer have any mutators which push into it.
512 MarkNonThreadRoots();
513 MarkConcurrentRoots(
514 static_cast<VisitRootFlags>(kVisitRootFlagAllRoots | kVisitRootFlagStartLoggingNewRoots));
515 }
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700516}
517
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700518void MarkSweep::MarkNonThreadRoots() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700519 timings_.StartSplit("MarkNonThreadRoots");
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700520 Runtime::Current()->VisitNonThreadRoots(MarkRootCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700521 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700522}
523
Mathieu Chartier893263b2014-03-04 11:07:42 -0800524void MarkSweep::MarkConcurrentRoots(VisitRootFlags flags) {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700525 timings_.StartSplit("MarkConcurrentRoots");
Ian Rogers1d54e732013-05-02 21:10:01 -0700526 // Visit all runtime roots and clear dirty flags.
Mathieu Chartier893263b2014-03-04 11:07:42 -0800527 Runtime::Current()->VisitConcurrentRoots(MarkRootCallback, this, flags);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700528 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700529}
530
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700531class ScanObjectVisitor {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700532 public:
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700533 explicit ScanObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE
534 : mark_sweep_(mark_sweep) {}
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700535
Mathieu Chartier407f7022014-02-18 14:37:05 -0800536 void operator()(Object* obj) const ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
537 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700538 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800539 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
540 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
541 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700542 mark_sweep_->ScanObject(obj);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700543 }
544
545 private:
546 MarkSweep* const mark_sweep_;
547};
548
Mathieu Chartier407f7022014-02-18 14:37:05 -0800549class DelayReferenceReferentVisitor {
550 public:
551 explicit DelayReferenceReferentVisitor(MarkSweep* collector) : collector_(collector) {
552 }
553
554 void operator()(mirror::Class* klass, mirror::Reference* ref) const
555 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
556 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
557 collector_->DelayReferenceReferent(klass, ref);
558 }
559
560 private:
561 MarkSweep* const collector_;
562};
563
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700564template <bool kUseFinger = false>
565class MarkStackTask : public Task {
566 public:
567 MarkStackTask(ThreadPool* thread_pool, MarkSweep* mark_sweep, size_t mark_stack_size,
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700568 Object** mark_stack)
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700569 : mark_sweep_(mark_sweep),
570 thread_pool_(thread_pool),
571 mark_stack_pos_(mark_stack_size) {
572 // We may have to copy part of an existing mark stack when another mark stack overflows.
573 if (mark_stack_size != 0) {
574 DCHECK(mark_stack != NULL);
575 // TODO: Check performance?
576 std::copy(mark_stack, mark_stack + mark_stack_size, mark_stack_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700577 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700578 if (kCountTasks) {
579 ++mark_sweep_->work_chunks_created_;
580 }
581 }
582
583 static const size_t kMaxSize = 1 * KB;
584
585 protected:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800586 class MarkObjectParallelVisitor {
587 public:
588 explicit MarkObjectParallelVisitor(MarkStackTask<kUseFinger>* chunk_task,
589 MarkSweep* mark_sweep) ALWAYS_INLINE
590 : chunk_task_(chunk_task), mark_sweep_(mark_sweep) {}
591
592 void operator()(Object* obj, MemberOffset offset, bool /* static */) const ALWAYS_INLINE
593 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700594 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800595 if (ref != nullptr && mark_sweep_->MarkObjectParallel(ref)) {
596 if (kUseFinger) {
597 android_memory_barrier();
598 if (reinterpret_cast<uintptr_t>(ref) >=
599 static_cast<uintptr_t>(mark_sweep_->atomic_finger_)) {
600 return;
601 }
602 }
603 chunk_task_->MarkStackPush(ref);
604 }
605 }
606
607 private:
608 MarkStackTask<kUseFinger>* const chunk_task_;
609 MarkSweep* const mark_sweep_;
610 };
611
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700612 class ScanObjectParallelVisitor {
613 public:
614 explicit ScanObjectParallelVisitor(MarkStackTask<kUseFinger>* chunk_task) ALWAYS_INLINE
615 : chunk_task_(chunk_task) {}
616
Mathieu Chartier407f7022014-02-18 14:37:05 -0800617 // No thread safety analysis since multiple threads will use this visitor.
618 void operator()(Object* obj) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
619 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
620 MarkSweep* const mark_sweep = chunk_task_->mark_sweep_;
621 MarkObjectParallelVisitor mark_visitor(chunk_task_, mark_sweep);
622 DelayReferenceReferentVisitor ref_visitor(mark_sweep);
623 mark_sweep->ScanObjectVisit(obj, mark_visitor, ref_visitor);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700624 }
625
626 private:
627 MarkStackTask<kUseFinger>* const chunk_task_;
628 };
629
630 virtual ~MarkStackTask() {
631 // Make sure that we have cleared our mark stack.
632 DCHECK_EQ(mark_stack_pos_, 0U);
633 if (kCountTasks) {
634 ++mark_sweep_->work_chunks_deleted_;
635 }
636 }
637
638 MarkSweep* const mark_sweep_;
639 ThreadPool* const thread_pool_;
640 // Thread local mark stack for this task.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700641 Object* mark_stack_[kMaxSize];
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700642 // Mark stack position.
643 size_t mark_stack_pos_;
644
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700645 void MarkStackPush(Object* obj) ALWAYS_INLINE {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700646 if (UNLIKELY(mark_stack_pos_ == kMaxSize)) {
647 // Mark stack overflow, give 1/2 the stack to the thread pool as a new work task.
648 mark_stack_pos_ /= 2;
649 auto* task = new MarkStackTask(thread_pool_, mark_sweep_, kMaxSize - mark_stack_pos_,
650 mark_stack_ + mark_stack_pos_);
651 thread_pool_->AddTask(Thread::Current(), task);
652 }
653 DCHECK(obj != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700654 DCHECK_LT(mark_stack_pos_, kMaxSize);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700655 mark_stack_[mark_stack_pos_++] = obj;
656 }
657
658 virtual void Finalize() {
659 delete this;
660 }
661
662 // Scans all of the objects
Mathieu Chartier407f7022014-02-18 14:37:05 -0800663 virtual void Run(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
664 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700665 ScanObjectParallelVisitor visitor(this);
666 // TODO: Tune this.
667 static const size_t kFifoSize = 4;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700668 BoundedFifoPowerOfTwo<Object*, kFifoSize> prefetch_fifo;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700669 for (;;) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700670 Object* obj = nullptr;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700671 if (kUseMarkStackPrefetch) {
672 while (mark_stack_pos_ != 0 && prefetch_fifo.size() < kFifoSize) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700673 Object* obj = mark_stack_[--mark_stack_pos_];
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700674 DCHECK(obj != nullptr);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700675 __builtin_prefetch(obj);
676 prefetch_fifo.push_back(obj);
677 }
678 if (UNLIKELY(prefetch_fifo.empty())) {
679 break;
680 }
681 obj = prefetch_fifo.front();
682 prefetch_fifo.pop_front();
683 } else {
684 if (UNLIKELY(mark_stack_pos_ == 0)) {
685 break;
686 }
687 obj = mark_stack_[--mark_stack_pos_];
688 }
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700689 DCHECK(obj != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700690 visitor(obj);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700691 }
692 }
693};
694
695class CardScanTask : public MarkStackTask<false> {
696 public:
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700697 CardScanTask(ThreadPool* thread_pool, MarkSweep* mark_sweep,
698 accounting::ContinuousSpaceBitmap* bitmap,
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700699 byte* begin, byte* end, byte minimum_age, size_t mark_stack_size,
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700700 Object** mark_stack_obj)
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700701 : MarkStackTask<false>(thread_pool, mark_sweep, mark_stack_size, mark_stack_obj),
702 bitmap_(bitmap),
703 begin_(begin),
704 end_(end),
705 minimum_age_(minimum_age) {
706 }
707
708 protected:
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700709 accounting::ContinuousSpaceBitmap* const bitmap_;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700710 byte* const begin_;
711 byte* const end_;
712 const byte minimum_age_;
713
714 virtual void Finalize() {
715 delete this;
716 }
717
718 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
719 ScanObjectParallelVisitor visitor(this);
720 accounting::CardTable* card_table = mark_sweep_->GetHeap()->GetCardTable();
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700721 size_t cards_scanned = card_table->Scan(bitmap_, begin_, end_, visitor, minimum_age_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700722 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
723 << reinterpret_cast<void*>(end_) << " = " << cards_scanned;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700724 // Finish by emptying our local mark stack.
725 MarkStackTask::Run(self);
726 }
727};
728
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700729size_t MarkSweep::GetThreadCount(bool paused) const {
730 if (heap_->GetThreadPool() == nullptr || !heap_->CareAboutPauseTimes()) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700731 return 1;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700732 }
733 if (paused) {
734 return heap_->GetParallelGCThreadCount() + 1;
735 } else {
736 return heap_->GetConcGCThreadCount() + 1;
737 }
738}
739
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700740void MarkSweep::ScanGrayObjects(bool paused, byte minimum_age) {
741 accounting::CardTable* card_table = GetHeap()->GetCardTable();
742 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700743 size_t thread_count = GetThreadCount(paused);
744 // The parallel version with only one thread is faster for card scanning, TODO: fix.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700745 if (kParallelCardScan && thread_count > 1) {
Mathieu Chartier720ef762013-08-17 14:46:54 -0700746 Thread* self = Thread::Current();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700747 // Can't have a different split for each space since multiple spaces can have their cards being
748 // scanned at the same time.
749 timings_.StartSplit(paused ? "(Paused)ScanGrayObjects" : "ScanGrayObjects");
750 // Try to take some of the mark stack since we can pass this off to the worker tasks.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700751 Object** mark_stack_begin = mark_stack_->Begin();
752 Object** mark_stack_end = mark_stack_->End();
Mathieu Chartier720ef762013-08-17 14:46:54 -0700753 const size_t mark_stack_size = mark_stack_end - mark_stack_begin;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700754 // Estimated number of work tasks we will create.
755 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
756 DCHECK_NE(mark_stack_tasks, 0U);
757 const size_t mark_stack_delta = std::min(CardScanTask::kMaxSize / 2,
758 mark_stack_size / mark_stack_tasks + 1);
759 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700760 if (space->GetMarkBitmap() == nullptr) {
761 continue;
762 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700763 byte* card_begin = space->Begin();
764 byte* card_end = space->End();
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800765 // Align up the end address. For example, the image space's end
766 // may not be card-size-aligned.
767 card_end = AlignUp(card_end, accounting::CardTable::kCardSize);
768 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_begin));
769 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_end));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700770 // Calculate how many bytes of heap we will scan,
771 const size_t address_range = card_end - card_begin;
772 // Calculate how much address range each task gets.
773 const size_t card_delta = RoundUp(address_range / thread_count + 1,
774 accounting::CardTable::kCardSize);
775 // Create the worker tasks for this space.
776 while (card_begin != card_end) {
777 // Add a range of cards.
778 size_t addr_remaining = card_end - card_begin;
779 size_t card_increment = std::min(card_delta, addr_remaining);
780 // Take from the back of the mark stack.
781 size_t mark_stack_remaining = mark_stack_end - mark_stack_begin;
782 size_t mark_stack_increment = std::min(mark_stack_delta, mark_stack_remaining);
783 mark_stack_end -= mark_stack_increment;
784 mark_stack_->PopBackCount(static_cast<int32_t>(mark_stack_increment));
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700785 DCHECK_EQ(mark_stack_end, mark_stack_->End());
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700786 // Add the new task to the thread pool.
787 auto* task = new CardScanTask(thread_pool, this, space->GetMarkBitmap(), card_begin,
788 card_begin + card_increment, minimum_age,
789 mark_stack_increment, mark_stack_end);
790 thread_pool->AddTask(self, task);
791 card_begin += card_increment;
792 }
793 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700794
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800795 // Note: the card scan below may dirty new cards (and scan them)
796 // as a side effect when a Reference object is encountered and
797 // queued during the marking. See b/11465268.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700798 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700799 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700800 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700801 thread_pool->StopWorkers(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700802 timings_.EndSplit();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700803 } else {
804 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700805 if (space->GetMarkBitmap() != nullptr) {
806 // Image spaces are handled properly since live == marked for them.
807 switch (space->GetGcRetentionPolicy()) {
808 case space::kGcRetentionPolicyNeverCollect:
809 timings_.StartSplit(paused ? "(Paused)ScanGrayImageSpaceObjects" :
810 "ScanGrayImageSpaceObjects");
811 break;
812 case space::kGcRetentionPolicyFullCollect:
813 timings_.StartSplit(paused ? "(Paused)ScanGrayZygoteSpaceObjects" :
814 "ScanGrayZygoteSpaceObjects");
815 break;
816 case space::kGcRetentionPolicyAlwaysCollect:
817 timings_.StartSplit(paused ? "(Paused)ScanGrayAllocSpaceObjects" :
818 "ScanGrayAllocSpaceObjects");
819 break;
820 }
821 ScanObjectVisitor visitor(this);
822 card_table->Scan(space->GetMarkBitmap(), space->Begin(), space->End(), visitor, minimum_age);
823 timings_.EndSplit();
824 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700825 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700826 }
827}
828
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700829class RecursiveMarkTask : public MarkStackTask<false> {
830 public:
831 RecursiveMarkTask(ThreadPool* thread_pool, MarkSweep* mark_sweep,
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700832 accounting::ContinuousSpaceBitmap* bitmap, uintptr_t begin, uintptr_t end)
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700833 : MarkStackTask<false>(thread_pool, mark_sweep, 0, NULL),
834 bitmap_(bitmap),
835 begin_(begin),
836 end_(end) {
837 }
838
839 protected:
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700840 accounting::ContinuousSpaceBitmap* const bitmap_;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700841 const uintptr_t begin_;
842 const uintptr_t end_;
843
844 virtual void Finalize() {
845 delete this;
846 }
847
848 // Scans all of the objects
849 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
850 ScanObjectParallelVisitor visitor(this);
851 bitmap_->VisitMarkedRange(begin_, end_, visitor);
852 // Finish by emptying our local mark stack.
853 MarkStackTask::Run(self);
854 }
855};
856
Carl Shapiro58551df2011-07-24 03:09:51 -0700857// Populates the mark stack based on the set of marked objects and
858// recursively marks until the mark stack is emptied.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800859void MarkSweep::RecursiveMark() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800860 TimingLogger::ScopedSplit split("RecursiveMark", &timings_);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800861 // RecursiveMark will build the lists of known instances of the Reference classes. See
862 // DelayReferenceReferent for details.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700863 if (kUseRecursiveMark) {
864 const bool partial = GetGcType() == kGcTypePartial;
865 ScanObjectVisitor scan_visitor(this);
866 auto* self = Thread::Current();
867 ThreadPool* thread_pool = heap_->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700868 size_t thread_count = GetThreadCount(false);
869 const bool parallel = kParallelRecursiveMark && thread_count > 1;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700870 mark_stack_->Reset();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700871 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700872 if ((space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) ||
873 (!partial && space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect)) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700874 current_space_bitmap_ = space->GetMarkBitmap();
875 if (current_space_bitmap_ == nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700876 continue;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800877 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700878 if (parallel) {
879 // We will use the mark stack the future.
880 // CHECK(mark_stack_->IsEmpty());
881 // This function does not handle heap end increasing, so we must use the space end.
882 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
883 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
884 atomic_finger_ = static_cast<int32_t>(0xFFFFFFFF);
885
886 // Create a few worker tasks.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700887 const size_t n = thread_count * 2;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700888 while (begin != end) {
889 uintptr_t start = begin;
890 uintptr_t delta = (end - begin) / n;
891 delta = RoundUp(delta, KB);
892 if (delta < 16 * KB) delta = end - begin;
893 begin += delta;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700894 auto* task = new RecursiveMarkTask(thread_pool, this, current_space_bitmap_, start,
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700895 begin);
896 thread_pool->AddTask(self, task);
897 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700898 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700899 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700900 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700901 thread_pool->StopWorkers(self);
902 } else {
903 // This function does not handle heap end increasing, so we must use the space end.
904 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
905 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700906 current_space_bitmap_->VisitMarkedRange(begin, end, scan_visitor);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700907 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700908 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700909 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700910 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700911 ProcessMarkStack(false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700912}
913
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800914mirror::Object* MarkSweep::IsMarkedCallback(mirror::Object* object, void* arg) {
Mathieu Chartier5712d5d2013-09-18 17:59:36 -0700915 if (reinterpret_cast<MarkSweep*>(arg)->IsMarked(object)) {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700916 return object;
917 }
918 return nullptr;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700919}
920
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700921void MarkSweep::RecursiveMarkDirtyObjects(bool paused, byte minimum_age) {
922 ScanGrayObjects(paused, minimum_age);
923 ProcessMarkStack(paused);
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700924}
925
Carl Shapiro58551df2011-07-24 03:09:51 -0700926void MarkSweep::ReMarkRoots() {
Mathieu Chartier893263b2014-03-04 11:07:42 -0800927 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800928 timings_.StartSplit("(Paused)ReMarkRoots");
Mathieu Chartier893263b2014-03-04 11:07:42 -0800929 Runtime::Current()->VisitRoots(
930 MarkRootCallback, this, static_cast<VisitRootFlags>(kVisitRootFlagNewRoots |
931 kVisitRootFlagStopLoggingNewRoots |
932 kVisitRootFlagClearRootLog));
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700933 timings_.EndSplit();
Mathieu Chartier7bf9f192014-04-04 11:09:41 -0700934 if (kVerifyRootsMarked) {
Mathieu Chartier893263b2014-03-04 11:07:42 -0800935 timings_.StartSplit("(Paused)VerifyRoots");
936 Runtime::Current()->VisitRoots(VerifyRootMarked, this);
937 timings_.EndSplit();
938 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700939}
940
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700941void MarkSweep::SweepSystemWeaks(Thread* self) {
942 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700943 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700944 Runtime::Current()->SweepSystemWeaks(IsMarkedCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700945 timings_.EndSplit();
Carl Shapiro58551df2011-07-24 03:09:51 -0700946}
947
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700948mirror::Object* MarkSweep::VerifySystemWeakIsLiveCallback(Object* obj, void* arg) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700949 reinterpret_cast<MarkSweep*>(arg)->VerifyIsLive(obj);
950 // We don't actually want to sweep the object, so lets return "marked"
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700951 return obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700952}
953
954void MarkSweep::VerifyIsLive(const Object* obj) {
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700955 if (!heap_->GetLiveBitmap()->Test(obj)) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700956 if (std::find(heap_->allocation_stack_->Begin(), heap_->allocation_stack_->End(), obj) ==
957 heap_->allocation_stack_->End()) {
958 // Object not found!
959 heap_->DumpSpaces();
960 LOG(FATAL) << "Found dead object " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700961 }
962 }
963}
964
965void MarkSweep::VerifySystemWeaks() {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700966 // Verify system weaks, uses a special object visitor which returns the input object.
967 Runtime::Current()->SweepSystemWeaks(VerifySystemWeakIsLiveCallback, this);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700968}
969
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700970class CheckpointMarkThreadRoots : public Closure {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700971 public:
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700972 explicit CheckpointMarkThreadRoots(MarkSweep* mark_sweep,
973 bool revoke_ros_alloc_thread_local_buffers_at_checkpoint)
974 : mark_sweep_(mark_sweep),
975 revoke_ros_alloc_thread_local_buffers_at_checkpoint_(
976 revoke_ros_alloc_thread_local_buffers_at_checkpoint) {
977 }
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700978
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700979 virtual void Run(Thread* thread) OVERRIDE NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier3f966702013-09-04 16:50:05 -0700980 ATRACE_BEGIN("Marking thread roots");
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700981 // Note: self is not necessarily equal to thread since thread may be suspended.
982 Thread* self = Thread::Current();
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800983 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
984 << thread->GetState() << " thread " << thread << " self " << self;
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800985 thread->VisitRoots(MarkSweep::MarkRootParallelCallback, mark_sweep_);
Mathieu Chartier3f966702013-09-04 16:50:05 -0700986 ATRACE_END();
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700987 if (revoke_ros_alloc_thread_local_buffers_at_checkpoint_) {
988 ATRACE_BEGIN("RevokeRosAllocThreadLocalBuffers");
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700989 mark_sweep_->GetHeap()->RevokeRosAllocThreadLocalBuffers(thread);
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700990 ATRACE_END();
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700991 }
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700992 mark_sweep_->GetBarrier().Pass(self);
993 }
994
995 private:
Mathieu Chartier4aeec172014-03-27 16:09:46 -0700996 MarkSweep* const mark_sweep_;
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -0700997 const bool revoke_ros_alloc_thread_local_buffers_at_checkpoint_;
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700998};
999
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -07001000void MarkSweep::MarkRootsCheckpoint(Thread* self,
1001 bool revoke_ros_alloc_thread_local_buffers_at_checkpoint) {
1002 CheckpointMarkThreadRoots check_point(this, revoke_ros_alloc_thread_local_buffers_at_checkpoint);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001003 timings_.StartSplit("MarkRootsCheckpoint");
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001004 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers1d54e732013-05-02 21:10:01 -07001005 // Request the check point is run on all threads returning a count of the threads that must
1006 // run through the barrier including self.
1007 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
1008 // Release locks then wait for all mutator threads to pass the barrier.
1009 // TODO: optimize to not release locks when there are no threads to wait for.
1010 Locks::heap_bitmap_lock_->ExclusiveUnlock(self);
1011 Locks::mutator_lock_->SharedUnlock(self);
Mathieu Chartier4aeec172014-03-27 16:09:46 -07001012 {
1013 ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun);
1014 gc_barrier_->Increment(self, barrier_count);
1015 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001016 Locks::mutator_lock_->SharedLock(self);
1017 Locks::heap_bitmap_lock_->ExclusiveLock(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001018 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001019}
1020
Ian Rogers1d54e732013-05-02 21:10:01 -07001021void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001022 timings_.StartSplit("SweepArray");
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001023 Thread* self = Thread::Current();
1024 mirror::Object* chunk_free_buffer[kSweepArrayChunkFreeSize];
1025 size_t chunk_free_pos = 0;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001026 size_t freed_bytes = 0;
1027 size_t freed_large_object_bytes = 0;
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001028 size_t freed_objects = 0;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001029 size_t freed_large_objects = 0;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001030 // How many objects are left in the array, modified after each space is swept.
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -07001031 Object** objects = allocations->Begin();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001032 size_t count = allocations->Size();
1033 // Change the order to ensure that the non-moving space last swept as an optimization.
1034 std::vector<space::ContinuousSpace*> sweep_spaces;
1035 space::ContinuousSpace* non_moving_space = nullptr;
1036 for (space::ContinuousSpace* space : heap_->GetContinuousSpaces()) {
Mathieu Chartier8d562102014-03-12 17:42:10 -07001037 if (space->IsAllocSpace() && !immune_region_.ContainsSpace(space) &&
1038 space->GetLiveBitmap() != nullptr) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001039 if (space == heap_->GetNonMovingSpace()) {
1040 non_moving_space = space;
1041 } else {
1042 sweep_spaces.push_back(space);
1043 }
1044 }
1045 }
1046 // Unlikely to sweep a significant amount of non_movable objects, so we do these after the after
1047 // the other alloc spaces as an optimization.
1048 if (non_moving_space != nullptr) {
1049 sweep_spaces.push_back(non_moving_space);
1050 }
1051 // Start by sweeping the continuous spaces.
1052 for (space::ContinuousSpace* space : sweep_spaces) {
1053 space::AllocSpace* alloc_space = space->AsAllocSpace();
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -07001054 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
1055 accounting::ContinuousSpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001056 if (swap_bitmaps) {
1057 std::swap(live_bitmap, mark_bitmap);
1058 }
1059 Object** out = objects;
1060 for (size_t i = 0; i < count; ++i) {
1061 Object* obj = objects[i];
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001062 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1063 continue;
1064 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001065 if (space->HasAddress(obj)) {
1066 // This object is in the space, remove it from the array and add it to the sweep buffer
1067 // if needed.
1068 if (!mark_bitmap->Test(obj)) {
1069 if (chunk_free_pos >= kSweepArrayChunkFreeSize) {
1070 timings_.StartSplit("FreeList");
1071 freed_objects += chunk_free_pos;
1072 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1073 timings_.EndSplit();
1074 chunk_free_pos = 0;
1075 }
1076 chunk_free_buffer[chunk_free_pos++] = obj;
1077 }
1078 } else {
1079 *(out++) = obj;
1080 }
1081 }
1082 if (chunk_free_pos > 0) {
1083 timings_.StartSplit("FreeList");
1084 freed_objects += chunk_free_pos;
1085 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1086 timings_.EndSplit();
1087 chunk_free_pos = 0;
1088 }
1089 // All of the references which space contained are no longer in the allocation stack, update
1090 // the count.
1091 count = out - objects;
1092 }
1093 // Handle the large object space.
1094 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001095 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap();
1096 accounting::LargeObjectBitmap* large_mark_objects = large_object_space->GetMarkBitmap();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001097 if (swap_bitmaps) {
1098 std::swap(large_live_objects, large_mark_objects);
1099 }
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001100 for (size_t i = 0; i < count; ++i) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001101 Object* obj = objects[i];
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001102 // Handle large objects.
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001103 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1104 continue;
1105 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001106 if (!large_mark_objects->Test(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001107 ++freed_large_objects;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001108 freed_large_object_bytes += large_object_space->Free(self, obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001109 }
1110 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001111 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001112
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001113 timings_.StartSplit("RecordFree");
Mathieu Chartiere76e70f2014-05-02 16:35:37 -07001114 VLOG(heap) << "Freed " << freed_objects << "/" << count << " objects with size "
1115 << PrettySize(freed_bytes);
1116 RecordFree(freed_objects, freed_bytes);
1117 RecordFreeLargeObjects(freed_large_objects, freed_large_object_bytes);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001118 timings_.EndSplit();
Ian Rogers1d54e732013-05-02 21:10:01 -07001119
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001120 timings_.StartSplit("ResetStack");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001121 allocations->Reset();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001122 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001123}
1124
Ian Rogers1d54e732013-05-02 21:10:01 -07001125void MarkSweep::Sweep(bool swap_bitmaps) {
Mathieu Chartier0f7bf6a2014-03-28 10:05:39 -07001126 // Ensure that nobody inserted items in the live stack after we swapped the stacks.
1127 CHECK_GE(live_stack_freeze_size_, GetHeap()->GetLiveStack()->Size());
1128 // Mark everything allocated since the last as GC live so that we can sweep concurrently,
1129 // knowing that new allocations won't be marked as live.
1130 timings_.StartSplit("MarkStackAsLive");
1131 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
1132 heap_->MarkAllocStackAsLive(live_stack);
1133 live_stack->Reset();
1134 timings_.EndSplit();
1135
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001136 DCHECK(mark_stack_->IsEmpty());
Mathieu Chartier02e25112013-08-14 16:14:24 -07001137 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001138 if (space->IsContinuousMemMapAllocSpace()) {
1139 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
Mathieu Chartierec050072014-01-07 16:00:07 -08001140 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001141 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepMallocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -08001142 size_t freed_objects = 0;
1143 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001144 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -07001145 RecordFree(freed_objects, freed_bytes);
Carl Shapiro58551df2011-07-24 03:09:51 -07001146 }
1147 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001148 SweepLargeObjects(swap_bitmaps);
Carl Shapiro58551df2011-07-24 03:09:51 -07001149}
1150
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001151void MarkSweep::SweepLargeObjects(bool swap_bitmaps) {
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001152 TimingLogger::ScopedSplit split("SweepLargeObjects", &timings_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001153 size_t freed_objects = 0;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001154 size_t freed_bytes = 0;
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001155 heap_->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartiere76e70f2014-05-02 16:35:37 -07001156 RecordFreeLargeObjects(freed_objects, freed_bytes);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001157}
1158
Mathieu Chartier407f7022014-02-18 14:37:05 -08001159// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
1160// marked, put it on the appropriate list in the heap for later processing.
1161void MarkSweep::DelayReferenceReferent(mirror::Class* klass, mirror::Reference* ref) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001162 DCHECK(klass != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001163 if (kCountJavaLangRefs) {
1164 ++reference_count_;
1165 }
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -07001166 heap_->GetReferenceProcessor()->DelayReferenceReferent(klass, ref, IsMarkedCallback, this);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001167}
1168
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001169class MarkObjectVisitor {
1170 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -08001171 explicit MarkObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE : mark_sweep_(mark_sweep) {
1172 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001173
Mathieu Chartier407f7022014-02-18 14:37:05 -08001174 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const
1175 ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1176 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001177 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001178 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
1179 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
1180 }
Ian Rogersb0fa5dc2014-04-28 16:47:08 -07001181 mark_sweep_->MarkObject(obj->GetFieldObject<mirror::Object>(offset));
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001182 }
1183
1184 private:
1185 MarkSweep* const mark_sweep_;
1186};
1187
Carl Shapiro69759ea2011-07-21 18:13:35 -07001188// Scans an object reference. Determines the type of the reference
1189// and dispatches to a specialized scanning routine.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001190void MarkSweep::ScanObject(Object* obj) {
Mathieu Chartier407f7022014-02-18 14:37:05 -08001191 MarkObjectVisitor mark_visitor(this);
1192 DelayReferenceReferentVisitor ref_visitor(this);
1193 ScanObjectVisit(obj, mark_visitor, ref_visitor);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001194}
1195
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -07001196void MarkSweep::ProcessMarkStackCallback(void* arg) {
1197 reinterpret_cast<MarkSweep*>(arg)->ProcessMarkStack(false);
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001198}
1199
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001200void MarkSweep::ProcessMarkStackParallel(size_t thread_count) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001201 Thread* self = Thread::Current();
1202 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001203 const size_t chunk_size = std::min(mark_stack_->Size() / thread_count + 1,
1204 static_cast<size_t>(MarkStackTask<false>::kMaxSize));
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001205 CHECK_GT(chunk_size, 0U);
1206 // Split the current mark stack up into work tasks.
1207 for (mirror::Object **it = mark_stack_->Begin(), **end = mark_stack_->End(); it < end; ) {
1208 const size_t delta = std::min(static_cast<size_t>(end - it), chunk_size);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001209 thread_pool->AddTask(self, new MarkStackTask<false>(thread_pool, this, delta, it));
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001210 it += delta;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001211 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001212 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001213 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001214 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001215 thread_pool->StopWorkers(self);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001216 mark_stack_->Reset();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001217 CHECK_EQ(work_chunks_created_, work_chunks_deleted_) << " some of the work chunks were leaked";
Carl Shapiro69759ea2011-07-21 18:13:35 -07001218}
1219
Ian Rogers5d76c432011-10-31 21:42:49 -07001220// Scan anything that's on the mark stack.
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001221void MarkSweep::ProcessMarkStack(bool paused) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001222 timings_.StartSplit(paused ? "(Paused)ProcessMarkStack" : "ProcessMarkStack");
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001223 size_t thread_count = GetThreadCount(paused);
1224 if (kParallelProcessMarkStack && thread_count > 1 &&
1225 mark_stack_->Size() >= kMinimumParallelMarkStackSize) {
1226 ProcessMarkStackParallel(thread_count);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001227 } else {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001228 // TODO: Tune this.
1229 static const size_t kFifoSize = 4;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001230 BoundedFifoPowerOfTwo<Object*, kFifoSize> prefetch_fifo;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001231 for (;;) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001232 Object* obj = NULL;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001233 if (kUseMarkStackPrefetch) {
1234 while (!mark_stack_->IsEmpty() && prefetch_fifo.size() < kFifoSize) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001235 Object* obj = mark_stack_->PopBack();
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001236 DCHECK(obj != NULL);
1237 __builtin_prefetch(obj);
1238 prefetch_fifo.push_back(obj);
1239 }
1240 if (prefetch_fifo.empty()) {
1241 break;
1242 }
1243 obj = prefetch_fifo.front();
1244 prefetch_fifo.pop_front();
1245 } else {
1246 if (mark_stack_->IsEmpty()) {
1247 break;
1248 }
1249 obj = mark_stack_->PopBack();
1250 }
Mathieu Chartier4aeec172014-03-27 16:09:46 -07001251 DCHECK(obj != nullptr);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001252 ScanObject(obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001253 }
1254 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001255 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001256}
1257
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001258inline bool MarkSweep::IsMarked(const Object* object) const
1259 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier8d562102014-03-12 17:42:10 -07001260 if (immune_region_.ContainsObject(object)) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001261 return true;
1262 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001263 if (current_space_bitmap_->HasAddress(object)) {
1264 return current_space_bitmap_->Test(object);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001265 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001266 return mark_bitmap_->Test(object);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001267}
1268
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001269void MarkSweep::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001270 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001271 if (kCountScannedTypes) {
1272 VLOG(gc) << "MarkSweep scanned classes=" << class_count_ << " arrays=" << array_count_
1273 << " other=" << other_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001274 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001275 if (kCountTasks) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001276 VLOG(gc) << "Total number of work chunks allocated: " << work_chunks_created_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001277 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001278 if (kMeasureOverhead) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001279 VLOG(gc) << "Overhead time " << PrettyDuration(overhead_time_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001280 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001281 if (kProfileLargeObjects) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001282 VLOG(gc) << "Large objects tested " << large_object_test_ << " marked " << large_object_mark_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001283 }
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001284 if (kCountJavaLangRefs) {
1285 VLOG(gc) << "References scanned " << reference_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001286 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001287 if (kCountMarkedObjects) {
1288 VLOG(gc) << "Marked: null=" << mark_null_count_ << " immune=" << mark_immune_count_
1289 << " fastpath=" << mark_fastpath_count_ << " slowpath=" << mark_slowpath_count_;
1290 }
Mathieu Chartier4aeec172014-03-27 16:09:46 -07001291 CHECK(mark_stack_->IsEmpty()); // Ensure that the mark stack is empty.
Mathieu Chartier5301cd22012-05-31 12:11:36 -07001292 mark_stack_->Reset();
Mathieu Chartier4aeec172014-03-27 16:09:46 -07001293 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
1294 heap_->ClearMarkedObjects();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001295}
1296
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -07001297void MarkSweep::RevokeAllThreadLocalBuffers() {
1298 if (kRevokeRosAllocThreadLocalBuffersAtCheckpoint && IsConcurrent()) {
1299 // If concurrent, rosalloc thread-local buffers are revoked at the
1300 // thread checkpoint. Bump pointer space thread-local buffers must
1301 // not be in use.
1302 GetHeap()->AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked();
1303 } else {
1304 timings_.StartSplit("(Paused)RevokeAllThreadLocalBuffers");
1305 GetHeap()->RevokeAllThreadLocalBuffers();
1306 timings_.EndSplit();
1307 }
1308}
1309
Ian Rogers1d54e732013-05-02 21:10:01 -07001310} // namespace collector
1311} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001312} // namespace art