blob: cc34689ef4a618d5ffac256bbf7005458b938ba4 [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"
30#include "gc/accounting/heap_bitmap.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"
34#include "gc/space/image_space.h"
35#include "gc/space/large_object_space.h"
36#include "gc/space/space-inl.h"
Elliott Hughes410c0c82011-09-01 17:58:25 -070037#include "indirect_reference_table.h"
38#include "intern_table.h"
Ian Rogers81d425b2012-09-27 16:03:43 -070039#include "jni_internal.h"
Elliott Hughesc33a32b2011-10-11 18:18:07 -070040#include "monitor.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mark_sweep-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070042#include "mirror/art_field.h"
43#include "mirror/art_field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/class-inl.h"
45#include "mirror/class_loader.h"
46#include "mirror/dex_cache.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "mirror/object-inl.h"
48#include "mirror/object_array.h"
49#include "mirror/object_array-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070050#include "runtime.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070051#include "thread-inl.h"
Mathieu Chartier6f1c9492012-10-15 12:08:41 -070052#include "thread_list.h"
Ian Rogers08254272012-10-23 17:49:23 -070053#include "verifier/method_verifier.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070054
Brian Carlstromea46f952013-07-30 01:26:50 -070055using ::art::mirror::ArtField;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070056using ::art::mirror::Class;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070057using ::art::mirror::Object;
58using ::art::mirror::ObjectArray;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059
Carl Shapiro69759ea2011-07-21 18:13:35 -070060namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070061namespace gc {
62namespace collector {
Carl Shapiro69759ea2011-07-21 18:13:35 -070063
Mathieu Chartier02b6a782012-10-26 13:51:26 -070064// Performance options.
Mathieu Chartier94c32c52013-08-09 11:14:04 -070065constexpr bool kUseRecursiveMark = false;
66constexpr bool kUseMarkStackPrefetch = true;
67constexpr size_t kSweepArrayChunkFreeSize = 1024;
Mathieu Chartierdda54f52014-02-24 09:58:40 -080068constexpr bool kPreCleanCards = true;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070069
70// Parallelism options.
71constexpr bool kParallelCardScan = true;
72constexpr bool kParallelRecursiveMark = true;
73// Don't attempt to parallelize mark stack processing unless the mark stack is at least n
74// elements. This is temporary until we reduce the overhead caused by allocating tasks, etc.. Not
75// having this can add overhead in ProcessReferences since we may end up doing many calls of
76// ProcessMarkStack with very small mark stacks.
77constexpr size_t kMinimumParallelMarkStackSize = 128;
78constexpr bool kParallelProcessMarkStack = true;
Mathieu Chartier858f1c52012-10-17 17:45:55 -070079
Mathieu Chartier02b6a782012-10-26 13:51:26 -070080// Profiling and information flags.
Mathieu Chartier94c32c52013-08-09 11:14:04 -070081constexpr bool kCountClassesMarked = false;
82constexpr bool kProfileLargeObjects = false;
83constexpr bool kMeasureOverhead = false;
84constexpr bool kCountTasks = false;
85constexpr bool kCountJavaLangRefs = false;
86
87// Turn off kCheckLocks when profiling the GC since it slows the GC down by up to 40%.
88constexpr bool kCheckLocks = kDebugLocking;
Mathieu Chartier02b6a782012-10-26 13:51:26 -070089
Ian Rogers1d54e732013-05-02 21:10:01 -070090void MarkSweep::ImmuneSpace(space::ContinuousSpace* space) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -080091 // Bind live to mark bitmap if necessary.
92 if (space->GetLiveBitmap() != space->GetMarkBitmap()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -080093 CHECK(space->IsContinuousMemMapAllocSpace());
94 space->AsContinuousMemMapAllocSpace()->BindLiveToMarkBitmap();
Mathieu Chartier2b82db42012-11-14 17:29:05 -080095 }
96
97 // Add the space to the immune region.
Mathieu Chartier590fee92013-09-13 13:46:47 -070098 // TODO: Use space limits instead of current end_ since the end_ can be changed by dlmalloc
99 // callbacks.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800100 if (immune_begin_ == NULL) {
101 DCHECK(immune_end_ == NULL);
102 SetImmuneRange(reinterpret_cast<Object*>(space->Begin()),
103 reinterpret_cast<Object*>(space->End()));
104 } else {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700105 const space::ContinuousSpace* prev_space = nullptr;
Ian Rogers1d54e732013-05-02 21:10:01 -0700106 // Find out if the previous space is immune.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700107 for (const space::ContinuousSpace* cur_space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700108 if (cur_space == space) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700109 break;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800110 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700111 prev_space = cur_space;
Ian Rogers1d54e732013-05-02 21:10:01 -0700112 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700113 // If previous space was immune, then extend the immune region. Relies on continuous spaces
114 // being sorted by Heap::AddContinuousSpace.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700115 if (prev_space != nullptr && IsImmuneSpace(prev_space)) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800116 immune_begin_ = std::min(reinterpret_cast<Object*>(space->Begin()), immune_begin_);
117 immune_end_ = std::max(reinterpret_cast<Object*>(space->End()), immune_end_);
118 }
119 }
120}
121
Mathieu Chartier590fee92013-09-13 13:46:47 -0700122bool MarkSweep::IsImmuneSpace(const space::ContinuousSpace* space) const {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700123 return
124 immune_begin_ <= reinterpret_cast<Object*>(space->Begin()) &&
125 immune_end_ >= reinterpret_cast<Object*>(space->End());
126}
127
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800128void MarkSweep::BindBitmaps() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700129 timings_.StartSplit("BindBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800130 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800131 // Mark all of the spaces we never collect as immune.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700132 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700133 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyNeverCollect) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800134 ImmuneSpace(space);
135 }
136 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700137 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800138}
139
Ian Rogers1d54e732013-05-02 21:10:01 -0700140MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix)
141 : GarbageCollector(heap,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700142 name_prefix +
Ian Rogers1d54e732013-05-02 21:10:01 -0700143 (is_concurrent ? "concurrent mark sweep": "mark sweep")),
144 current_mark_bitmap_(NULL),
Ian Rogers1d54e732013-05-02 21:10:01 -0700145 mark_stack_(NULL),
Ian Rogers1d54e732013-05-02 21:10:01 -0700146 immune_begin_(NULL),
147 immune_end_(NULL),
Ian Rogers906457c2013-11-13 23:28:08 -0800148 live_stack_freeze_size_(0),
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800149 gc_barrier_(new Barrier(0)),
Ian Rogers62d6c772013-02-27 08:32:07 -0800150 large_object_lock_("mark sweep large object lock", kMarkSweepLargeObjectLock),
Mathieu Chartier958291c2013-08-27 18:14:55 -0700151 mark_stack_lock_("mark sweep mark stack lock", kMarkSweepMarkStackLock),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700152 is_concurrent_(is_concurrent) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800153}
154
155void MarkSweep::InitializePhase() {
Ian Rogers1d54e732013-05-02 21:10:01 -0700156 timings_.Reset();
Ian Rogers5fe9af72013-11-14 00:17:20 -0800157 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -0700158 mark_stack_ = heap_->mark_stack_.get();
159 DCHECK(mark_stack_ != nullptr);
160 SetImmuneRange(nullptr, nullptr);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800161 class_count_ = 0;
162 array_count_ = 0;
163 other_count_ = 0;
164 large_object_test_ = 0;
165 large_object_mark_ = 0;
166 classes_marked_ = 0;
167 overhead_time_ = 0;
168 work_chunks_created_ = 0;
169 work_chunks_deleted_ = 0;
170 reference_count_ = 0;
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700171
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700172 FindDefaultMarkBitmap();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700173
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700174 // Do any pre GC verification.
Anwar Ghuloum46543222013-08-12 09:28:42 -0700175 timings_.NewSplit("PreGcVerification");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800176 heap_->PreGcVerification(this);
177}
178
179void MarkSweep::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800180 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier8e56c7e2012-11-20 13:25:50 -0800181 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800182 GetHeap()->ProcessReferences(timings_, clear_soft_references_, &IsMarkedCallback,
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800183 &MarkObjectCallback, &ProcessMarkStackPausedCallback, this);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800184}
185
186bool MarkSweep::HandleDirtyObjectsPhase() {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800187 TimingLogger::ScopedSplit split("(Paused)HandleDirtyObjectsPhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800188 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800189 Locks::mutator_lock_->AssertExclusiveHeld(self);
190
191 {
192 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
193
194 // Re-mark root set.
195 ReMarkRoots();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800196
197 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700198 RecursiveMarkDirtyObjects(true, accounting::CardTable::kCardDirty);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800199 }
200
201 ProcessReferences(self);
202
203 // Only need to do this if we have the card mark verification on, and only during concurrent GC.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700204 if (GetHeap()->verify_missing_card_marks_ || GetHeap()->verify_pre_gc_heap_||
205 GetHeap()->verify_post_gc_heap_) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800206 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
207 // This second sweep makes sure that we don't have any objects in the live stack which point to
208 // freed objects. These cause problems since their references may be previously freed objects.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700209 SweepArray(GetHeap()->allocation_stack_.get(), false);
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800210 // Since SweepArray() above resets the (active) allocation
211 // stack. Need to revoke the thread-local allocation stacks that
212 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800213 RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800214 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700215
216 timings_.StartSplit("PreSweepingGcVerification");
217 heap_->PreSweepingGcVerification(this);
218 timings_.EndSplit();
219
220 // Ensure that nobody inserted items in the live stack after we swapped the stacks.
221 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
222 CHECK_GE(live_stack_freeze_size_, GetHeap()->GetLiveStack()->Size());
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700223
224 // Disallow new system weaks to prevent a race which occurs when someone adds a new system
225 // weak before we sweep them. Since this new system weak may not be marked, the GC may
226 // incorrectly sweep it. This also fixes a race where interning may attempt to return a strong
227 // reference to a string that is about to be swept.
228 Runtime::Current()->DisallowNewSystemWeaks();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800229 return true;
230}
231
232bool MarkSweep::IsConcurrent() const {
233 return is_concurrent_;
234}
235
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800236void MarkSweep::PreCleanCards() {
237 // Don't do this for non concurrent GCs since they don't have any dirty cards.
238 if (kPreCleanCards && IsConcurrent()) {
239 Thread* self = Thread::Current();
240 CHECK(!Locks::mutator_lock_->IsExclusiveHeld(self));
241 // Process dirty cards and add dirty cards to mod union tables, also ages cards.
242 heap_->ProcessCards(timings_);
243 // Required so that we see aged cards before we start scanning the cards.
244 MarkThreadRoots(self);
245 // TODO: Only mark the dirty roots.
246 MarkNonThreadRoots();
247 MarkConcurrentRoots();
248 // Process the newly aged cards.
249 RecursiveMarkDirtyObjects(false, accounting::CardTable::kCardDirty - 1);
250 // TODO: Empty allocation stack to reduce the number of objects we need to test / mark as live
251 // in the next GC.
252 }
253}
254
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800255void MarkSweep::RevokeAllThreadLocalAllocationStacks(Thread* self) {
256 if (kUseThreadLocalAllocationStack) {
257 Locks::mutator_lock_->AssertExclusiveHeld(self);
258 heap_->RevokeAllThreadLocalAllocationStacks(self);
259 }
260}
261
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800262void MarkSweep::MarkingPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800263 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800264 Thread* self = Thread::Current();
265
266 BindBitmaps();
267 FindDefaultMarkBitmap();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700268
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800269 // Process dirty cards and add dirty cards to mod union tables.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700270 heap_->ProcessCards(timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800271
272 // Need to do this before the checkpoint since we don't want any threads to add references to
273 // the live stack during the recursive mark.
Anwar Ghuloum46543222013-08-12 09:28:42 -0700274 timings_.NewSplit("SwapStacks");
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800275 heap_->SwapStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800276
277 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
278 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
279 // If we exclusively hold the mutator lock, all threads must be suspended.
280 MarkRoots();
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800281 RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800282 } else {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700283 MarkThreadRoots(self);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700284 // At this point the live stack should no longer have any mutators which push into it.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800285 MarkNonThreadRoots();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800286 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700287 live_stack_freeze_size_ = heap_->GetLiveStack()->Size();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800288 MarkConcurrentRoots();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700289 UpdateAndMarkModUnion();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800290 MarkReachableObjects();
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800291 // Pre-clean dirtied cards to reduce pauses.
292 PreCleanCards();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800293}
294
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700295void MarkSweep::UpdateAndMarkModUnion() {
296 for (const auto& space : heap_->GetContinuousSpaces()) {
297 if (IsImmuneSpace(space)) {
298 const char* name = space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
299 "UpdateAndMarkImageModUnionTable";
Ian Rogers5fe9af72013-11-14 00:17:20 -0800300 TimingLogger::ScopedSplit split(name, &timings_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700301 accounting::ModUnionTable* mod_union_table = heap_->FindModUnionTableFromSpace(space);
302 CHECK(mod_union_table != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800303 mod_union_table->UpdateAndMarkReferences(MarkObjectCallback, this);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700304 }
305 }
306}
307
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700308void MarkSweep::MarkThreadRoots(Thread* self) {
309 MarkRootsCheckpoint(self);
310}
311
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800312void MarkSweep::MarkReachableObjects() {
313 // Mark everything allocated since the last as GC live so that we can sweep concurrently,
314 // knowing that new allocations won't be marked as live.
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700315 timings_.StartSplit("MarkStackAsLive");
Ian Rogers1d54e732013-05-02 21:10:01 -0700316 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700317 heap_->MarkAllocStackAsLive(live_stack);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800318 live_stack->Reset();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700319 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800320 // Recursively mark all the non-image bits set in the mark bitmap.
321 RecursiveMark();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800322}
323
324void MarkSweep::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800325 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartier720ef762013-08-17 14:46:54 -0700326 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800327
328 if (!IsConcurrent()) {
329 ProcessReferences(self);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700330 }
331
332 {
333 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
334 SweepSystemWeaks();
335 }
336
337 if (IsConcurrent()) {
338 Runtime::Current()->AllowNewSystemWeaks();
339
Ian Rogers5fe9af72013-11-14 00:17:20 -0800340 TimingLogger::ScopedSplit split("UnMarkAllocStack", &timings_);
Mathieu Chartier9642c962013-08-05 17:40:36 -0700341 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700342 accounting::ObjectStack* allocation_stack = GetHeap()->allocation_stack_.get();
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800343 if (!kPreCleanCards) {
344 // The allocation stack contains things allocated since the start of the GC. These may have
345 // been marked during this GC meaning they won't be eligible for reclaiming in the next
346 // sticky GC. Unmark these objects so that they are eligible for reclaiming in the next
347 // sticky GC.
348 // There is a race here which is safely handled. Another thread such as the hprof could
349 // have flushed the alloc stack after we resumed the threads. This is safe however, since
350 // reseting the allocation stack zeros it out with madvise. This means that we will either
351 // read NULLs or attempt to unmark a newly allocated object which will not be marked in the
352 // first place.
353 // We can't do this if we pre-clean cards since we will unmark objects which are no longer on
354 // a dirty card since we aged cards during the pre-cleaning process.
355 mirror::Object** end = allocation_stack->End();
356 for (mirror::Object** it = allocation_stack->Begin(); it != end; ++it) {
357 const Object* obj = *it;
358 if (obj != nullptr) {
359 UnMarkObjectNonNull(obj);
360 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700361 }
362 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800363 }
364
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800365 {
366 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
367
368 // Reclaim unmarked objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700369 Sweep(false);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800370
371 // Swap the live and mark bitmaps for each space which we modified space. This is an
372 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
373 // bitmaps.
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700374 timings_.StartSplit("SwapBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800375 SwapBitmaps();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700376 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800377
378 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800379 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
380 GetHeap()->UnBindBitmaps();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800381 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800382}
383
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800384void MarkSweep::SetImmuneRange(Object* begin, Object* end) {
385 immune_begin_ = begin;
386 immune_end_ = end;
Carl Shapiro58551df2011-07-24 03:09:51 -0700387}
388
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700389void MarkSweep::FindDefaultMarkBitmap() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800390 TimingLogger::ScopedSplit split("FindDefaultMarkBitmap", &timings_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700391 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700392 accounting::SpaceBitmap* bitmap = space->GetMarkBitmap();
393 if (bitmap != nullptr &&
394 space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) {
395 current_mark_bitmap_ = bitmap;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700396 CHECK(current_mark_bitmap_ != NULL);
397 return;
398 }
399 }
400 GetHeap()->DumpSpaces();
401 LOG(FATAL) << "Could not find a default mark bitmap";
402}
403
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800404void MarkSweep::ExpandMarkStack() {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700405 ResizeMarkStack(mark_stack_->Capacity() * 2);
406}
407
408void MarkSweep::ResizeMarkStack(size_t new_size) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800409 // Rare case, no need to have Thread::Current be a parameter.
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800410 if (UNLIKELY(mark_stack_->Size() < mark_stack_->Capacity())) {
411 // Someone else acquired the lock and expanded the mark stack before us.
412 return;
413 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700414 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
Mathieu Chartierba311b42013-08-27 13:02:30 -0700415 CHECK_LE(mark_stack_->Size(), new_size);
416 mark_stack_->Resize(new_size);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700417 for (const auto& obj : temp) {
418 mark_stack_->PushBack(obj);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800419 }
420}
421
Mathieu Chartier9642c962013-08-05 17:40:36 -0700422inline void MarkSweep::MarkObjectNonNullParallel(const Object* obj) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800423 DCHECK(obj != NULL);
424 if (MarkObjectParallel(obj)) {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700425 MutexLock mu(Thread::Current(), mark_stack_lock_);
426 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
Mathieu Chartier184e3222013-08-03 14:02:57 -0700427 ExpandMarkStack();
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800428 }
Mathieu Chartierba311b42013-08-27 13:02:30 -0700429 // The object must be pushed on to the mark stack.
430 mark_stack_->PushBack(const_cast<Object*>(obj));
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800431 }
432}
433
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800434mirror::Object* MarkSweep::MarkObjectCallback(mirror::Object* obj, void* arg) {
Mathieu Chartier39e32612013-11-12 16:28:05 -0800435 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
436 mark_sweep->MarkObject(obj);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800437 return obj;
438}
439
Mathieu Chartier9642c962013-08-05 17:40:36 -0700440inline void MarkSweep::UnMarkObjectNonNull(const Object* obj) {
441 DCHECK(!IsImmune(obj));
442 // Try to take advantage of locality of references within a space, failing this find the space
443 // the hard way.
444 accounting::SpaceBitmap* object_bitmap = current_mark_bitmap_;
445 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
446 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj);
447 if (LIKELY(new_bitmap != NULL)) {
448 object_bitmap = new_bitmap;
449 } else {
450 MarkLargeObject(obj, false);
451 return;
452 }
453 }
454
455 DCHECK(object_bitmap->HasAddress(obj));
456 object_bitmap->Clear(obj);
457}
458
459inline void MarkSweep::MarkObjectNonNull(const Object* obj) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700460 DCHECK(obj != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700461
Mathieu Chartier9642c962013-08-05 17:40:36 -0700462 if (IsImmune(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700463 DCHECK(IsMarked(obj));
Carl Shapiro69759ea2011-07-21 18:13:35 -0700464 return;
465 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700466
467 // Try to take advantage of locality of references within a space, failing this find the space
468 // the hard way.
Ian Rogers1d54e732013-05-02 21:10:01 -0700469 accounting::SpaceBitmap* object_bitmap = current_mark_bitmap_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700470 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700471 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj);
472 if (LIKELY(new_bitmap != NULL)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700473 object_bitmap = new_bitmap;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700474 } else {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700475 MarkLargeObject(obj, true);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700476 return;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700477 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700478 }
479
Carl Shapiro69759ea2011-07-21 18:13:35 -0700480 // This object was not previously marked.
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700481 if (!object_bitmap->Test(obj)) {
482 object_bitmap->Set(obj);
Mathieu Chartier184e3222013-08-03 14:02:57 -0700483 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700484 // Lock is not needed but is here anyways to please annotalysis.
485 MutexLock mu(Thread::Current(), mark_stack_lock_);
Mathieu Chartier184e3222013-08-03 14:02:57 -0700486 ExpandMarkStack();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700487 }
Mathieu Chartier184e3222013-08-03 14:02:57 -0700488 // The object must be pushed on to the mark stack.
489 mark_stack_->PushBack(const_cast<Object*>(obj));
Carl Shapiro69759ea2011-07-21 18:13:35 -0700490 }
491}
492
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700493// Rare case, probably not worth inlining since it will increase instruction cache miss rate.
Mathieu Chartier9642c962013-08-05 17:40:36 -0700494bool MarkSweep::MarkLargeObject(const Object* obj, bool set) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700495 // TODO: support >1 discontinuous space.
496 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -0800497 accounting::ObjectSet* large_objects = large_object_space->GetMarkObjects();
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700498 if (kProfileLargeObjects) {
499 ++large_object_test_;
500 }
501 if (UNLIKELY(!large_objects->Test(obj))) {
Mathieu Chartier4fcb8d32013-07-15 12:43:36 -0700502 if (!large_object_space->Contains(obj)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700503 LOG(ERROR) << "Tried to mark " << obj << " not contained by any spaces";
504 LOG(ERROR) << "Attempting see if it's a bad root";
505 VerifyRoots();
506 LOG(FATAL) << "Can't mark bad root";
507 }
508 if (kProfileLargeObjects) {
509 ++large_object_mark_;
510 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700511 if (set) {
512 large_objects->Set(obj);
513 } else {
514 large_objects->Clear(obj);
515 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700516 return true;
517 }
518 return false;
519}
520
521inline bool MarkSweep::MarkObjectParallel(const Object* obj) {
522 DCHECK(obj != NULL);
523
Mathieu Chartier9642c962013-08-05 17:40:36 -0700524 if (IsImmune(obj)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700525 DCHECK(IsMarked(obj));
526 return false;
527 }
528
529 // Try to take advantage of locality of references within a space, failing this find the space
530 // the hard way.
Ian Rogers1d54e732013-05-02 21:10:01 -0700531 accounting::SpaceBitmap* object_bitmap = current_mark_bitmap_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700532 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700533 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700534 if (new_bitmap != NULL) {
535 object_bitmap = new_bitmap;
536 } else {
537 // TODO: Remove the Thread::Current here?
538 // TODO: Convert this to some kind of atomic marking?
539 MutexLock mu(Thread::Current(), large_object_lock_);
Mathieu Chartier9642c962013-08-05 17:40:36 -0700540 return MarkLargeObject(obj, true);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700541 }
542 }
543
544 // Return true if the object was not previously marked.
545 return !object_bitmap->AtomicTestAndSet(obj);
546}
547
Carl Shapiro69759ea2011-07-21 18:13:35 -0700548// Used to mark objects when recursing. Recursion is done by moving
549// the finger across the bitmaps in address order and marking child
550// objects. Any newly-marked objects whose addresses are lower than
551// the finger won't be visited by the bitmap scan, so those objects
552// need to be added to the mark stack.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700553inline void MarkSweep::MarkObject(const Object* obj) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700554 if (obj != NULL) {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700555 MarkObjectNonNull(obj);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700556 }
557}
558
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800559void MarkSweep::MarkRoot(const Object* obj) {
560 if (obj != NULL) {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700561 MarkObjectNonNull(obj);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800562 }
563}
564
Mathieu Chartier815873e2014-02-13 18:02:13 -0800565void MarkSweep::MarkRootParallelCallback(mirror::Object** root, void* arg, uint32_t /*thread_id*/,
566 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800567 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNullParallel(*root);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800568}
569
Mathieu Chartier815873e2014-02-13 18:02:13 -0800570void MarkSweep::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
571 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800572 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNull(*root);
573}
574
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700575void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg,
Ian Rogers40e3bac2012-11-20 00:09:14 -0800576 const StackVisitor* visitor) {
577 reinterpret_cast<MarkSweep*>(arg)->VerifyRoot(root, vreg, visitor);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700578}
579
Ian Rogers40e3bac2012-11-20 00:09:14 -0800580void MarkSweep::VerifyRoot(const Object* root, size_t vreg, const StackVisitor* visitor) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700581 // See if the root is on any space bitmap.
Ian Rogers1d54e732013-05-02 21:10:01 -0700582 if (GetHeap()->GetLiveBitmap()->GetContinuousSpaceBitmap(root) == NULL) {
583 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier4202b742012-10-17 17:51:25 -0700584 if (!large_object_space->Contains(root)) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700585 LOG(ERROR) << "Found invalid root: " << root;
Ian Rogers40e3bac2012-11-20 00:09:14 -0800586 if (visitor != NULL) {
587 LOG(ERROR) << visitor->DescribeLocation() << " in VReg: " << vreg;
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700588 }
589 }
590 }
591}
592
593void MarkSweep::VerifyRoots() {
594 Runtime::Current()->GetThreadList()->VerifyRoots(VerifyRootCallback, this);
595}
596
Carl Shapiro69759ea2011-07-21 18:13:35 -0700597// Marks all objects in the root set.
598void MarkSweep::MarkRoots() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700599 timings_.StartSplit("MarkRoots");
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700600 Runtime::Current()->VisitNonConcurrentRoots(MarkRootCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700601 timings_.EndSplit();
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700602}
603
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700604void MarkSweep::MarkNonThreadRoots() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700605 timings_.StartSplit("MarkNonThreadRoots");
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700606 Runtime::Current()->VisitNonThreadRoots(MarkRootCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700607 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700608}
609
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700610void MarkSweep::MarkConcurrentRoots() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700611 timings_.StartSplit("MarkConcurrentRoots");
Ian Rogers1d54e732013-05-02 21:10:01 -0700612 // Visit all runtime roots and clear dirty flags.
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700613 Runtime::Current()->VisitConcurrentRoots(MarkRootCallback, this, false, true);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700614 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700615}
616
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700617class ScanObjectVisitor {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700618 public:
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700619 explicit ScanObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE
620 : mark_sweep_(mark_sweep) {}
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700621
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800622 // TODO: Fixme when anotatalysis works with visitors.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700623 void operator()(Object* obj) const ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700624 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800625 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
626 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
627 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700628 mark_sweep_->ScanObject(obj);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700629 }
630
631 private:
632 MarkSweep* const mark_sweep_;
633};
634
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700635template <bool kUseFinger = false>
636class MarkStackTask : public Task {
637 public:
638 MarkStackTask(ThreadPool* thread_pool, MarkSweep* mark_sweep, size_t mark_stack_size,
639 const Object** mark_stack)
640 : mark_sweep_(mark_sweep),
641 thread_pool_(thread_pool),
642 mark_stack_pos_(mark_stack_size) {
643 // We may have to copy part of an existing mark stack when another mark stack overflows.
644 if (mark_stack_size != 0) {
645 DCHECK(mark_stack != NULL);
646 // TODO: Check performance?
647 std::copy(mark_stack, mark_stack + mark_stack_size, mark_stack_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700648 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700649 if (kCountTasks) {
650 ++mark_sweep_->work_chunks_created_;
651 }
652 }
653
654 static const size_t kMaxSize = 1 * KB;
655
656 protected:
657 class ScanObjectParallelVisitor {
658 public:
659 explicit ScanObjectParallelVisitor(MarkStackTask<kUseFinger>* chunk_task) ALWAYS_INLINE
660 : chunk_task_(chunk_task) {}
661
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700662 void operator()(Object* obj) const {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700663 MarkSweep* mark_sweep = chunk_task_->mark_sweep_;
664 mark_sweep->ScanObjectVisit(obj,
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700665 [mark_sweep, this](Object* /* obj */, Object* ref, const MemberOffset& /* offset */,
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100666 bool /* is_static */) ALWAYS_INLINE_LAMBDA {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700667 if (ref != nullptr && mark_sweep->MarkObjectParallel(ref)) {
668 if (kUseFinger) {
669 android_memory_barrier();
670 if (reinterpret_cast<uintptr_t>(ref) >=
671 static_cast<uintptr_t>(mark_sweep->atomic_finger_)) {
672 return;
673 }
674 }
675 chunk_task_->MarkStackPush(ref);
676 }
677 });
678 }
679
680 private:
681 MarkStackTask<kUseFinger>* const chunk_task_;
682 };
683
684 virtual ~MarkStackTask() {
685 // Make sure that we have cleared our mark stack.
686 DCHECK_EQ(mark_stack_pos_, 0U);
687 if (kCountTasks) {
688 ++mark_sweep_->work_chunks_deleted_;
689 }
690 }
691
692 MarkSweep* const mark_sweep_;
693 ThreadPool* const thread_pool_;
694 // Thread local mark stack for this task.
695 const Object* mark_stack_[kMaxSize];
696 // Mark stack position.
697 size_t mark_stack_pos_;
698
699 void MarkStackPush(const Object* obj) ALWAYS_INLINE {
700 if (UNLIKELY(mark_stack_pos_ == kMaxSize)) {
701 // Mark stack overflow, give 1/2 the stack to the thread pool as a new work task.
702 mark_stack_pos_ /= 2;
703 auto* task = new MarkStackTask(thread_pool_, mark_sweep_, kMaxSize - mark_stack_pos_,
704 mark_stack_ + mark_stack_pos_);
705 thread_pool_->AddTask(Thread::Current(), task);
706 }
707 DCHECK(obj != nullptr);
708 DCHECK(mark_stack_pos_ < kMaxSize);
709 mark_stack_[mark_stack_pos_++] = obj;
710 }
711
712 virtual void Finalize() {
713 delete this;
714 }
715
716 // Scans all of the objects
717 virtual void Run(Thread* self) {
718 ScanObjectParallelVisitor visitor(this);
719 // TODO: Tune this.
720 static const size_t kFifoSize = 4;
721 BoundedFifoPowerOfTwo<const Object*, kFifoSize> prefetch_fifo;
722 for (;;) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700723 const Object* obj = nullptr;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700724 if (kUseMarkStackPrefetch) {
725 while (mark_stack_pos_ != 0 && prefetch_fifo.size() < kFifoSize) {
726 const Object* obj = mark_stack_[--mark_stack_pos_];
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700727 DCHECK(obj != nullptr);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700728 __builtin_prefetch(obj);
729 prefetch_fifo.push_back(obj);
730 }
731 if (UNLIKELY(prefetch_fifo.empty())) {
732 break;
733 }
734 obj = prefetch_fifo.front();
735 prefetch_fifo.pop_front();
736 } else {
737 if (UNLIKELY(mark_stack_pos_ == 0)) {
738 break;
739 }
740 obj = mark_stack_[--mark_stack_pos_];
741 }
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700742 DCHECK(obj != nullptr);
743 visitor(const_cast<mirror::Object*>(obj));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700744 }
745 }
746};
747
748class CardScanTask : public MarkStackTask<false> {
749 public:
750 CardScanTask(ThreadPool* thread_pool, MarkSweep* mark_sweep, accounting::SpaceBitmap* bitmap,
751 byte* begin, byte* end, byte minimum_age, size_t mark_stack_size,
752 const Object** mark_stack_obj)
753 : MarkStackTask<false>(thread_pool, mark_sweep, mark_stack_size, mark_stack_obj),
754 bitmap_(bitmap),
755 begin_(begin),
756 end_(end),
757 minimum_age_(minimum_age) {
758 }
759
760 protected:
761 accounting::SpaceBitmap* const bitmap_;
762 byte* const begin_;
763 byte* const end_;
764 const byte minimum_age_;
765
766 virtual void Finalize() {
767 delete this;
768 }
769
770 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
771 ScanObjectParallelVisitor visitor(this);
772 accounting::CardTable* card_table = mark_sweep_->GetHeap()->GetCardTable();
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700773 size_t cards_scanned = card_table->Scan(bitmap_, begin_, end_, visitor, minimum_age_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700774 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
775 << reinterpret_cast<void*>(end_) << " = " << cards_scanned;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700776 // Finish by emptying our local mark stack.
777 MarkStackTask::Run(self);
778 }
779};
780
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700781size_t MarkSweep::GetThreadCount(bool paused) const {
782 if (heap_->GetThreadPool() == nullptr || !heap_->CareAboutPauseTimes()) {
783 return 0;
784 }
785 if (paused) {
786 return heap_->GetParallelGCThreadCount() + 1;
787 } else {
788 return heap_->GetConcGCThreadCount() + 1;
789 }
790}
791
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700792void MarkSweep::ScanGrayObjects(bool paused, byte minimum_age) {
793 accounting::CardTable* card_table = GetHeap()->GetCardTable();
794 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700795 size_t thread_count = GetThreadCount(paused);
796 // The parallel version with only one thread is faster for card scanning, TODO: fix.
797 if (kParallelCardScan && thread_count > 0) {
Mathieu Chartier720ef762013-08-17 14:46:54 -0700798 Thread* self = Thread::Current();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700799 // Can't have a different split for each space since multiple spaces can have their cards being
800 // scanned at the same time.
801 timings_.StartSplit(paused ? "(Paused)ScanGrayObjects" : "ScanGrayObjects");
802 // Try to take some of the mark stack since we can pass this off to the worker tasks.
803 const Object** mark_stack_begin = const_cast<const Object**>(mark_stack_->Begin());
804 const Object** mark_stack_end = const_cast<const Object**>(mark_stack_->End());
Mathieu Chartier720ef762013-08-17 14:46:54 -0700805 const size_t mark_stack_size = mark_stack_end - mark_stack_begin;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700806 // Estimated number of work tasks we will create.
807 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
808 DCHECK_NE(mark_stack_tasks, 0U);
809 const size_t mark_stack_delta = std::min(CardScanTask::kMaxSize / 2,
810 mark_stack_size / mark_stack_tasks + 1);
811 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700812 if (space->GetMarkBitmap() == nullptr) {
813 continue;
814 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700815 byte* card_begin = space->Begin();
816 byte* card_end = space->End();
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800817 // Align up the end address. For example, the image space's end
818 // may not be card-size-aligned.
819 card_end = AlignUp(card_end, accounting::CardTable::kCardSize);
820 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_begin));
821 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_end));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700822 // Calculate how many bytes of heap we will scan,
823 const size_t address_range = card_end - card_begin;
824 // Calculate how much address range each task gets.
825 const size_t card_delta = RoundUp(address_range / thread_count + 1,
826 accounting::CardTable::kCardSize);
827 // Create the worker tasks for this space.
828 while (card_begin != card_end) {
829 // Add a range of cards.
830 size_t addr_remaining = card_end - card_begin;
831 size_t card_increment = std::min(card_delta, addr_remaining);
832 // Take from the back of the mark stack.
833 size_t mark_stack_remaining = mark_stack_end - mark_stack_begin;
834 size_t mark_stack_increment = std::min(mark_stack_delta, mark_stack_remaining);
835 mark_stack_end -= mark_stack_increment;
836 mark_stack_->PopBackCount(static_cast<int32_t>(mark_stack_increment));
837 DCHECK_EQ(mark_stack_end, mark_stack_->End());
838 // Add the new task to the thread pool.
839 auto* task = new CardScanTask(thread_pool, this, space->GetMarkBitmap(), card_begin,
840 card_begin + card_increment, minimum_age,
841 mark_stack_increment, mark_stack_end);
842 thread_pool->AddTask(self, task);
843 card_begin += card_increment;
844 }
845 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700846
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800847 // Note: the card scan below may dirty new cards (and scan them)
848 // as a side effect when a Reference object is encountered and
849 // queued during the marking. See b/11465268.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700850 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700851 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700852 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700853 thread_pool->StopWorkers(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700854 timings_.EndSplit();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700855 } else {
856 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700857 if (space->GetMarkBitmap() != nullptr) {
858 // Image spaces are handled properly since live == marked for them.
859 switch (space->GetGcRetentionPolicy()) {
860 case space::kGcRetentionPolicyNeverCollect:
861 timings_.StartSplit(paused ? "(Paused)ScanGrayImageSpaceObjects" :
862 "ScanGrayImageSpaceObjects");
863 break;
864 case space::kGcRetentionPolicyFullCollect:
865 timings_.StartSplit(paused ? "(Paused)ScanGrayZygoteSpaceObjects" :
866 "ScanGrayZygoteSpaceObjects");
867 break;
868 case space::kGcRetentionPolicyAlwaysCollect:
869 timings_.StartSplit(paused ? "(Paused)ScanGrayAllocSpaceObjects" :
870 "ScanGrayAllocSpaceObjects");
871 break;
872 }
873 ScanObjectVisitor visitor(this);
874 card_table->Scan(space->GetMarkBitmap(), space->Begin(), space->End(), visitor, minimum_age);
875 timings_.EndSplit();
876 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700877 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700878 }
879}
880
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700881class RecursiveMarkTask : public MarkStackTask<false> {
882 public:
883 RecursiveMarkTask(ThreadPool* thread_pool, MarkSweep* mark_sweep,
884 accounting::SpaceBitmap* bitmap, uintptr_t begin, uintptr_t end)
885 : MarkStackTask<false>(thread_pool, mark_sweep, 0, NULL),
886 bitmap_(bitmap),
887 begin_(begin),
888 end_(end) {
889 }
890
891 protected:
892 accounting::SpaceBitmap* const bitmap_;
893 const uintptr_t begin_;
894 const uintptr_t end_;
895
896 virtual void Finalize() {
897 delete this;
898 }
899
900 // Scans all of the objects
901 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
902 ScanObjectParallelVisitor visitor(this);
903 bitmap_->VisitMarkedRange(begin_, end_, visitor);
904 // Finish by emptying our local mark stack.
905 MarkStackTask::Run(self);
906 }
907};
908
Carl Shapiro58551df2011-07-24 03:09:51 -0700909// Populates the mark stack based on the set of marked objects and
910// recursively marks until the mark stack is emptied.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800911void MarkSweep::RecursiveMark() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800912 TimingLogger::ScopedSplit split("RecursiveMark", &timings_);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800913 // RecursiveMark will build the lists of known instances of the Reference classes. See
914 // DelayReferenceReferent for details.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700915 if (kUseRecursiveMark) {
916 const bool partial = GetGcType() == kGcTypePartial;
917 ScanObjectVisitor scan_visitor(this);
918 auto* self = Thread::Current();
919 ThreadPool* thread_pool = heap_->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700920 size_t thread_count = GetThreadCount(false);
921 const bool parallel = kParallelRecursiveMark && thread_count > 1;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700922 mark_stack_->Reset();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700923 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700924 if ((space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) ||
925 (!partial && space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect)) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800926 current_mark_bitmap_ = space->GetMarkBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700927 if (current_mark_bitmap_ == nullptr) {
928 continue;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800929 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700930 if (parallel) {
931 // We will use the mark stack the future.
932 // CHECK(mark_stack_->IsEmpty());
933 // This function does not handle heap end increasing, so we must use the space end.
934 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
935 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
936 atomic_finger_ = static_cast<int32_t>(0xFFFFFFFF);
937
938 // Create a few worker tasks.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700939 const size_t n = thread_count * 2;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700940 while (begin != end) {
941 uintptr_t start = begin;
942 uintptr_t delta = (end - begin) / n;
943 delta = RoundUp(delta, KB);
944 if (delta < 16 * KB) delta = end - begin;
945 begin += delta;
946 auto* task = new RecursiveMarkTask(thread_pool, this, current_mark_bitmap_, start,
947 begin);
948 thread_pool->AddTask(self, task);
949 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700950 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700951 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700952 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700953 thread_pool->StopWorkers(self);
954 } else {
955 // This function does not handle heap end increasing, so we must use the space end.
956 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
957 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
958 current_mark_bitmap_->VisitMarkedRange(begin, end, scan_visitor);
959 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700960 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700961 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700962 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700963 ProcessMarkStack(false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700964}
965
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800966mirror::Object* MarkSweep::IsMarkedCallback(mirror::Object* object, void* arg) {
Mathieu Chartier5712d5d2013-09-18 17:59:36 -0700967 if (reinterpret_cast<MarkSweep*>(arg)->IsMarked(object)) {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700968 return object;
969 }
970 return nullptr;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700971}
972
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700973void MarkSweep::RecursiveMarkDirtyObjects(bool paused, byte minimum_age) {
974 ScanGrayObjects(paused, minimum_age);
975 ProcessMarkStack(paused);
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700976}
977
Carl Shapiro58551df2011-07-24 03:09:51 -0700978void MarkSweep::ReMarkRoots() {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800979 timings_.StartSplit("(Paused)ReMarkRoots");
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700980 Runtime::Current()->VisitRoots(MarkRootCallback, this, true, true);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700981 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700982}
983
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700984void MarkSweep::SweepSystemWeaks() {
985 Runtime* runtime = Runtime::Current();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700986 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier39e32612013-11-12 16:28:05 -0800987 runtime->SweepSystemWeaks(IsMarkedCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700988 timings_.EndSplit();
Carl Shapiro58551df2011-07-24 03:09:51 -0700989}
990
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700991mirror::Object* MarkSweep::VerifySystemWeakIsLiveCallback(Object* obj, void* arg) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700992 reinterpret_cast<MarkSweep*>(arg)->VerifyIsLive(obj);
993 // We don't actually want to sweep the object, so lets return "marked"
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700994 return obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700995}
996
997void MarkSweep::VerifyIsLive(const Object* obj) {
998 Heap* heap = GetHeap();
999 if (!heap->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001000 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001001 if (!large_object_space->GetLiveObjects()->Test(obj)) {
1002 if (std::find(heap->allocation_stack_->Begin(), heap->allocation_stack_->End(), obj) ==
1003 heap->allocation_stack_->End()) {
1004 // Object not found!
1005 heap->DumpSpaces();
1006 LOG(FATAL) << "Found dead object " << obj;
1007 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001008 }
1009 }
1010}
1011
1012void MarkSweep::VerifySystemWeaks() {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -07001013 // Verify system weaks, uses a special object visitor which returns the input object.
1014 Runtime::Current()->SweepSystemWeaks(VerifySystemWeakIsLiveCallback, this);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001015}
1016
Mathieu Chartier0e4627e2012-10-23 16:13:36 -07001017class CheckpointMarkThreadRoots : public Closure {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001018 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001019 explicit CheckpointMarkThreadRoots(MarkSweep* mark_sweep) : mark_sweep_(mark_sweep) {}
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001020
1021 virtual void Run(Thread* thread) NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier3f966702013-09-04 16:50:05 -07001022 ATRACE_BEGIN("Marking thread roots");
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001023 // Note: self is not necessarily equal to thread since thread may be suspended.
1024 Thread* self = Thread::Current();
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001025 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
1026 << thread->GetState() << " thread " << thread << " self " << self;
Mathieu Chartierac86a7c2012-11-12 15:03:16 -08001027 thread->VisitRoots(MarkSweep::MarkRootParallelCallback, mark_sweep_);
Mathieu Chartier3f966702013-09-04 16:50:05 -07001028 ATRACE_END();
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001029 if (kUseThreadLocalAllocationStack) {
1030 thread->RevokeThreadLocalAllocationStack();
1031 }
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001032 mark_sweep_->GetBarrier().Pass(self);
1033 }
1034
1035 private:
1036 MarkSweep* mark_sweep_;
1037};
1038
Ian Rogers1d54e732013-05-02 21:10:01 -07001039void MarkSweep::MarkRootsCheckpoint(Thread* self) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001040 CheckpointMarkThreadRoots check_point(this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001041 timings_.StartSplit("MarkRootsCheckpoint");
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001042 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers1d54e732013-05-02 21:10:01 -07001043 // Request the check point is run on all threads returning a count of the threads that must
1044 // run through the barrier including self.
1045 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
1046 // Release locks then wait for all mutator threads to pass the barrier.
1047 // TODO: optimize to not release locks when there are no threads to wait for.
1048 Locks::heap_bitmap_lock_->ExclusiveUnlock(self);
1049 Locks::mutator_lock_->SharedUnlock(self);
1050 ThreadState old_state = self->SetState(kWaitingForCheckPointsToRun);
1051 CHECK_EQ(old_state, kWaitingPerformingGc);
1052 gc_barrier_->Increment(self, barrier_count);
1053 self->SetState(kWaitingPerformingGc);
1054 Locks::mutator_lock_->SharedLock(self);
1055 Locks::heap_bitmap_lock_->ExclusiveLock(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001056 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001057}
1058
Ian Rogers1d54e732013-05-02 21:10:01 -07001059void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001060 timings_.StartSplit("SweepArray");
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001061 Thread* self = Thread::Current();
1062 mirror::Object* chunk_free_buffer[kSweepArrayChunkFreeSize];
1063 size_t chunk_free_pos = 0;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001064 size_t freed_bytes = 0;
1065 size_t freed_large_object_bytes = 0;
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001066 size_t freed_objects = 0;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001067 size_t freed_large_objects = 0;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001068 // How many objects are left in the array, modified after each space is swept.
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001069 Object** objects = const_cast<Object**>(allocations->Begin());
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001070 size_t count = allocations->Size();
1071 // Change the order to ensure that the non-moving space last swept as an optimization.
1072 std::vector<space::ContinuousSpace*> sweep_spaces;
1073 space::ContinuousSpace* non_moving_space = nullptr;
1074 for (space::ContinuousSpace* space : heap_->GetContinuousSpaces()) {
1075 if (space->IsAllocSpace() && !IsImmuneSpace(space) && space->GetLiveBitmap() != nullptr) {
1076 if (space == heap_->GetNonMovingSpace()) {
1077 non_moving_space = space;
1078 } else {
1079 sweep_spaces.push_back(space);
1080 }
1081 }
1082 }
1083 // Unlikely to sweep a significant amount of non_movable objects, so we do these after the after
1084 // the other alloc spaces as an optimization.
1085 if (non_moving_space != nullptr) {
1086 sweep_spaces.push_back(non_moving_space);
1087 }
1088 // Start by sweeping the continuous spaces.
1089 for (space::ContinuousSpace* space : sweep_spaces) {
1090 space::AllocSpace* alloc_space = space->AsAllocSpace();
1091 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
1092 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
1093 if (swap_bitmaps) {
1094 std::swap(live_bitmap, mark_bitmap);
1095 }
1096 Object** out = objects;
1097 for (size_t i = 0; i < count; ++i) {
1098 Object* obj = objects[i];
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001099 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1100 continue;
1101 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001102 if (space->HasAddress(obj)) {
1103 // This object is in the space, remove it from the array and add it to the sweep buffer
1104 // if needed.
1105 if (!mark_bitmap->Test(obj)) {
1106 if (chunk_free_pos >= kSweepArrayChunkFreeSize) {
1107 timings_.StartSplit("FreeList");
1108 freed_objects += chunk_free_pos;
1109 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1110 timings_.EndSplit();
1111 chunk_free_pos = 0;
1112 }
1113 chunk_free_buffer[chunk_free_pos++] = obj;
1114 }
1115 } else {
1116 *(out++) = obj;
1117 }
1118 }
1119 if (chunk_free_pos > 0) {
1120 timings_.StartSplit("FreeList");
1121 freed_objects += chunk_free_pos;
1122 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1123 timings_.EndSplit();
1124 chunk_free_pos = 0;
1125 }
1126 // All of the references which space contained are no longer in the allocation stack, update
1127 // the count.
1128 count = out - objects;
1129 }
1130 // Handle the large object space.
1131 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -08001132 accounting::ObjectSet* large_live_objects = large_object_space->GetLiveObjects();
1133 accounting::ObjectSet* large_mark_objects = large_object_space->GetMarkObjects();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001134 if (swap_bitmaps) {
1135 std::swap(large_live_objects, large_mark_objects);
1136 }
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001137 for (size_t i = 0; i < count; ++i) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001138 Object* obj = objects[i];
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001139 // Handle large objects.
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001140 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1141 continue;
1142 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001143 if (!large_mark_objects->Test(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001144 ++freed_large_objects;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001145 freed_large_object_bytes += large_object_space->Free(self, obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001146 }
1147 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001148 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001149
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001150 timings_.StartSplit("RecordFree");
Mathieu Chartier40e978b2012-09-07 11:38:36 -07001151 VLOG(heap) << "Freed " << freed_objects << "/" << count
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001152 << " objects with size " << PrettySize(freed_bytes);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001153 heap_->RecordFree(freed_objects + freed_large_objects, freed_bytes + freed_large_object_bytes);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001154 freed_objects_.FetchAndAdd(freed_objects);
1155 freed_large_objects_.FetchAndAdd(freed_large_objects);
1156 freed_bytes_.FetchAndAdd(freed_bytes);
1157 freed_large_object_bytes_.FetchAndAdd(freed_large_object_bytes);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001158 timings_.EndSplit();
Ian Rogers1d54e732013-05-02 21:10:01 -07001159
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001160 timings_.StartSplit("ResetStack");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001161 allocations->Reset();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001162 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001163}
1164
Ian Rogers1d54e732013-05-02 21:10:01 -07001165void MarkSweep::Sweep(bool swap_bitmaps) {
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001166 DCHECK(mark_stack_->IsEmpty());
Ian Rogers5fe9af72013-11-14 00:17:20 -08001167 TimingLogger::ScopedSplit("Sweep", &timings_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001168 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001169 if (space->IsContinuousMemMapAllocSpace()) {
1170 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
Mathieu Chartierec050072014-01-07 16:00:07 -08001171 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001172 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepMallocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -08001173 size_t freed_objects = 0;
1174 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001175 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartierec050072014-01-07 16:00:07 -08001176 heap_->RecordFree(freed_objects, freed_bytes);
1177 freed_objects_.FetchAndAdd(freed_objects);
1178 freed_bytes_.FetchAndAdd(freed_bytes);
Carl Shapiro58551df2011-07-24 03:09:51 -07001179 }
1180 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001181 SweepLargeObjects(swap_bitmaps);
Carl Shapiro58551df2011-07-24 03:09:51 -07001182}
1183
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001184void MarkSweep::SweepLargeObjects(bool swap_bitmaps) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001185 TimingLogger::ScopedSplit("SweepLargeObjects", &timings_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001186 size_t freed_objects = 0;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001187 size_t freed_bytes = 0;
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -08001188 GetHeap()->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001189 freed_large_objects_.FetchAndAdd(freed_objects);
1190 freed_large_object_bytes_.FetchAndAdd(freed_bytes);
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001191 GetHeap()->RecordFree(freed_objects, freed_bytes);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001192}
1193
Carl Shapiro69759ea2011-07-21 18:13:35 -07001194// Process the "referent" field in a java.lang.ref.Reference. If the
1195// referent has not yet been marked, put it on the appropriate list in
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001196// the heap for later processing.
1197void MarkSweep::DelayReferenceReferent(mirror::Class* klass, Object* obj) {
1198 DCHECK(klass != nullptr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001199 DCHECK(klass->IsReferenceClass());
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001200 DCHECK(obj != NULL);
Mathieu Chartier39e32612013-11-12 16:28:05 -08001201 heap_->DelayReferenceReferent(klass, obj, IsMarkedCallback, this);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001202}
1203
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001204class MarkObjectVisitor {
1205 public:
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001206 explicit MarkObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE : mark_sweep_(mark_sweep) {}
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001207
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001208 // TODO: Fixme when anotatalysis works with visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001209 void operator()(const Object* /* obj */, const Object* ref, const MemberOffset& /* offset */,
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001210 bool /* is_static */) const ALWAYS_INLINE
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001211 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001212 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001213 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
1214 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
1215 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001216 mark_sweep_->MarkObject(ref);
1217 }
1218
1219 private:
1220 MarkSweep* const mark_sweep_;
1221};
1222
Carl Shapiro69759ea2011-07-21 18:13:35 -07001223// Scans an object reference. Determines the type of the reference
1224// and dispatches to a specialized scanning routine.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001225void MarkSweep::ScanObject(Object* obj) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001226 MarkObjectVisitor visitor(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001227 ScanObjectVisit(obj, visitor);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001228}
1229
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001230void MarkSweep::ProcessMarkStackPausedCallback(void* arg) {
1231 DCHECK(arg != nullptr);
1232 reinterpret_cast<MarkSweep*>(arg)->ProcessMarkStack(true);
1233}
1234
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001235void MarkSweep::ProcessMarkStackParallel(size_t thread_count) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001236 Thread* self = Thread::Current();
1237 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001238 const size_t chunk_size = std::min(mark_stack_->Size() / thread_count + 1,
1239 static_cast<size_t>(MarkStackTask<false>::kMaxSize));
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001240 CHECK_GT(chunk_size, 0U);
1241 // Split the current mark stack up into work tasks.
1242 for (mirror::Object **it = mark_stack_->Begin(), **end = mark_stack_->End(); it < end; ) {
1243 const size_t delta = std::min(static_cast<size_t>(end - it), chunk_size);
1244 thread_pool->AddTask(self, new MarkStackTask<false>(thread_pool, this, delta,
1245 const_cast<const mirror::Object**>(it)));
1246 it += delta;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001247 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001248 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001249 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001250 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001251 thread_pool->StopWorkers(self);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001252 mark_stack_->Reset();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001253 CHECK_EQ(work_chunks_created_, work_chunks_deleted_) << " some of the work chunks were leaked";
Carl Shapiro69759ea2011-07-21 18:13:35 -07001254}
1255
Ian Rogers5d76c432011-10-31 21:42:49 -07001256// Scan anything that's on the mark stack.
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001257void MarkSweep::ProcessMarkStack(bool paused) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001258 timings_.StartSplit(paused ? "(Paused)ProcessMarkStack" : "ProcessMarkStack");
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001259 size_t thread_count = GetThreadCount(paused);
1260 if (kParallelProcessMarkStack && thread_count > 1 &&
1261 mark_stack_->Size() >= kMinimumParallelMarkStackSize) {
1262 ProcessMarkStackParallel(thread_count);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001263 } else {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001264 // TODO: Tune this.
1265 static const size_t kFifoSize = 4;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001266 BoundedFifoPowerOfTwo<Object*, kFifoSize> prefetch_fifo;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001267 for (;;) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001268 Object* obj = NULL;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001269 if (kUseMarkStackPrefetch) {
1270 while (!mark_stack_->IsEmpty() && prefetch_fifo.size() < kFifoSize) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001271 Object* obj = mark_stack_->PopBack();
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001272 DCHECK(obj != NULL);
1273 __builtin_prefetch(obj);
1274 prefetch_fifo.push_back(obj);
1275 }
1276 if (prefetch_fifo.empty()) {
1277 break;
1278 }
1279 obj = prefetch_fifo.front();
1280 prefetch_fifo.pop_front();
1281 } else {
1282 if (mark_stack_->IsEmpty()) {
1283 break;
1284 }
1285 obj = mark_stack_->PopBack();
1286 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001287 DCHECK(obj != NULL);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001288 ScanObject(obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001289 }
1290 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001291 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001292}
1293
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001294inline bool MarkSweep::IsMarked(const Object* object) const
1295 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier9642c962013-08-05 17:40:36 -07001296 if (IsImmune(object)) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001297 return true;
1298 }
1299 DCHECK(current_mark_bitmap_ != NULL);
1300 if (current_mark_bitmap_->HasAddress(object)) {
1301 return current_mark_bitmap_->Test(object);
1302 }
1303 return heap_->GetMarkBitmap()->Test(object);
1304}
1305
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001306void MarkSweep::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001307 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Anwar Ghuloum46543222013-08-12 09:28:42 -07001308 // Can't enqueue references if we hold the mutator lock.
Ian Rogers1d54e732013-05-02 21:10:01 -07001309 Heap* heap = GetHeap();
Anwar Ghuloum46543222013-08-12 09:28:42 -07001310 timings_.NewSplit("PostGcVerification");
Ian Rogers1d54e732013-05-02 21:10:01 -07001311 heap->PostGcVerification(this);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001312
Anwar Ghuloum46543222013-08-12 09:28:42 -07001313 timings_.NewSplit("RequestHeapTrim");
Ian Rogers1d54e732013-05-02 21:10:01 -07001314 heap->RequestHeapTrim();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001315
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001316 // Update the cumulative statistics
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001317 total_freed_objects_ += GetFreedObjects() + GetFreedLargeObjects();
1318 total_freed_bytes_ += GetFreedBytes() + GetFreedLargeObjectBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001319
1320 // Ensure that the mark stack is empty.
1321 CHECK(mark_stack_->IsEmpty());
1322
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001323 if (kCountScannedTypes) {
1324 VLOG(gc) << "MarkSweep scanned classes=" << class_count_ << " arrays=" << array_count_
1325 << " other=" << other_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001326 }
1327
1328 if (kCountTasks) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001329 VLOG(gc) << "Total number of work chunks allocated: " << work_chunks_created_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001330 }
1331
1332 if (kMeasureOverhead) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001333 VLOG(gc) << "Overhead time " << PrettyDuration(overhead_time_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001334 }
1335
1336 if (kProfileLargeObjects) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001337 VLOG(gc) << "Large objects tested " << large_object_test_ << " marked " << large_object_mark_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001338 }
1339
1340 if (kCountClassesMarked) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001341 VLOG(gc) << "Classes marked " << classes_marked_;
1342 }
1343
1344 if (kCountJavaLangRefs) {
1345 VLOG(gc) << "References scanned " << reference_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001346 }
1347
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001348 // Update the cumulative loggers.
1349 cumulative_timings_.Start();
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001350 cumulative_timings_.AddLogger(timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001351 cumulative_timings_.End();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001352
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001353 // Clear all of the spaces' mark bitmaps.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001354 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001355 accounting::SpaceBitmap* bitmap = space->GetMarkBitmap();
1356 if (bitmap != nullptr &&
1357 space->GetGcRetentionPolicy() != space::kGcRetentionPolicyNeverCollect) {
1358 bitmap->Clear();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001359 }
1360 }
Mathieu Chartier5301cd22012-05-31 12:11:36 -07001361 mark_stack_->Reset();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001362
1363 // Reset the marked large objects.
Ian Rogers1d54e732013-05-02 21:10:01 -07001364 space::LargeObjectSpace* large_objects = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001365 large_objects->GetMarkObjects()->Clear();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001366}
1367
Ian Rogers1d54e732013-05-02 21:10:01 -07001368} // namespace collector
1369} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001370} // namespace art