blob: 8abf5e2f36e0b9299a137b1e6400f3137585ed93 [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"
Mathieu Chartier8fa2dad2014-03-13 12:22:56 -070047#include "mirror/reference-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048#include "mirror/object-inl.h"
49#include "mirror/object_array.h"
50#include "mirror/object_array-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070051#include "runtime.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070052#include "thread-inl.h"
Mathieu Chartier6f1c9492012-10-15 12:08:41 -070053#include "thread_list.h"
Ian Rogers08254272012-10-23 17:49:23 -070054#include "verifier/method_verifier.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070055
Brian Carlstromea46f952013-07-30 01:26:50 -070056using ::art::mirror::ArtField;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070057using ::art::mirror::Class;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070058using ::art::mirror::Object;
59using ::art::mirror::ObjectArray;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060
Carl Shapiro69759ea2011-07-21 18:13:35 -070061namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070062namespace gc {
63namespace collector {
Carl Shapiro69759ea2011-07-21 18:13:35 -070064
Mathieu Chartier02b6a782012-10-26 13:51:26 -070065// Performance options.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080066static constexpr bool kUseRecursiveMark = false;
67static constexpr bool kUseMarkStackPrefetch = true;
68static constexpr size_t kSweepArrayChunkFreeSize = 1024;
69static constexpr bool kPreCleanCards = true;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070070
71// Parallelism options.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080072static constexpr bool kParallelCardScan = true;
73static constexpr bool kParallelRecursiveMark = true;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070074// Don't attempt to parallelize mark stack processing unless the mark stack is at least n
75// elements. This is temporary until we reduce the overhead caused by allocating tasks, etc.. Not
76// having this can add overhead in ProcessReferences since we may end up doing many calls of
77// ProcessMarkStack with very small mark stacks.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080078static constexpr size_t kMinimumParallelMarkStackSize = 128;
79static constexpr bool kParallelProcessMarkStack = true;
Mathieu Chartier858f1c52012-10-17 17:45:55 -070080
Mathieu Chartier02b6a782012-10-26 13:51:26 -070081// Profiling and information flags.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080082static constexpr bool kProfileLargeObjects = false;
83static constexpr bool kMeasureOverhead = false;
84static constexpr bool kCountTasks = false;
85static constexpr bool kCountJavaLangRefs = false;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -070086static constexpr bool kCountMarkedObjects = false;
Mathieu Chartier94c32c52013-08-09 11:14:04 -070087
88// Turn off kCheckLocks when profiling the GC since it slows the GC down by up to 40%.
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -080089static constexpr bool kCheckLocks = kDebugLocking;
Mathieu Chartier893263b2014-03-04 11:07:42 -080090static constexpr bool kVerifyRoots = kIsDebugBuild;
Mathieu Chartier02b6a782012-10-26 13:51:26 -070091
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -070092// If true, revoke the rosalloc thread-local buffers at the
93// checkpoint, as opposed to during the pause.
94static constexpr bool kRevokeRosAllocThreadLocalBuffersAtCheckpoint = true;
95
Mathieu Chartier2b82db42012-11-14 17:29:05 -080096void MarkSweep::BindBitmaps() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -070097 timings_.StartSplit("BindBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -080098 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -080099 // Mark all of the spaces we never collect as immune.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700100 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700101 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyNeverCollect) {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700102 CHECK(immune_region_.AddContinuousSpace(space)) << "Failed to add space " << *space;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800103 }
104 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700105 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800106}
107
Ian Rogers1d54e732013-05-02 21:10:01 -0700108MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix)
109 : GarbageCollector(heap,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700110 name_prefix +
Ian Rogers1d54e732013-05-02 21:10:01 -0700111 (is_concurrent ? "concurrent mark sweep": "mark sweep")),
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800112 gc_barrier_(new Barrier(0)),
Ian Rogers62d6c772013-02-27 08:32:07 -0800113 large_object_lock_("mark sweep large object lock", kMarkSweepLargeObjectLock),
Mathieu Chartier958291c2013-08-27 18:14:55 -0700114 mark_stack_lock_("mark sweep mark stack lock", kMarkSweepMarkStackLock),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700115 is_concurrent_(is_concurrent) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800116}
117
118void MarkSweep::InitializePhase() {
Ian Rogers1d54e732013-05-02 21:10:01 -0700119 timings_.Reset();
Ian Rogers5fe9af72013-11-14 00:17:20 -0800120 TimingLogger::ScopedSplit split("InitializePhase", &timings_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -0700121 mark_stack_ = heap_->mark_stack_.get();
122 DCHECK(mark_stack_ != nullptr);
Mathieu Chartier8d562102014-03-12 17:42:10 -0700123 immune_region_.Reset();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800124 class_count_ = 0;
125 array_count_ = 0;
126 other_count_ = 0;
127 large_object_test_ = 0;
128 large_object_mark_ = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800129 overhead_time_ = 0;
130 work_chunks_created_ = 0;
131 work_chunks_deleted_ = 0;
132 reference_count_ = 0;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700133 mark_null_count_ = 0;
134 mark_immune_count_ = 0;
135 mark_fastpath_count_ = 0;
136 mark_slowpath_count_ = 0;
137 FindDefaultSpaceBitmap();
138 {
139 // TODO: I don't think we should need heap bitmap lock to get the mark bitmap.
140 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
141 mark_bitmap_ = heap_->GetMarkBitmap();
142 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700143
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700144 // Do any pre GC verification.
Anwar Ghuloum46543222013-08-12 09:28:42 -0700145 timings_.NewSplit("PreGcVerification");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800146 heap_->PreGcVerification(this);
147}
148
149void MarkSweep::ProcessReferences(Thread* self) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800150 TimingLogger::ScopedSplit split("ProcessReferences", &timings_);
Mathieu Chartier8e56c7e2012-11-20 13:25:50 -0800151 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800152 GetHeap()->ProcessReferences(timings_, clear_soft_references_, &IsMarkedCallback,
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800153 &MarkObjectCallback, &ProcessMarkStackPausedCallback, this);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800154}
155
Mathieu Chartier601276a2014-03-20 15:12:30 -0700156void MarkSweep::PreProcessReferences() {
157 if (IsConcurrent()) {
158 // No reason to do this for non-concurrent GC since pre processing soft references only helps
159 // pauses.
160 timings_.NewSplit("PreProcessReferences");
161 GetHeap()->ProcessSoftReferences(timings_, clear_soft_references_, &IsMarkedCallback,
162 &MarkObjectCallback, &ProcessMarkStackPausedCallback, this);
163 }
Mathieu Chartier1ad27842014-03-19 17:08:17 -0700164}
165
Hiroshi Yamauchi3e417802014-03-20 12:03:02 -0700166void MarkSweep::HandleDirtyObjectsPhase() {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800167 TimingLogger::ScopedSplit split("(Paused)HandleDirtyObjectsPhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800168 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800169 Locks::mutator_lock_->AssertExclusiveHeld(self);
170
171 {
172 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
173
174 // Re-mark root set.
175 ReMarkRoots();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800176
177 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700178 RecursiveMarkDirtyObjects(true, accounting::CardTable::kCardDirty);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800179 }
180
181 ProcessReferences(self);
182
183 // 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 -0700184 if (GetHeap()->verify_missing_card_marks_ || GetHeap()->verify_pre_gc_heap_||
185 GetHeap()->verify_post_gc_heap_) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800186 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
187 // This second sweep makes sure that we don't have any objects in the live stack which point to
188 // freed objects. These cause problems since their references may be previously freed objects.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700189 SweepArray(GetHeap()->allocation_stack_.get(), false);
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800190 // Since SweepArray() above resets the (active) allocation
191 // stack. Need to revoke the thread-local allocation stacks that
192 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800193 RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800194 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700195
196 timings_.StartSplit("PreSweepingGcVerification");
197 heap_->PreSweepingGcVerification(this);
198 timings_.EndSplit();
199
200 // Ensure that nobody inserted items in the live stack after we swapped the stacks.
201 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
202 CHECK_GE(live_stack_freeze_size_, GetHeap()->GetLiveStack()->Size());
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700203
204 // Disallow new system weaks to prevent a race which occurs when someone adds a new system
205 // weak before we sweep them. Since this new system weak may not be marked, the GC may
206 // incorrectly sweep it. This also fixes a race where interning may attempt to return a strong
207 // reference to a string that is about to be swept.
208 Runtime::Current()->DisallowNewSystemWeaks();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800209}
210
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800211void MarkSweep::PreCleanCards() {
212 // Don't do this for non concurrent GCs since they don't have any dirty cards.
213 if (kPreCleanCards && IsConcurrent()) {
214 Thread* self = Thread::Current();
215 CHECK(!Locks::mutator_lock_->IsExclusiveHeld(self));
216 // Process dirty cards and add dirty cards to mod union tables, also ages cards.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800217 heap_->ProcessCards(timings_, false);
Mathieu Chartiereb7bbad2014-02-25 15:52:46 -0800218 // The checkpoint root marking is required to avoid a race condition which occurs if the
219 // following happens during a reference write:
220 // 1. mutator dirties the card (write barrier)
221 // 2. GC ages the card (the above ProcessCards call)
222 // 3. GC scans the object (the RecursiveMarkDirtyObjects call below)
223 // 4. mutator writes the value (corresponding to the write barrier in 1.)
224 // This causes the GC to age the card but not necessarily mark the reference which the mutator
225 // wrote into the object stored in the card.
226 // Having the checkpoint fixes this issue since it ensures that the card mark and the
227 // reference write are visible to the GC before the card is scanned (this is due to locks being
228 // acquired / released in the checkpoint code).
229 // The other roots are also marked to help reduce the pause.
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800230 MarkThreadRoots(self);
231 // TODO: Only mark the dirty roots.
232 MarkNonThreadRoots();
Mathieu Chartier893263b2014-03-04 11:07:42 -0800233 MarkConcurrentRoots(
234 static_cast<VisitRootFlags>(kVisitRootFlagClearRootLog | kVisitRootFlagNewRoots));
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800235 // Process the newly aged cards.
236 RecursiveMarkDirtyObjects(false, accounting::CardTable::kCardDirty - 1);
237 // TODO: Empty allocation stack to reduce the number of objects we need to test / mark as live
238 // in the next GC.
239 }
240}
241
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800242void MarkSweep::RevokeAllThreadLocalAllocationStacks(Thread* self) {
243 if (kUseThreadLocalAllocationStack) {
244 Locks::mutator_lock_->AssertExclusiveHeld(self);
245 heap_->RevokeAllThreadLocalAllocationStacks(self);
246 }
247}
248
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800249void MarkSweep::MarkingPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800250 TimingLogger::ScopedSplit split("MarkingPhase", &timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800251 Thread* self = Thread::Current();
252
253 BindBitmaps();
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700254 FindDefaultSpaceBitmap();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700255
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800256 // Process dirty cards and add dirty cards to mod union tables.
Hiroshi Yamauchi38e68e92014-03-07 13:59:08 -0800257 heap_->ProcessCards(timings_, false);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800258
259 // Need to do this before the checkpoint since we don't want any threads to add references to
260 // the live stack during the recursive mark.
Anwar Ghuloum46543222013-08-12 09:28:42 -0700261 timings_.NewSplit("SwapStacks");
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800262 heap_->SwapStacks(self);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800263
264 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800265 MarkRoots(self);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700266 live_stack_freeze_size_ = heap_->GetLiveStack()->Size();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700267 UpdateAndMarkModUnion();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800268 MarkReachableObjects();
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800269 // Pre-clean dirtied cards to reduce pauses.
270 PreCleanCards();
Mathieu Chartier601276a2014-03-20 15:12:30 -0700271 PreProcessReferences();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800272}
273
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700274void MarkSweep::UpdateAndMarkModUnion() {
275 for (const auto& space : heap_->GetContinuousSpaces()) {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700276 if (immune_region_.ContainsSpace(space)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700277 const char* name = space->IsZygoteSpace() ? "UpdateAndMarkZygoteModUnionTable" :
278 "UpdateAndMarkImageModUnionTable";
Ian Rogers5fe9af72013-11-14 00:17:20 -0800279 TimingLogger::ScopedSplit split(name, &timings_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700280 accounting::ModUnionTable* mod_union_table = heap_->FindModUnionTableFromSpace(space);
281 CHECK(mod_union_table != nullptr);
Mathieu Chartier407f7022014-02-18 14:37:05 -0800282 mod_union_table->UpdateAndMarkReferences(MarkHeapReferenceCallback, this);
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700283 }
284 }
285}
286
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700287void MarkSweep::MarkThreadRoots(Thread* self) {
288 MarkRootsCheckpoint(self);
289}
290
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800291void MarkSweep::MarkReachableObjects() {
292 // Mark everything allocated since the last as GC live so that we can sweep concurrently,
293 // knowing that new allocations won't be marked as live.
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700294 timings_.StartSplit("MarkStackAsLive");
Ian Rogers1d54e732013-05-02 21:10:01 -0700295 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700296 heap_->MarkAllocStackAsLive(live_stack);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800297 live_stack->Reset();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700298 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800299 // Recursively mark all the non-image bits set in the mark bitmap.
300 RecursiveMark();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800301}
302
303void MarkSweep::ReclaimPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800304 TimingLogger::ScopedSplit split("ReclaimPhase", &timings_);
Mathieu Chartier720ef762013-08-17 14:46:54 -0700305 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800306
307 if (!IsConcurrent()) {
308 ProcessReferences(self);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700309 }
310
311 {
312 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
313 SweepSystemWeaks();
314 }
315
316 if (IsConcurrent()) {
317 Runtime::Current()->AllowNewSystemWeaks();
318
Ian Rogers5fe9af72013-11-14 00:17:20 -0800319 TimingLogger::ScopedSplit split("UnMarkAllocStack", &timings_);
Mathieu Chartier9642c962013-08-05 17:40:36 -0700320 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700321 accounting::ObjectStack* allocation_stack = GetHeap()->allocation_stack_.get();
Mathieu Chartierdda54f52014-02-24 09:58:40 -0800322 if (!kPreCleanCards) {
323 // The allocation stack contains things allocated since the start of the GC. These may have
324 // been marked during this GC meaning they won't be eligible for reclaiming in the next
325 // sticky GC. Unmark these objects so that they are eligible for reclaiming in the next
326 // sticky GC.
327 // There is a race here which is safely handled. Another thread such as the hprof could
328 // have flushed the alloc stack after we resumed the threads. This is safe however, since
329 // reseting the allocation stack zeros it out with madvise. This means that we will either
330 // read NULLs or attempt to unmark a newly allocated object which will not be marked in the
331 // first place.
332 // We can't do this if we pre-clean cards since we will unmark objects which are no longer on
333 // a dirty card since we aged cards during the pre-cleaning process.
334 mirror::Object** end = allocation_stack->End();
335 for (mirror::Object** it = allocation_stack->Begin(); it != end; ++it) {
336 const Object* obj = *it;
337 if (obj != nullptr) {
338 UnMarkObjectNonNull(obj);
339 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700340 }
341 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800342 }
343
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800344 {
345 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
346
347 // Reclaim unmarked objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700348 Sweep(false);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800349
350 // Swap the live and mark bitmaps for each space which we modified space. This is an
351 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
352 // bitmaps.
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700353 timings_.StartSplit("SwapBitmaps");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800354 SwapBitmaps();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700355 timings_.EndSplit();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800356
357 // Unbind the live and mark bitmaps.
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800358 TimingLogger::ScopedSplit split("UnBindBitmaps", &timings_);
359 GetHeap()->UnBindBitmaps();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800360 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800361}
362
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700363void MarkSweep::FindDefaultSpaceBitmap() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800364 TimingLogger::ScopedSplit split("FindDefaultMarkBitmap", &timings_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700365 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700366 accounting::SpaceBitmap* bitmap = space->GetMarkBitmap();
367 if (bitmap != nullptr &&
368 space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700369 current_space_bitmap_ = bitmap;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700370 return;
371 }
372 }
373 GetHeap()->DumpSpaces();
374 LOG(FATAL) << "Could not find a default mark bitmap";
375}
376
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800377void MarkSweep::ExpandMarkStack() {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700378 ResizeMarkStack(mark_stack_->Capacity() * 2);
379}
380
381void MarkSweep::ResizeMarkStack(size_t new_size) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800382 // Rare case, no need to have Thread::Current be a parameter.
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800383 if (UNLIKELY(mark_stack_->Size() < mark_stack_->Capacity())) {
384 // Someone else acquired the lock and expanded the mark stack before us.
385 return;
386 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700387 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End());
Mathieu Chartierba311b42013-08-27 13:02:30 -0700388 CHECK_LE(mark_stack_->Size(), new_size);
389 mark_stack_->Resize(new_size);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700390 for (const auto& obj : temp) {
391 mark_stack_->PushBack(obj);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800392 }
393}
394
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700395inline void MarkSweep::MarkObjectNonNullParallel(Object* obj) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800396 DCHECK(obj != NULL);
397 if (MarkObjectParallel(obj)) {
Mathieu Chartierba311b42013-08-27 13:02:30 -0700398 MutexLock mu(Thread::Current(), mark_stack_lock_);
399 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
Mathieu Chartier184e3222013-08-03 14:02:57 -0700400 ExpandMarkStack();
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800401 }
Mathieu Chartierba311b42013-08-27 13:02:30 -0700402 // The object must be pushed on to the mark stack.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700403 mark_stack_->PushBack(obj);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800404 }
405}
406
Mathieu Chartier3bb57c72014-02-18 11:38:45 -0800407mirror::Object* MarkSweep::MarkObjectCallback(mirror::Object* obj, void* arg) {
Mathieu Chartier39e32612013-11-12 16:28:05 -0800408 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
409 mark_sweep->MarkObject(obj);
Mathieu Chartier39e32612013-11-12 16:28:05 -0800410 return obj;
411}
412
Mathieu Chartier407f7022014-02-18 14:37:05 -0800413void MarkSweep::MarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>* ref, void* arg) {
414 reinterpret_cast<MarkSweep*>(arg)->MarkObject(ref->AsMirrorPtr());
415}
416
Mathieu Chartier9642c962013-08-05 17:40:36 -0700417inline void MarkSweep::UnMarkObjectNonNull(const Object* obj) {
Mathieu Chartier8d562102014-03-12 17:42:10 -0700418 DCHECK(!immune_region_.ContainsObject(obj));
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800419 if (kUseBrooksPointer) {
420 // Verify all the objects have the correct Brooks pointer installed.
421 obj->AssertSelfBrooksPointer();
422 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700423 // Try to take advantage of locality of references within a space, failing this find the space
424 // the hard way.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700425 accounting::SpaceBitmap* object_bitmap = current_space_bitmap_;
Mathieu Chartier9642c962013-08-05 17:40:36 -0700426 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700427 accounting::SpaceBitmap* new_bitmap = mark_bitmap_->GetContinuousSpaceBitmap(obj);
Mathieu Chartier9642c962013-08-05 17:40:36 -0700428 if (LIKELY(new_bitmap != NULL)) {
429 object_bitmap = new_bitmap;
430 } else {
431 MarkLargeObject(obj, false);
432 return;
433 }
434 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700435 DCHECK(object_bitmap->HasAddress(obj));
436 object_bitmap->Clear(obj);
437}
438
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700439inline void MarkSweep::MarkObjectNonNull(Object* obj) {
440 DCHECK(obj != nullptr);
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800441 if (kUseBrooksPointer) {
442 // Verify all the objects have the correct Brooks pointer installed.
443 obj->AssertSelfBrooksPointer();
444 }
Mathieu Chartier8d562102014-03-12 17:42:10 -0700445 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700446 if (kCountMarkedObjects) {
447 ++mark_immune_count_;
448 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700449 DCHECK(IsMarked(obj));
Carl Shapiro69759ea2011-07-21 18:13:35 -0700450 return;
451 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700452 // Try to take advantage of locality of references within a space, failing this find the space
453 // the hard way.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700454 accounting::SpaceBitmap* object_bitmap = current_space_bitmap_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700455 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700456 object_bitmap = mark_bitmap_->GetContinuousSpaceBitmap(obj);
457 if (kCountMarkedObjects) {
458 ++mark_slowpath_count_;
459 }
460 if (UNLIKELY(object_bitmap == nullptr)) {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700461 MarkLargeObject(obj, true);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700462 return;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700463 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700464 } else if (kCountMarkedObjects) {
465 ++mark_fastpath_count_;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700466 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700467 // This object was not previously marked.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700468 if (!object_bitmap->Set(obj)) {
469 PushOnMarkStack(obj);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700470 }
471}
472
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700473inline void MarkSweep::PushOnMarkStack(Object* obj) {
474 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
475 // Lock is not needed but is here anyways to please annotalysis.
476 MutexLock mu(Thread::Current(), mark_stack_lock_);
477 ExpandMarkStack();
478 }
479 // The object must be pushed on to the mark stack.
480 mark_stack_->PushBack(obj);
481}
482
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700483// Rare case, probably not worth inlining since it will increase instruction cache miss rate.
Mathieu Chartier9642c962013-08-05 17:40:36 -0700484bool MarkSweep::MarkLargeObject(const Object* obj, bool set) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700485 // TODO: support >1 discontinuous space.
486 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -0800487 accounting::ObjectSet* large_objects = large_object_space->GetMarkObjects();
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700488 if (kProfileLargeObjects) {
489 ++large_object_test_;
490 }
491 if (UNLIKELY(!large_objects->Test(obj))) {
Mathieu Chartier4fcb8d32013-07-15 12:43:36 -0700492 if (!large_object_space->Contains(obj)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700493 LOG(ERROR) << "Tried to mark " << obj << " not contained by any spaces";
494 LOG(ERROR) << "Attempting see if it's a bad root";
495 VerifyRoots();
496 LOG(FATAL) << "Can't mark bad root";
497 }
498 if (kProfileLargeObjects) {
499 ++large_object_mark_;
500 }
Mathieu Chartier9642c962013-08-05 17:40:36 -0700501 if (set) {
502 large_objects->Set(obj);
503 } else {
504 large_objects->Clear(obj);
505 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700506 return true;
507 }
508 return false;
509}
510
511inline bool MarkSweep::MarkObjectParallel(const Object* obj) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700512 DCHECK(obj != nullptr);
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800513 if (kUseBrooksPointer) {
514 // Verify all the objects have the correct Brooks pointer installed.
515 obj->AssertSelfBrooksPointer();
516 }
Mathieu Chartier8d562102014-03-12 17:42:10 -0700517 if (immune_region_.ContainsObject(obj)) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700518 DCHECK(IsMarked(obj));
519 return false;
520 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700521 // Try to take advantage of locality of references within a space, failing this find the space
522 // the hard way.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700523 accounting::SpaceBitmap* object_bitmap = current_space_bitmap_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700524 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700525 accounting::SpaceBitmap* new_bitmap = mark_bitmap_->GetContinuousSpaceBitmap(obj);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700526 if (new_bitmap != NULL) {
527 object_bitmap = new_bitmap;
528 } else {
529 // TODO: Remove the Thread::Current here?
530 // TODO: Convert this to some kind of atomic marking?
531 MutexLock mu(Thread::Current(), large_object_lock_);
Mathieu Chartier9642c962013-08-05 17:40:36 -0700532 return MarkLargeObject(obj, true);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700533 }
534 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700535 // Return true if the object was not previously marked.
536 return !object_bitmap->AtomicTestAndSet(obj);
537}
538
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700539// Used to mark objects when processing the mark stack. If an object is null, it is not marked.
540inline void MarkSweep::MarkObject(Object* obj) {
541 if (obj != nullptr) {
Mathieu Chartier9642c962013-08-05 17:40:36 -0700542 MarkObjectNonNull(obj);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700543 } else if (kCountMarkedObjects) {
544 ++mark_null_count_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700545 }
546}
547
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700548void MarkSweep::MarkRootParallelCallback(Object** root, void* arg, uint32_t /*thread_id*/,
Mathieu Chartier815873e2014-02-13 18:02:13 -0800549 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800550 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNullParallel(*root);
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800551}
552
Mathieu Chartier893263b2014-03-04 11:07:42 -0800553void MarkSweep::VerifyRootMarked(Object** root, void* arg, uint32_t /*thread_id*/,
554 RootType /*root_type*/) {
555 CHECK(reinterpret_cast<MarkSweep*>(arg)->IsMarked(*root));
556}
557
Mathieu Chartier815873e2014-02-13 18:02:13 -0800558void MarkSweep::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/,
559 RootType /*root_type*/) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800560 reinterpret_cast<MarkSweep*>(arg)->MarkObjectNonNull(*root);
561}
562
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700563void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg,
Ian Rogers40e3bac2012-11-20 00:09:14 -0800564 const StackVisitor* visitor) {
565 reinterpret_cast<MarkSweep*>(arg)->VerifyRoot(root, vreg, visitor);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700566}
567
Ian Rogers40e3bac2012-11-20 00:09:14 -0800568void MarkSweep::VerifyRoot(const Object* root, size_t vreg, const StackVisitor* visitor) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700569 // See if the root is on any space bitmap.
Ian Rogers1d54e732013-05-02 21:10:01 -0700570 if (GetHeap()->GetLiveBitmap()->GetContinuousSpaceBitmap(root) == NULL) {
571 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier4202b742012-10-17 17:51:25 -0700572 if (!large_object_space->Contains(root)) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700573 LOG(ERROR) << "Found invalid root: " << root;
Ian Rogers40e3bac2012-11-20 00:09:14 -0800574 if (visitor != NULL) {
575 LOG(ERROR) << visitor->DescribeLocation() << " in VReg: " << vreg;
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700576 }
577 }
578 }
579}
580
581void MarkSweep::VerifyRoots() {
582 Runtime::Current()->GetThreadList()->VerifyRoots(VerifyRootCallback, this);
583}
584
Mathieu Chartier893263b2014-03-04 11:07:42 -0800585void MarkSweep::MarkRoots(Thread* self) {
586 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
587 // If we exclusively hold the mutator lock, all threads must be suspended.
588 timings_.StartSplit("MarkRoots");
589 Runtime::Current()->VisitRoots(MarkRootCallback, this);
590 timings_.EndSplit();
591 RevokeAllThreadLocalAllocationStacks(self);
592 } else {
593 MarkThreadRoots(self);
594 // At this point the live stack should no longer have any mutators which push into it.
595 MarkNonThreadRoots();
596 MarkConcurrentRoots(
597 static_cast<VisitRootFlags>(kVisitRootFlagAllRoots | kVisitRootFlagStartLoggingNewRoots));
598 }
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700599}
600
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700601void MarkSweep::MarkNonThreadRoots() {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700602 timings_.StartSplit("MarkNonThreadRoots");
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700603 Runtime::Current()->VisitNonThreadRoots(MarkRootCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700604 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700605}
606
Mathieu Chartier893263b2014-03-04 11:07:42 -0800607void MarkSweep::MarkConcurrentRoots(VisitRootFlags flags) {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700608 timings_.StartSplit("MarkConcurrentRoots");
Ian Rogers1d54e732013-05-02 21:10:01 -0700609 // Visit all runtime roots and clear dirty flags.
Mathieu Chartier893263b2014-03-04 11:07:42 -0800610 Runtime::Current()->VisitConcurrentRoots(MarkRootCallback, this, flags);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700611 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700612}
613
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700614class ScanObjectVisitor {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700615 public:
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700616 explicit ScanObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE
617 : mark_sweep_(mark_sweep) {}
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700618
Mathieu Chartier407f7022014-02-18 14:37:05 -0800619 void operator()(Object* obj) const ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
620 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700621 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800622 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
623 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
624 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700625 mark_sweep_->ScanObject(obj);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700626 }
627
628 private:
629 MarkSweep* const mark_sweep_;
630};
631
Mathieu Chartier407f7022014-02-18 14:37:05 -0800632class DelayReferenceReferentVisitor {
633 public:
634 explicit DelayReferenceReferentVisitor(MarkSweep* collector) : collector_(collector) {
635 }
636
637 void operator()(mirror::Class* klass, mirror::Reference* ref) const
638 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
639 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
640 collector_->DelayReferenceReferent(klass, ref);
641 }
642
643 private:
644 MarkSweep* const collector_;
645};
646
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700647template <bool kUseFinger = false>
648class MarkStackTask : public Task {
649 public:
650 MarkStackTask(ThreadPool* thread_pool, MarkSweep* mark_sweep, size_t mark_stack_size,
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700651 Object** mark_stack)
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700652 : mark_sweep_(mark_sweep),
653 thread_pool_(thread_pool),
654 mark_stack_pos_(mark_stack_size) {
655 // We may have to copy part of an existing mark stack when another mark stack overflows.
656 if (mark_stack_size != 0) {
657 DCHECK(mark_stack != NULL);
658 // TODO: Check performance?
659 std::copy(mark_stack, mark_stack + mark_stack_size, mark_stack_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700660 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700661 if (kCountTasks) {
662 ++mark_sweep_->work_chunks_created_;
663 }
664 }
665
666 static const size_t kMaxSize = 1 * KB;
667
668 protected:
Mathieu Chartier407f7022014-02-18 14:37:05 -0800669 class MarkObjectParallelVisitor {
670 public:
671 explicit MarkObjectParallelVisitor(MarkStackTask<kUseFinger>* chunk_task,
672 MarkSweep* mark_sweep) ALWAYS_INLINE
673 : chunk_task_(chunk_task), mark_sweep_(mark_sweep) {}
674
675 void operator()(Object* obj, MemberOffset offset, bool /* static */) const ALWAYS_INLINE
676 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
677 mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset, false);
678 if (ref != nullptr && mark_sweep_->MarkObjectParallel(ref)) {
679 if (kUseFinger) {
680 android_memory_barrier();
681 if (reinterpret_cast<uintptr_t>(ref) >=
682 static_cast<uintptr_t>(mark_sweep_->atomic_finger_)) {
683 return;
684 }
685 }
686 chunk_task_->MarkStackPush(ref);
687 }
688 }
689
690 private:
691 MarkStackTask<kUseFinger>* const chunk_task_;
692 MarkSweep* const mark_sweep_;
693 };
694
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700695 class ScanObjectParallelVisitor {
696 public:
697 explicit ScanObjectParallelVisitor(MarkStackTask<kUseFinger>* chunk_task) ALWAYS_INLINE
698 : chunk_task_(chunk_task) {}
699
Mathieu Chartier407f7022014-02-18 14:37:05 -0800700 // No thread safety analysis since multiple threads will use this visitor.
701 void operator()(Object* obj) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
702 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
703 MarkSweep* const mark_sweep = chunk_task_->mark_sweep_;
704 MarkObjectParallelVisitor mark_visitor(chunk_task_, mark_sweep);
705 DelayReferenceReferentVisitor ref_visitor(mark_sweep);
706 mark_sweep->ScanObjectVisit(obj, mark_visitor, ref_visitor);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700707 }
708
709 private:
710 MarkStackTask<kUseFinger>* const chunk_task_;
711 };
712
713 virtual ~MarkStackTask() {
714 // Make sure that we have cleared our mark stack.
715 DCHECK_EQ(mark_stack_pos_, 0U);
716 if (kCountTasks) {
717 ++mark_sweep_->work_chunks_deleted_;
718 }
719 }
720
721 MarkSweep* const mark_sweep_;
722 ThreadPool* const thread_pool_;
723 // Thread local mark stack for this task.
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700724 Object* mark_stack_[kMaxSize];
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700725 // Mark stack position.
726 size_t mark_stack_pos_;
727
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700728 void MarkStackPush(Object* obj) ALWAYS_INLINE {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700729 if (UNLIKELY(mark_stack_pos_ == kMaxSize)) {
730 // Mark stack overflow, give 1/2 the stack to the thread pool as a new work task.
731 mark_stack_pos_ /= 2;
732 auto* task = new MarkStackTask(thread_pool_, mark_sweep_, kMaxSize - mark_stack_pos_,
733 mark_stack_ + mark_stack_pos_);
734 thread_pool_->AddTask(Thread::Current(), task);
735 }
736 DCHECK(obj != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700737 DCHECK_LT(mark_stack_pos_, kMaxSize);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700738 mark_stack_[mark_stack_pos_++] = obj;
739 }
740
741 virtual void Finalize() {
742 delete this;
743 }
744
745 // Scans all of the objects
Mathieu Chartier407f7022014-02-18 14:37:05 -0800746 virtual void Run(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
747 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700748 ScanObjectParallelVisitor visitor(this);
749 // TODO: Tune this.
750 static const size_t kFifoSize = 4;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700751 BoundedFifoPowerOfTwo<Object*, kFifoSize> prefetch_fifo;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700752 for (;;) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700753 Object* obj = nullptr;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700754 if (kUseMarkStackPrefetch) {
755 while (mark_stack_pos_ != 0 && prefetch_fifo.size() < kFifoSize) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700756 Object* obj = mark_stack_[--mark_stack_pos_];
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700757 DCHECK(obj != nullptr);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700758 __builtin_prefetch(obj);
759 prefetch_fifo.push_back(obj);
760 }
761 if (UNLIKELY(prefetch_fifo.empty())) {
762 break;
763 }
764 obj = prefetch_fifo.front();
765 prefetch_fifo.pop_front();
766 } else {
767 if (UNLIKELY(mark_stack_pos_ == 0)) {
768 break;
769 }
770 obj = mark_stack_[--mark_stack_pos_];
771 }
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700772 DCHECK(obj != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700773 visitor(obj);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700774 }
775 }
776};
777
778class CardScanTask : public MarkStackTask<false> {
779 public:
780 CardScanTask(ThreadPool* thread_pool, MarkSweep* mark_sweep, accounting::SpaceBitmap* bitmap,
781 byte* begin, byte* end, byte minimum_age, size_t mark_stack_size,
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700782 Object** mark_stack_obj)
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700783 : MarkStackTask<false>(thread_pool, mark_sweep, mark_stack_size, mark_stack_obj),
784 bitmap_(bitmap),
785 begin_(begin),
786 end_(end),
787 minimum_age_(minimum_age) {
788 }
789
790 protected:
791 accounting::SpaceBitmap* const bitmap_;
792 byte* const begin_;
793 byte* const end_;
794 const byte minimum_age_;
795
796 virtual void Finalize() {
797 delete this;
798 }
799
800 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
801 ScanObjectParallelVisitor visitor(this);
802 accounting::CardTable* card_table = mark_sweep_->GetHeap()->GetCardTable();
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700803 size_t cards_scanned = card_table->Scan(bitmap_, begin_, end_, visitor, minimum_age_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700804 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
805 << reinterpret_cast<void*>(end_) << " = " << cards_scanned;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700806 // Finish by emptying our local mark stack.
807 MarkStackTask::Run(self);
808 }
809};
810
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700811size_t MarkSweep::GetThreadCount(bool paused) const {
812 if (heap_->GetThreadPool() == nullptr || !heap_->CareAboutPauseTimes()) {
813 return 0;
814 }
815 if (paused) {
816 return heap_->GetParallelGCThreadCount() + 1;
817 } else {
818 return heap_->GetConcGCThreadCount() + 1;
819 }
820}
821
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700822void MarkSweep::ScanGrayObjects(bool paused, byte minimum_age) {
823 accounting::CardTable* card_table = GetHeap()->GetCardTable();
824 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700825 size_t thread_count = GetThreadCount(paused);
826 // The parallel version with only one thread is faster for card scanning, TODO: fix.
827 if (kParallelCardScan && thread_count > 0) {
Mathieu Chartier720ef762013-08-17 14:46:54 -0700828 Thread* self = Thread::Current();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700829 // Can't have a different split for each space since multiple spaces can have their cards being
830 // scanned at the same time.
831 timings_.StartSplit(paused ? "(Paused)ScanGrayObjects" : "ScanGrayObjects");
832 // 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 -0700833 Object** mark_stack_begin = mark_stack_->Begin();
834 Object** mark_stack_end = mark_stack_->End();
Mathieu Chartier720ef762013-08-17 14:46:54 -0700835 const size_t mark_stack_size = mark_stack_end - mark_stack_begin;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700836 // Estimated number of work tasks we will create.
837 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
838 DCHECK_NE(mark_stack_tasks, 0U);
839 const size_t mark_stack_delta = std::min(CardScanTask::kMaxSize / 2,
840 mark_stack_size / mark_stack_tasks + 1);
841 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700842 if (space->GetMarkBitmap() == nullptr) {
843 continue;
844 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700845 byte* card_begin = space->Begin();
846 byte* card_end = space->End();
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800847 // Align up the end address. For example, the image space's end
848 // may not be card-size-aligned.
849 card_end = AlignUp(card_end, accounting::CardTable::kCardSize);
850 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_begin));
851 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_end));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700852 // Calculate how many bytes of heap we will scan,
853 const size_t address_range = card_end - card_begin;
854 // Calculate how much address range each task gets.
855 const size_t card_delta = RoundUp(address_range / thread_count + 1,
856 accounting::CardTable::kCardSize);
857 // Create the worker tasks for this space.
858 while (card_begin != card_end) {
859 // Add a range of cards.
860 size_t addr_remaining = card_end - card_begin;
861 size_t card_increment = std::min(card_delta, addr_remaining);
862 // Take from the back of the mark stack.
863 size_t mark_stack_remaining = mark_stack_end - mark_stack_begin;
864 size_t mark_stack_increment = std::min(mark_stack_delta, mark_stack_remaining);
865 mark_stack_end -= mark_stack_increment;
866 mark_stack_->PopBackCount(static_cast<int32_t>(mark_stack_increment));
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700867 DCHECK_EQ(mark_stack_end, mark_stack_->End());
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700868 // Add the new task to the thread pool.
869 auto* task = new CardScanTask(thread_pool, this, space->GetMarkBitmap(), card_begin,
870 card_begin + card_increment, minimum_age,
871 mark_stack_increment, mark_stack_end);
872 thread_pool->AddTask(self, task);
873 card_begin += card_increment;
874 }
875 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700876
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800877 // Note: the card scan below may dirty new cards (and scan them)
878 // as a side effect when a Reference object is encountered and
879 // queued during the marking. See b/11465268.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700880 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700881 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700882 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700883 thread_pool->StopWorkers(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -0700884 timings_.EndSplit();
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700885 } else {
886 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700887 if (space->GetMarkBitmap() != nullptr) {
888 // Image spaces are handled properly since live == marked for them.
889 switch (space->GetGcRetentionPolicy()) {
890 case space::kGcRetentionPolicyNeverCollect:
891 timings_.StartSplit(paused ? "(Paused)ScanGrayImageSpaceObjects" :
892 "ScanGrayImageSpaceObjects");
893 break;
894 case space::kGcRetentionPolicyFullCollect:
895 timings_.StartSplit(paused ? "(Paused)ScanGrayZygoteSpaceObjects" :
896 "ScanGrayZygoteSpaceObjects");
897 break;
898 case space::kGcRetentionPolicyAlwaysCollect:
899 timings_.StartSplit(paused ? "(Paused)ScanGrayAllocSpaceObjects" :
900 "ScanGrayAllocSpaceObjects");
901 break;
902 }
903 ScanObjectVisitor visitor(this);
904 card_table->Scan(space->GetMarkBitmap(), space->Begin(), space->End(), visitor, minimum_age);
905 timings_.EndSplit();
906 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700907 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700908 }
909}
910
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700911class RecursiveMarkTask : public MarkStackTask<false> {
912 public:
913 RecursiveMarkTask(ThreadPool* thread_pool, MarkSweep* mark_sweep,
914 accounting::SpaceBitmap* bitmap, uintptr_t begin, uintptr_t end)
915 : MarkStackTask<false>(thread_pool, mark_sweep, 0, NULL),
916 bitmap_(bitmap),
917 begin_(begin),
918 end_(end) {
919 }
920
921 protected:
922 accounting::SpaceBitmap* const bitmap_;
923 const uintptr_t begin_;
924 const uintptr_t end_;
925
926 virtual void Finalize() {
927 delete this;
928 }
929
930 // Scans all of the objects
931 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
932 ScanObjectParallelVisitor visitor(this);
933 bitmap_->VisitMarkedRange(begin_, end_, visitor);
934 // Finish by emptying our local mark stack.
935 MarkStackTask::Run(self);
936 }
937};
938
Carl Shapiro58551df2011-07-24 03:09:51 -0700939// Populates the mark stack based on the set of marked objects and
940// recursively marks until the mark stack is emptied.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800941void MarkSweep::RecursiveMark() {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800942 TimingLogger::ScopedSplit split("RecursiveMark", &timings_);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800943 // RecursiveMark will build the lists of known instances of the Reference classes. See
944 // DelayReferenceReferent for details.
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700945 if (kUseRecursiveMark) {
946 const bool partial = GetGcType() == kGcTypePartial;
947 ScanObjectVisitor scan_visitor(this);
948 auto* self = Thread::Current();
949 ThreadPool* thread_pool = heap_->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700950 size_t thread_count = GetThreadCount(false);
951 const bool parallel = kParallelRecursiveMark && thread_count > 1;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700952 mark_stack_->Reset();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700953 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700954 if ((space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) ||
955 (!partial && space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect)) {
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700956 current_space_bitmap_ = space->GetMarkBitmap();
957 if (current_space_bitmap_ == nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700958 continue;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800959 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700960 if (parallel) {
961 // We will use the mark stack the future.
962 // CHECK(mark_stack_->IsEmpty());
963 // This function does not handle heap end increasing, so we must use the space end.
964 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
965 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
966 atomic_finger_ = static_cast<int32_t>(0xFFFFFFFF);
967
968 // Create a few worker tasks.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700969 const size_t n = thread_count * 2;
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700970 while (begin != end) {
971 uintptr_t start = begin;
972 uintptr_t delta = (end - begin) / n;
973 delta = RoundUp(delta, KB);
974 if (delta < 16 * KB) delta = end - begin;
975 begin += delta;
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700976 auto* task = new RecursiveMarkTask(thread_pool, this, current_space_bitmap_, start,
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700977 begin);
978 thread_pool->AddTask(self, task);
979 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700980 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700981 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700982 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700983 thread_pool->StopWorkers(self);
984 } else {
985 // This function does not handle heap end increasing, so we must use the space end.
986 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
987 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
Mathieu Chartier0e54cd02014-03-20 12:41:23 -0700988 current_space_bitmap_->VisitMarkedRange(begin, end, scan_visitor);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700989 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700990 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700991 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700992 }
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700993 ProcessMarkStack(false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700994}
995
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800996mirror::Object* MarkSweep::IsMarkedCallback(mirror::Object* object, void* arg) {
Mathieu Chartier5712d5d2013-09-18 17:59:36 -0700997 if (reinterpret_cast<MarkSweep*>(arg)->IsMarked(object)) {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700998 return object;
999 }
1000 return nullptr;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001001}
1002
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001003void MarkSweep::RecursiveMarkDirtyObjects(bool paused, byte minimum_age) {
1004 ScanGrayObjects(paused, minimum_age);
1005 ProcessMarkStack(paused);
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001006}
1007
Carl Shapiro58551df2011-07-24 03:09:51 -07001008void MarkSweep::ReMarkRoots() {
Mathieu Chartier893263b2014-03-04 11:07:42 -08001009 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001010 timings_.StartSplit("(Paused)ReMarkRoots");
Mathieu Chartier893263b2014-03-04 11:07:42 -08001011 Runtime::Current()->VisitRoots(
1012 MarkRootCallback, this, static_cast<VisitRootFlags>(kVisitRootFlagNewRoots |
1013 kVisitRootFlagStopLoggingNewRoots |
1014 kVisitRootFlagClearRootLog));
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001015 timings_.EndSplit();
Mathieu Chartier893263b2014-03-04 11:07:42 -08001016 if (kVerifyRoots) {
1017 timings_.StartSplit("(Paused)VerifyRoots");
1018 Runtime::Current()->VisitRoots(VerifyRootMarked, this);
1019 timings_.EndSplit();
1020 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001021}
1022
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001023void MarkSweep::SweepSystemWeaks() {
1024 Runtime* runtime = Runtime::Current();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001025 timings_.StartSplit("SweepSystemWeaks");
Mathieu Chartier39e32612013-11-12 16:28:05 -08001026 runtime->SweepSystemWeaks(IsMarkedCallback, this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001027 timings_.EndSplit();
Carl Shapiro58551df2011-07-24 03:09:51 -07001028}
1029
Mathieu Chartier6aa3df92013-09-17 15:17:28 -07001030mirror::Object* MarkSweep::VerifySystemWeakIsLiveCallback(Object* obj, void* arg) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001031 reinterpret_cast<MarkSweep*>(arg)->VerifyIsLive(obj);
1032 // We don't actually want to sweep the object, so lets return "marked"
Mathieu Chartier6aa3df92013-09-17 15:17:28 -07001033 return obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001034}
1035
1036void MarkSweep::VerifyIsLive(const Object* obj) {
1037 Heap* heap = GetHeap();
1038 if (!heap->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001039 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001040 if (!large_object_space->GetLiveObjects()->Test(obj)) {
1041 if (std::find(heap->allocation_stack_->Begin(), heap->allocation_stack_->End(), obj) ==
1042 heap->allocation_stack_->End()) {
1043 // Object not found!
1044 heap->DumpSpaces();
1045 LOG(FATAL) << "Found dead object " << obj;
1046 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001047 }
1048 }
1049}
1050
1051void MarkSweep::VerifySystemWeaks() {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -07001052 // Verify system weaks, uses a special object visitor which returns the input object.
1053 Runtime::Current()->SweepSystemWeaks(VerifySystemWeakIsLiveCallback, this);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001054}
1055
Mathieu Chartier0e4627e2012-10-23 16:13:36 -07001056class CheckpointMarkThreadRoots : public Closure {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001057 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001058 explicit CheckpointMarkThreadRoots(MarkSweep* mark_sweep) : mark_sweep_(mark_sweep) {}
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001059
1060 virtual void Run(Thread* thread) NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier3f966702013-09-04 16:50:05 -07001061 ATRACE_BEGIN("Marking thread roots");
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001062 // Note: self is not necessarily equal to thread since thread may be suspended.
1063 Thread* self = Thread::Current();
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001064 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
1065 << thread->GetState() << " thread " << thread << " self " << self;
Mathieu Chartierac86a7c2012-11-12 15:03:16 -08001066 thread->VisitRoots(MarkSweep::MarkRootParallelCallback, mark_sweep_);
Mathieu Chartier3f966702013-09-04 16:50:05 -07001067 ATRACE_END();
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001068 if (kUseThreadLocalAllocationStack) {
1069 thread->RevokeThreadLocalAllocationStack();
1070 }
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -07001071 if (kRevokeRosAllocThreadLocalBuffersAtCheckpoint) {
1072 mark_sweep_->GetHeap()->RevokeRosAllocThreadLocalBuffers(thread);
1073 }
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001074 mark_sweep_->GetBarrier().Pass(self);
1075 }
1076
1077 private:
1078 MarkSweep* mark_sweep_;
1079};
1080
Ian Rogers1d54e732013-05-02 21:10:01 -07001081void MarkSweep::MarkRootsCheckpoint(Thread* self) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001082 CheckpointMarkThreadRoots check_point(this);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001083 timings_.StartSplit("MarkRootsCheckpoint");
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001084 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers1d54e732013-05-02 21:10:01 -07001085 // Request the check point is run on all threads returning a count of the threads that must
1086 // run through the barrier including self.
1087 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
1088 // Release locks then wait for all mutator threads to pass the barrier.
1089 // TODO: optimize to not release locks when there are no threads to wait for.
1090 Locks::heap_bitmap_lock_->ExclusiveUnlock(self);
1091 Locks::mutator_lock_->SharedUnlock(self);
1092 ThreadState old_state = self->SetState(kWaitingForCheckPointsToRun);
1093 CHECK_EQ(old_state, kWaitingPerformingGc);
1094 gc_barrier_->Increment(self, barrier_count);
1095 self->SetState(kWaitingPerformingGc);
1096 Locks::mutator_lock_->SharedLock(self);
1097 Locks::heap_bitmap_lock_->ExclusiveLock(self);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001098 timings_.EndSplit();
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001099}
1100
Ian Rogers1d54e732013-05-02 21:10:01 -07001101void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001102 timings_.StartSplit("SweepArray");
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001103 Thread* self = Thread::Current();
1104 mirror::Object* chunk_free_buffer[kSweepArrayChunkFreeSize];
1105 size_t chunk_free_pos = 0;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001106 size_t freed_bytes = 0;
1107 size_t freed_large_object_bytes = 0;
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001108 size_t freed_objects = 0;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001109 size_t freed_large_objects = 0;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001110 // How many objects are left in the array, modified after each space is swept.
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001111 Object** objects = const_cast<Object**>(allocations->Begin());
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001112 size_t count = allocations->Size();
1113 // Change the order to ensure that the non-moving space last swept as an optimization.
1114 std::vector<space::ContinuousSpace*> sweep_spaces;
1115 space::ContinuousSpace* non_moving_space = nullptr;
1116 for (space::ContinuousSpace* space : heap_->GetContinuousSpaces()) {
Mathieu Chartier8d562102014-03-12 17:42:10 -07001117 if (space->IsAllocSpace() && !immune_region_.ContainsSpace(space) &&
1118 space->GetLiveBitmap() != nullptr) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001119 if (space == heap_->GetNonMovingSpace()) {
1120 non_moving_space = space;
1121 } else {
1122 sweep_spaces.push_back(space);
1123 }
1124 }
1125 }
1126 // Unlikely to sweep a significant amount of non_movable objects, so we do these after the after
1127 // the other alloc spaces as an optimization.
1128 if (non_moving_space != nullptr) {
1129 sweep_spaces.push_back(non_moving_space);
1130 }
1131 // Start by sweeping the continuous spaces.
1132 for (space::ContinuousSpace* space : sweep_spaces) {
1133 space::AllocSpace* alloc_space = space->AsAllocSpace();
1134 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
1135 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
1136 if (swap_bitmaps) {
1137 std::swap(live_bitmap, mark_bitmap);
1138 }
1139 Object** out = objects;
1140 for (size_t i = 0; i < count; ++i) {
1141 Object* obj = objects[i];
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001142 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1143 continue;
1144 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001145 if (space->HasAddress(obj)) {
1146 // This object is in the space, remove it from the array and add it to the sweep buffer
1147 // if needed.
1148 if (!mark_bitmap->Test(obj)) {
1149 if (chunk_free_pos >= kSweepArrayChunkFreeSize) {
1150 timings_.StartSplit("FreeList");
1151 freed_objects += chunk_free_pos;
1152 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1153 timings_.EndSplit();
1154 chunk_free_pos = 0;
1155 }
1156 chunk_free_buffer[chunk_free_pos++] = obj;
1157 }
1158 } else {
1159 *(out++) = obj;
1160 }
1161 }
1162 if (chunk_free_pos > 0) {
1163 timings_.StartSplit("FreeList");
1164 freed_objects += chunk_free_pos;
1165 freed_bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1166 timings_.EndSplit();
1167 chunk_free_pos = 0;
1168 }
1169 // All of the references which space contained are no longer in the allocation stack, update
1170 // the count.
1171 count = out - objects;
1172 }
1173 // Handle the large object space.
1174 space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -08001175 accounting::ObjectSet* large_live_objects = large_object_space->GetLiveObjects();
1176 accounting::ObjectSet* large_mark_objects = large_object_space->GetMarkObjects();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001177 if (swap_bitmaps) {
1178 std::swap(large_live_objects, large_mark_objects);
1179 }
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001180 for (size_t i = 0; i < count; ++i) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001181 Object* obj = objects[i];
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001182 // Handle large objects.
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -08001183 if (kUseThreadLocalAllocationStack && obj == nullptr) {
1184 continue;
1185 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001186 if (!large_mark_objects->Test(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001187 ++freed_large_objects;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001188 freed_large_object_bytes += large_object_space->Free(self, obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001189 }
1190 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001191 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001192
Hiroshi Yamauchib22a4512013-08-13 15:03:22 -07001193 timings_.StartSplit("RecordFree");
Mathieu Chartier40e978b2012-09-07 11:38:36 -07001194 VLOG(heap) << "Freed " << freed_objects << "/" << count
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001195 << " objects with size " << PrettySize(freed_bytes);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001196 heap_->RecordFree(freed_objects + freed_large_objects, freed_bytes + freed_large_object_bytes);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001197 freed_objects_.FetchAndAdd(freed_objects);
1198 freed_large_objects_.FetchAndAdd(freed_large_objects);
1199 freed_bytes_.FetchAndAdd(freed_bytes);
1200 freed_large_object_bytes_.FetchAndAdd(freed_large_object_bytes);
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001201 timings_.EndSplit();
Ian Rogers1d54e732013-05-02 21:10:01 -07001202
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001203 timings_.StartSplit("ResetStack");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001204 allocations->Reset();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001205 timings_.EndSplit();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001206}
1207
Ian Rogers1d54e732013-05-02 21:10:01 -07001208void MarkSweep::Sweep(bool swap_bitmaps) {
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001209 DCHECK(mark_stack_->IsEmpty());
Ian Rogers5fe9af72013-11-14 00:17:20 -08001210 TimingLogger::ScopedSplit("Sweep", &timings_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001211 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001212 if (space->IsContinuousMemMapAllocSpace()) {
1213 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
Mathieu Chartierec050072014-01-07 16:00:07 -08001214 TimingLogger::ScopedSplit split(
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001215 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepMallocSpace", &timings_);
Mathieu Chartierec050072014-01-07 16:00:07 -08001216 size_t freed_objects = 0;
1217 size_t freed_bytes = 0;
Mathieu Chartiera1602f22014-01-13 17:19:19 -08001218 alloc_space->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Mathieu Chartierec050072014-01-07 16:00:07 -08001219 heap_->RecordFree(freed_objects, freed_bytes);
1220 freed_objects_.FetchAndAdd(freed_objects);
1221 freed_bytes_.FetchAndAdd(freed_bytes);
Carl Shapiro58551df2011-07-24 03:09:51 -07001222 }
1223 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001224 SweepLargeObjects(swap_bitmaps);
Carl Shapiro58551df2011-07-24 03:09:51 -07001225}
1226
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001227void MarkSweep::SweepLargeObjects(bool swap_bitmaps) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001228 TimingLogger::ScopedSplit("SweepLargeObjects", &timings_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001229 size_t freed_objects = 0;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001230 size_t freed_bytes = 0;
Mathieu Chartierdb7f37d2014-01-10 11:09:06 -08001231 GetHeap()->GetLargeObjectsSpace()->Sweep(swap_bitmaps, &freed_objects, &freed_bytes);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001232 freed_large_objects_.FetchAndAdd(freed_objects);
1233 freed_large_object_bytes_.FetchAndAdd(freed_bytes);
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001234 GetHeap()->RecordFree(freed_objects, freed_bytes);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001235}
1236
Mathieu Chartier407f7022014-02-18 14:37:05 -08001237// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
1238// marked, put it on the appropriate list in the heap for later processing.
1239void MarkSweep::DelayReferenceReferent(mirror::Class* klass, mirror::Reference* ref) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001240 DCHECK(klass != nullptr);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001241 if (kCountJavaLangRefs) {
1242 ++reference_count_;
1243 }
Mathieu Chartier407f7022014-02-18 14:37:05 -08001244 heap_->DelayReferenceReferent(klass, ref, IsMarkedCallback, this);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001245}
1246
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001247class MarkObjectVisitor {
1248 public:
Mathieu Chartier407f7022014-02-18 14:37:05 -08001249 explicit MarkObjectVisitor(MarkSweep* const mark_sweep) ALWAYS_INLINE : mark_sweep_(mark_sweep) {
1250 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001251
Mathieu Chartier407f7022014-02-18 14:37:05 -08001252 void operator()(Object* obj, MemberOffset offset, bool /* is_static */) const
1253 ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1254 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001255 if (kCheckLocks) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001256 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
1257 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
1258 }
Mathieu Chartier407f7022014-02-18 14:37:05 -08001259 mark_sweep_->MarkObject(obj->GetFieldObject<mirror::Object>(offset, false));
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001260 }
1261
1262 private:
1263 MarkSweep* const mark_sweep_;
1264};
1265
Carl Shapiro69759ea2011-07-21 18:13:35 -07001266// Scans an object reference. Determines the type of the reference
1267// and dispatches to a specialized scanning routine.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001268void MarkSweep::ScanObject(Object* obj) {
Mathieu Chartier407f7022014-02-18 14:37:05 -08001269 MarkObjectVisitor mark_visitor(this);
1270 DelayReferenceReferentVisitor ref_visitor(this);
1271 ScanObjectVisit(obj, mark_visitor, ref_visitor);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001272}
1273
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001274void MarkSweep::ProcessMarkStackPausedCallback(void* arg) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001275 reinterpret_cast<MarkSweep*>(arg)->ProcessMarkStack(true);
1276}
1277
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001278void MarkSweep::ProcessMarkStackParallel(size_t thread_count) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001279 Thread* self = Thread::Current();
1280 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001281 const size_t chunk_size = std::min(mark_stack_->Size() / thread_count + 1,
1282 static_cast<size_t>(MarkStackTask<false>::kMaxSize));
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001283 CHECK_GT(chunk_size, 0U);
1284 // Split the current mark stack up into work tasks.
1285 for (mirror::Object **it = mark_stack_->Begin(), **end = mark_stack_->End(); it < end; ) {
1286 const size_t delta = std::min(static_cast<size_t>(end - it), chunk_size);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001287 thread_pool->AddTask(self, new MarkStackTask<false>(thread_pool, this, delta, it));
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001288 it += delta;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001289 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001290 thread_pool->SetMaxActiveWorkers(thread_count - 1);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001291 thread_pool->StartWorkers(self);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001292 thread_pool->Wait(self, true, true);
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001293 thread_pool->StopWorkers(self);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001294 mark_stack_->Reset();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001295 CHECK_EQ(work_chunks_created_, work_chunks_deleted_) << " some of the work chunks were leaked";
Carl Shapiro69759ea2011-07-21 18:13:35 -07001296}
1297
Ian Rogers5d76c432011-10-31 21:42:49 -07001298// Scan anything that's on the mark stack.
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001299void MarkSweep::ProcessMarkStack(bool paused) {
Mathieu Chartier3bb57c72014-02-18 11:38:45 -08001300 timings_.StartSplit(paused ? "(Paused)ProcessMarkStack" : "ProcessMarkStack");
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001301 size_t thread_count = GetThreadCount(paused);
1302 if (kParallelProcessMarkStack && thread_count > 1 &&
1303 mark_stack_->Size() >= kMinimumParallelMarkStackSize) {
1304 ProcessMarkStackParallel(thread_count);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001305 } else {
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001306 // TODO: Tune this.
1307 static const size_t kFifoSize = 4;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001308 BoundedFifoPowerOfTwo<Object*, kFifoSize> prefetch_fifo;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001309 for (;;) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001310 Object* obj = NULL;
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001311 if (kUseMarkStackPrefetch) {
1312 while (!mark_stack_->IsEmpty() && prefetch_fifo.size() < kFifoSize) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001313 Object* obj = mark_stack_->PopBack();
Mathieu Chartier94c32c52013-08-09 11:14:04 -07001314 DCHECK(obj != NULL);
1315 __builtin_prefetch(obj);
1316 prefetch_fifo.push_back(obj);
1317 }
1318 if (prefetch_fifo.empty()) {
1319 break;
1320 }
1321 obj = prefetch_fifo.front();
1322 prefetch_fifo.pop_front();
1323 } else {
1324 if (mark_stack_->IsEmpty()) {
1325 break;
1326 }
1327 obj = mark_stack_->PopBack();
1328 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001329 DCHECK(obj != NULL);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001330 ScanObject(obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001331 }
1332 }
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001333 timings_.EndSplit();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001334}
1335
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001336inline bool MarkSweep::IsMarked(const Object* object) const
1337 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Mathieu Chartier8d562102014-03-12 17:42:10 -07001338 if (immune_region_.ContainsObject(object)) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001339 return true;
1340 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001341 if (current_space_bitmap_->HasAddress(object)) {
1342 return current_space_bitmap_->Test(object);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001343 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001344 return mark_bitmap_->Test(object);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001345}
1346
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001347void MarkSweep::FinishPhase() {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001348 TimingLogger::ScopedSplit split("FinishPhase", &timings_);
Anwar Ghuloum46543222013-08-12 09:28:42 -07001349 // Can't enqueue references if we hold the mutator lock.
Ian Rogers1d54e732013-05-02 21:10:01 -07001350 Heap* heap = GetHeap();
Anwar Ghuloum46543222013-08-12 09:28:42 -07001351 timings_.NewSplit("PostGcVerification");
Ian Rogers1d54e732013-05-02 21:10:01 -07001352 heap->PostGcVerification(this);
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001353 // Update the cumulative statistics.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001354 total_freed_objects_ += GetFreedObjects() + GetFreedLargeObjects();
1355 total_freed_bytes_ += GetFreedBytes() + GetFreedLargeObjectBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001356 // Ensure that the mark stack is empty.
1357 CHECK(mark_stack_->IsEmpty());
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001358 if (kCountScannedTypes) {
1359 VLOG(gc) << "MarkSweep scanned classes=" << class_count_ << " arrays=" << array_count_
1360 << " other=" << other_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001361 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001362 if (kCountTasks) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001363 VLOG(gc) << "Total number of work chunks allocated: " << work_chunks_created_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001364 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001365 if (kMeasureOverhead) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001366 VLOG(gc) << "Overhead time " << PrettyDuration(overhead_time_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001367 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001368 if (kProfileLargeObjects) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001369 VLOG(gc) << "Large objects tested " << large_object_test_ << " marked " << large_object_mark_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001370 }
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001371 if (kCountJavaLangRefs) {
1372 VLOG(gc) << "References scanned " << reference_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001373 }
Mathieu Chartier0e54cd02014-03-20 12:41:23 -07001374 if (kCountMarkedObjects) {
1375 VLOG(gc) << "Marked: null=" << mark_null_count_ << " immune=" << mark_immune_count_
1376 << " fastpath=" << mark_fastpath_count_ << " slowpath=" << mark_slowpath_count_;
1377 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001378 // Update the cumulative loggers.
1379 cumulative_timings_.Start();
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001380 cumulative_timings_.AddLogger(timings_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001381 cumulative_timings_.End();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001382 // Clear all of the spaces' mark bitmaps.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001383 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001384 accounting::SpaceBitmap* bitmap = space->GetMarkBitmap();
1385 if (bitmap != nullptr &&
1386 space->GetGcRetentionPolicy() != space::kGcRetentionPolicyNeverCollect) {
1387 bitmap->Clear();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001388 }
1389 }
Mathieu Chartier5301cd22012-05-31 12:11:36 -07001390 mark_stack_->Reset();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001391 // Reset the marked large objects.
Ian Rogers1d54e732013-05-02 21:10:01 -07001392 space::LargeObjectSpace* large_objects = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001393 large_objects->GetMarkObjects()->Clear();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001394}
1395
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -07001396void MarkSweep::RevokeAllThreadLocalBuffers() {
1397 if (kRevokeRosAllocThreadLocalBuffersAtCheckpoint && IsConcurrent()) {
1398 // If concurrent, rosalloc thread-local buffers are revoked at the
1399 // thread checkpoint. Bump pointer space thread-local buffers must
1400 // not be in use.
1401 GetHeap()->AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked();
1402 } else {
1403 timings_.StartSplit("(Paused)RevokeAllThreadLocalBuffers");
1404 GetHeap()->RevokeAllThreadLocalBuffers();
1405 timings_.EndSplit();
1406 }
1407}
1408
Ian Rogers1d54e732013-05-02 21:10:01 -07001409} // namespace collector
1410} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001411} // namespace art