blob: 81d5e170a251d19ed555d7ee0b42c7b492dddf5c [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 Chartier858f1c52012-10-17 17:45:55 -070024#include "barrier.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"
Mathieu Chartier357e9be2012-08-01 11:00:14 -070028#include "card_table.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "card_table-inl.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070030#include "heap.h"
Elliott Hughes410c0c82011-09-01 17:58:25 -070031#include "indirect_reference_table.h"
32#include "intern_table.h"
Ian Rogers81d425b2012-09-27 16:03:43 -070033#include "jni_internal.h"
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070034#include "large_object_space.h"
Elliott Hughesc33a32b2011-10-11 18:18:07 -070035#include "monitor.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mark_sweep-inl.h"
37#include "mirror/class-inl.h"
38#include "mirror/class_loader.h"
39#include "mirror/dex_cache.h"
40#include "mirror/field.h"
41#include "mirror/field-inl.h"
42#include "mirror/object-inl.h"
43#include "mirror/object_array.h"
44#include "mirror/object_array-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070045#include "runtime.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070046#include "space.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "space_bitmap-inl.h"
Elliott Hughes307f75d2011-10-12 18:04:40 -070048#include "timing_logger.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070049#include "thread.h"
Mathieu Chartier6f1c9492012-10-15 12:08:41 -070050#include "thread_list.h"
Ian Rogers08254272012-10-23 17:49:23 -070051#include "verifier/method_verifier.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070052
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053using namespace art::mirror;
54
Carl Shapiro69759ea2011-07-21 18:13:35 -070055namespace art {
56
Mathieu Chartier02b6a782012-10-26 13:51:26 -070057// Performance options.
58static const bool kParallelMarkStack = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -080059static const bool kDisableFinger = kParallelMarkStack;
Mathieu Chartier858f1c52012-10-17 17:45:55 -070060static const bool kUseMarkStackPrefetch = true;
61
Mathieu Chartier02b6a782012-10-26 13:51:26 -070062// Profiling and information flags.
63static const bool kCountClassesMarked = false;
64static const bool kProfileLargeObjects = false;
65static const bool kMeasureOverhead = false;
66static const bool kCountTasks = false;
Mathieu Chartierd22d5482012-11-06 17:14:12 -080067static const bool kCountJavaLangRefs = false;
Mathieu Chartier02b6a782012-10-26 13:51:26 -070068
Mathieu Chartier357e9be2012-08-01 11:00:14 -070069class SetFingerVisitor {
70 public:
71 SetFingerVisitor(MarkSweep* const mark_sweep) : mark_sweep_(mark_sweep) {
72
73 }
74
75 void operator ()(void* finger) const {
76 mark_sweep_->SetFinger(reinterpret_cast<Object*>(finger));
77 }
78
79 private:
80 MarkSweep* const mark_sweep_;
81};
82
Mathieu Chartier2b82db42012-11-14 17:29:05 -080083std::string MarkSweep::GetName() const {
84 std::ostringstream ss;
85 ss << (IsConcurrent() ? "Concurrent" : "") << GetGcType();
86 return ss.str();
Mathieu Chartier5301cd22012-05-31 12:11:36 -070087}
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080088
Mathieu Chartier2b82db42012-11-14 17:29:05 -080089void MarkSweep::ImmuneSpace(ContinuousSpace* space) {
90 // Bind live to mark bitmap if necessary.
91 if (space->GetLiveBitmap() != space->GetMarkBitmap()) {
92 BindLiveToMarkBitmap(space);
93 }
94
95 // Add the space to the immune region.
96 if (immune_begin_ == NULL) {
97 DCHECK(immune_end_ == NULL);
98 SetImmuneRange(reinterpret_cast<Object*>(space->Begin()),
99 reinterpret_cast<Object*>(space->End()));
100 } else {
101 const Spaces& spaces = GetHeap()->GetSpaces();
102 const ContinuousSpace* prev_space = NULL;
103 // Find out if the previous space is immune.
104 // TODO: C++0x
105 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
106 if (*it == space) {
107 break;
108 }
109 prev_space = *it;
110 }
111
112 // If previous space was immune, then extend the immune region.
113 if (prev_space != NULL &&
114 immune_begin_ <= reinterpret_cast<Object*>(prev_space->Begin()) &&
115 immune_end_ >= reinterpret_cast<Object*>(prev_space->End())) {
116 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
122// Bind the live bits to the mark bits of bitmaps based on the gc type.
123void MarkSweep::BindBitmaps() {
124 Spaces& spaces = GetHeap()->GetSpaces();
125 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
126
127 // Mark all of the spaces we never collect as immune.
128 for (Spaces::iterator it = spaces.begin(); it != spaces.end(); ++it) {
129 ContinuousSpace* space = *it;
130 if (space->GetGcRetentionPolicy() == kGcRetentionPolicyNeverCollect) {
131 ImmuneSpace(space);
132 }
133 }
134}
135
136MarkSweep::MarkSweep(Heap* heap, bool is_concurrent)
137 : GarbageCollector(heap),
138 gc_barrier_(new Barrier(0)),
139 large_object_lock_("large object lock"),
140 mark_stack_expand_lock_("mark stack expand lock"),
141 timings_(GetName(), true),
142 cumulative_timings_(GetName(), true),
143 is_concurrent_(is_concurrent) {
144 cumulative_timings_.SetName(GetName());
145 ResetCumulativeStatistics();
146}
147
148void MarkSweep::InitializePhase() {
149 mark_stack_ = GetHeap()->mark_stack_.get();
150 DCHECK(mark_stack_ != NULL);
151 finger_ = NULL;
152 SetImmuneRange(NULL, NULL);
153 soft_reference_list_ = NULL;
154 weak_reference_list_ = NULL;
155 finalizer_reference_list_ = NULL;
156 phantom_reference_list_ = NULL;
157 cleared_reference_list_ = NULL;
158 freed_bytes_ = 0;
159 freed_objects_ = 0;
160 class_count_ = 0;
161 array_count_ = 0;
162 other_count_ = 0;
163 large_object_test_ = 0;
164 large_object_mark_ = 0;
165 classes_marked_ = 0;
166 overhead_time_ = 0;
167 work_chunks_created_ = 0;
168 work_chunks_deleted_ = 0;
169 reference_count_ = 0;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700170 java_lang_Class_ = Class::GetJavaLangClass();
171 CHECK(java_lang_Class_ != NULL);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700172 FindDefaultMarkBitmap();
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700173 // Mark any concurrent roots as dirty since we need to scan them at least once during this GC.
174 Runtime::Current()->DirtyRoots();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800175 timings_.Reset();
176 // Do any pre GC verification.
177 heap_->PreGcVerification(this);
178}
179
180void MarkSweep::ProcessReferences(Thread* self) {
Mathieu Chartier8e56c7e2012-11-20 13:25:50 -0800181 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800182 ProcessReferences(&soft_reference_list_, clear_soft_references_, &weak_reference_list_,
183 &finalizer_reference_list_, &phantom_reference_list_);
184 timings_.AddSplit("ProcessReferences");
185}
186
187bool MarkSweep::HandleDirtyObjectsPhase() {
188 Thread* self = Thread::Current();
189 ObjectStack* allocation_stack = GetHeap()->allocation_stack_.get();
190 Locks::mutator_lock_->AssertExclusiveHeld(self);
191
192 {
193 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
194
195 // Re-mark root set.
196 ReMarkRoots();
197 timings_.AddSplit("ReMarkRoots");
198
199 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 RecursiveMarkDirtyObjects(CardTable::kCardDirty);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800201 }
202
203 ProcessReferences(self);
204
205 // Only need to do this if we have the card mark verification on, and only during concurrent GC.
206 if (GetHeap()->verify_missing_card_marks_) {
207 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
208 // This second sweep makes sure that we don't have any objects in the live stack which point to
209 // freed objects. These cause problems since their references may be previously freed objects.
210 SweepArray(timings_, allocation_stack, false);
211 } else {
212 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
213 // We only sweep over the live stack, and the live stack should not intersect with the
214 // allocation stack, so it should be safe to UnMark anything in the allocation stack as live.
215 heap_->UnMarkAllocStack(GetHeap()->alloc_space_->GetMarkBitmap(),
216 GetHeap()->large_object_space_->GetMarkObjects(),
217 allocation_stack);
218 timings_.AddSplit("UnMarkAllocStack");
219 }
220 return true;
221}
222
223bool MarkSweep::IsConcurrent() const {
224 return is_concurrent_;
225}
226
227void MarkSweep::MarkingPhase() {
228 Heap* heap = GetHeap();
229 Thread* self = Thread::Current();
230
231 BindBitmaps();
232 FindDefaultMarkBitmap();
233 timings_.AddSplit("BindBitmaps");
234
235 // Process dirty cards and add dirty cards to mod union tables.
236 heap->ProcessCards(timings_);
237
238 // Need to do this before the checkpoint since we don't want any threads to add references to
239 // the live stack during the recursive mark.
240 heap->SwapStacks();
241 timings_.AddSplit("SwapStacks");
242
243 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
244 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
245 // If we exclusively hold the mutator lock, all threads must be suspended.
246 MarkRoots();
247 timings_.AddSplit("MarkConcurrentRoots");
248 } else {
249 MarkRootsCheckpoint();
250 timings_.AddSplit("MarkRootsCheckpoint");
251 MarkNonThreadRoots();
252 timings_.AddSplit("MarkNonThreadRoots");
253 }
254 MarkConcurrentRoots();
255 timings_.AddSplit("MarkConcurrentRoots");
256
257 heap->UpdateAndMarkModUnion(this, timings_, GetGcType());
258 MarkReachableObjects();
259}
260
261void MarkSweep::MarkReachableObjects() {
262 // Mark everything allocated since the last as GC live so that we can sweep concurrently,
263 // knowing that new allocations won't be marked as live.
264 ObjectStack* live_stack = heap_->GetLiveStack();
265 heap_->MarkAllocStack(heap_->alloc_space_->GetLiveBitmap(),
266 heap_->large_object_space_->GetLiveObjects(),
267 live_stack);
268 live_stack->Reset();
269 timings_.AddSplit("MarkStackAsLive");
270 // Recursively mark all the non-image bits set in the mark bitmap.
271 RecursiveMark();
272 DisableFinger();
273}
274
275void MarkSweep::ReclaimPhase() {
276 Thread* self = Thread::Current();
277
278 if (!IsConcurrent()) {
279 ProcessReferences(self);
280 }
281
282 // Before freeing anything, lets verify the heap.
283 if (kIsDebugBuild) {
284 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
285 VerifyImageRoots();
286 }
287 heap_->PreSweepingGcVerification(this);
288
289 {
290 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
291
292 // Reclaim unmarked objects.
293 Sweep(timings_, false);
294
295 // Swap the live and mark bitmaps for each space which we modified space. This is an
296 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
297 // bitmaps.
298 SwapBitmaps();
299 timings_.AddSplit("SwapBitmaps");
300
301 // Unbind the live and mark bitmaps.
302 UnBindBitmaps();
303 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800304}
305
306void MarkSweep::SwapBitmaps() {
307 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
308 // these bitmaps. The bitmap swapping is an optimization so that we do not need to clear the live
309 // bits of dead objects in the live bitmap.
310 const GcType gc_type = GetGcType();
311 // TODO: C++0x
312 Spaces& spaces = heap_->GetSpaces();
313 for (Spaces::iterator it = spaces.begin(); it != spaces.end(); ++it) {
314 ContinuousSpace* space = *it;
315 // We never allocate into zygote spaces.
316 if (space->GetGcRetentionPolicy() == kGcRetentionPolicyAlwaysCollect ||
317 (gc_type == kGcTypeFull &&
318 space->GetGcRetentionPolicy() == kGcRetentionPolicyFullCollect)) {
319 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
320 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
321 if (live_bitmap != mark_bitmap) {
322 heap_->GetLiveBitmap()->ReplaceBitmap(live_bitmap, mark_bitmap);
323 heap_->GetMarkBitmap()->ReplaceBitmap(mark_bitmap, live_bitmap);
324 space->AsAllocSpace()->SwapBitmaps();
325 }
326 }
327 }
328 SwapLargeObjects();
329}
330
331void MarkSweep::SwapLargeObjects() {
332 LargeObjectSpace* large_object_space = heap_->GetLargeObjectsSpace();
333 large_object_space->SwapBitmaps();
334 heap_->GetLiveBitmap()->SetLargeObjects(large_object_space->GetLiveObjects());
335 heap_->GetMarkBitmap()->SetLargeObjects(large_object_space->GetMarkObjects());
336}
337
338void MarkSweep::SetImmuneRange(Object* begin, Object* end) {
339 immune_begin_ = begin;
340 immune_end_ = end;
Carl Shapiro58551df2011-07-24 03:09:51 -0700341}
342
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700343void MarkSweep::FindDefaultMarkBitmap() {
344 const Spaces& spaces = heap_->GetSpaces();
345 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
346 if ((*it)->GetGcRetentionPolicy() == kGcRetentionPolicyAlwaysCollect) {
347 current_mark_bitmap_ = (*it)->GetMarkBitmap();
348 CHECK(current_mark_bitmap_ != NULL);
349 return;
350 }
351 }
352 GetHeap()->DumpSpaces();
353 LOG(FATAL) << "Could not find a default mark bitmap";
354}
355
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800356void MarkSweep::ExpandMarkStack() {
357 // Rare case, no need to have Thread::Current be a parameter.
358 MutexLock mu(Thread::Current(), mark_stack_expand_lock_);
359 if (UNLIKELY(mark_stack_->Size() < mark_stack_->Capacity())) {
360 // Someone else acquired the lock and expanded the mark stack before us.
361 return;
362 }
363 std::vector<Object*> temp;
364 temp.insert(temp.begin(), mark_stack_->Begin(), mark_stack_->End());
365 mark_stack_->Resize(mark_stack_->Capacity() * 2);
366 for (size_t i = 0; i < temp.size(); ++i) {
367 mark_stack_->PushBack(temp[i]);
368 }
369}
370
371inline void MarkSweep::MarkObjectNonNullParallel(const Object* obj, bool check_finger) {
372 DCHECK(obj != NULL);
373 if (MarkObjectParallel(obj)) {
374 if (kDisableFinger || (check_finger && obj < finger_)) {
375 while (UNLIKELY(!mark_stack_->AtomicPushBack(const_cast<Object*>(obj)))) {
376 // Only reason a push can fail is that the mark stack is full.
377 ExpandMarkStack();
378 }
379 }
380 }
381}
382
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700383inline void MarkSweep::MarkObjectNonNull(const Object* obj, bool check_finger) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700384 DCHECK(obj != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700385
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700386 if (obj >= immune_begin_ && obj < immune_end_) {
387 DCHECK(IsMarked(obj));
Carl Shapiro69759ea2011-07-21 18:13:35 -0700388 return;
389 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700390
391 // Try to take advantage of locality of references within a space, failing this find the space
392 // the hard way.
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700393 SpaceBitmap* object_bitmap = current_mark_bitmap_;
394 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700395 SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetSpaceBitmap(obj);
396 if (new_bitmap != NULL) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700397 object_bitmap = new_bitmap;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700398 } else {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700399 MarkLargeObject(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700400 return;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700401 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700402 }
403
Carl Shapiro69759ea2011-07-21 18:13:35 -0700404 // This object was not previously marked.
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700405 if (!object_bitmap->Test(obj)) {
406 object_bitmap->Set(obj);
407 if (kDisableFinger || (check_finger && obj < finger_)) {
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700408 // Do we need to expand the mark stack?
409 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800410 ExpandMarkStack();
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700411 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700412 // The object must be pushed on to the mark stack.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700413 mark_stack_->PushBack(const_cast<Object*>(obj));
Carl Shapiro69759ea2011-07-21 18:13:35 -0700414 }
415 }
416}
417
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700418// Rare case, probably not worth inlining since it will increase instruction cache miss rate.
419bool MarkSweep::MarkLargeObject(const Object* obj) {
420 LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
421 SpaceSetMap* large_objects = large_object_space->GetMarkObjects();
422 if (kProfileLargeObjects) {
423 ++large_object_test_;
424 }
425 if (UNLIKELY(!large_objects->Test(obj))) {
426 if (!large_object_space->Contains(obj)) {
427 LOG(ERROR) << "Tried to mark " << obj << " not contained by any spaces";
428 LOG(ERROR) << "Attempting see if it's a bad root";
429 VerifyRoots();
430 LOG(FATAL) << "Can't mark bad root";
431 }
432 if (kProfileLargeObjects) {
433 ++large_object_mark_;
434 }
435 large_objects->Set(obj);
436 // Don't need to check finger since large objects never have any object references.
437 return true;
438 }
439 return false;
440}
441
442inline bool MarkSweep::MarkObjectParallel(const Object* obj) {
443 DCHECK(obj != NULL);
444
445 if (obj >= immune_begin_ && obj < immune_end_) {
446 DCHECK(IsMarked(obj));
447 return false;
448 }
449
450 // Try to take advantage of locality of references within a space, failing this find the space
451 // the hard way.
452 SpaceBitmap* object_bitmap = current_mark_bitmap_;
453 if (UNLIKELY(!object_bitmap->HasAddress(obj))) {
454 SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetSpaceBitmap(obj);
455 if (new_bitmap != NULL) {
456 object_bitmap = new_bitmap;
457 } else {
458 // TODO: Remove the Thread::Current here?
459 // TODO: Convert this to some kind of atomic marking?
460 MutexLock mu(Thread::Current(), large_object_lock_);
461 return MarkLargeObject(obj);
462 }
463 }
464
465 // Return true if the object was not previously marked.
466 return !object_bitmap->AtomicTestAndSet(obj);
467}
468
Carl Shapiro69759ea2011-07-21 18:13:35 -0700469// Used to mark objects when recursing. Recursion is done by moving
470// the finger across the bitmaps in address order and marking child
471// objects. Any newly-marked objects whose addresses are lower than
472// the finger won't be visited by the bitmap scan, so those objects
473// need to be added to the mark stack.
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700474void MarkSweep::MarkObject(const Object* obj) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700475 if (obj != NULL) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700476 MarkObjectNonNull(obj, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700477 }
478}
479
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800480void MarkSweep::MarkRoot(const Object* obj) {
481 if (obj != NULL) {
482 MarkObjectNonNull(obj, false);
483 }
484}
485
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800486void MarkSweep::MarkRootParallelCallback(const Object* root, void* arg) {
487 DCHECK(root != NULL);
488 DCHECK(arg != NULL);
489 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
490 mark_sweep->MarkObjectNonNullParallel(root, false);
491}
492
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700493void MarkSweep::MarkObjectCallback(const Object* root, void* arg) {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700494 DCHECK(root != NULL);
495 DCHECK(arg != NULL);
496 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700497 mark_sweep->MarkObjectNonNull(root, false);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700498}
499
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700500void MarkSweep::ReMarkObjectVisitor(const Object* root, void* arg) {
501 DCHECK(root != NULL);
502 DCHECK(arg != NULL);
503 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700504 mark_sweep->MarkObjectNonNull(root, true);
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700505}
506
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700507void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg,
Ian Rogers40e3bac2012-11-20 00:09:14 -0800508 const StackVisitor* visitor) {
509 reinterpret_cast<MarkSweep*>(arg)->VerifyRoot(root, vreg, visitor);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700510}
511
Ian Rogers40e3bac2012-11-20 00:09:14 -0800512void MarkSweep::VerifyRoot(const Object* root, size_t vreg, const StackVisitor* visitor) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700513 // See if the root is on any space bitmap.
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700514 if (GetHeap()->GetLiveBitmap()->GetSpaceBitmap(root) == NULL) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700515 LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartier4202b742012-10-17 17:51:25 -0700516 if (!large_object_space->Contains(root)) {
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700517 LOG(ERROR) << "Found invalid root: " << root;
Ian Rogers40e3bac2012-11-20 00:09:14 -0800518 if (visitor != NULL) {
519 LOG(ERROR) << visitor->DescribeLocation() << " in VReg: " << vreg;
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700520 }
521 }
522 }
523}
524
525void MarkSweep::VerifyRoots() {
526 Runtime::Current()->GetThreadList()->VerifyRoots(VerifyRootCallback, this);
527}
528
Carl Shapiro69759ea2011-07-21 18:13:35 -0700529// Marks all objects in the root set.
530void MarkSweep::MarkRoots() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700531 Runtime::Current()->VisitNonConcurrentRoots(MarkObjectCallback, this);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700532}
533
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700534void MarkSweep::MarkNonThreadRoots() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700535 Runtime::Current()->VisitNonThreadRoots(MarkObjectCallback, this);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700536}
537
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700538void MarkSweep::MarkConcurrentRoots() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700539 Runtime::Current()->VisitConcurrentRoots(MarkObjectCallback, this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700540}
541
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700542class CheckObjectVisitor {
543 public:
544 CheckObjectVisitor(MarkSweep* const mark_sweep)
545 : mark_sweep_(mark_sweep) {
546
547 }
548
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700549 void operator ()(const Object* obj, const Object* ref, MemberOffset offset, bool is_static) const
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800550 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800551 if (kDebugLocking) {
552 Locks::heap_bitmap_lock_->AssertSharedHeld(Thread::Current());
553 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700554 mark_sweep_->CheckReference(obj, ref, offset, is_static);
555 }
556
557 private:
558 MarkSweep* const mark_sweep_;
559};
560
561void MarkSweep::CheckObject(const Object* obj) {
562 DCHECK(obj != NULL);
563 CheckObjectVisitor visitor(this);
564 VisitObjectReferences(obj, visitor);
565}
566
567void MarkSweep::VerifyImageRootVisitor(Object* root, void* arg) {
568 DCHECK(root != NULL);
569 DCHECK(arg != NULL);
570 MarkSweep* mark_sweep = reinterpret_cast<MarkSweep*>(arg);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700571 DCHECK(mark_sweep->heap_->GetMarkBitmap()->Test(root));
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700572 mark_sweep->CheckObject(root);
573}
574
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700575void MarkSweep::BindLiveToMarkBitmap(ContinuousSpace* space) {
576 CHECK(space->IsAllocSpace());
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700577 DlMallocSpace* alloc_space = space->AsAllocSpace();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700578 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
579 SpaceBitmap* mark_bitmap = alloc_space->mark_bitmap_.release();
580 GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap, live_bitmap);
581 alloc_space->temp_bitmap_.reset(mark_bitmap);
582 alloc_space->mark_bitmap_.reset(live_bitmap);
583}
584
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700585class ScanObjectVisitor {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700586 public:
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700587 ScanObjectVisitor(MarkSweep* const mark_sweep) : mark_sweep_(mark_sweep) {
588
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700589 }
590
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800591 // TODO: Fixme when anotatalysis works with visitors.
592 void operator ()(const Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
593 if (kDebugLocking) {
594 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
595 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
596 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700597 mark_sweep_->ScanObject(obj);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700598 }
599
600 private:
601 MarkSweep* const mark_sweep_;
602};
603
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800604void MarkSweep::ScanGrayObjects(byte minimum_age) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700605 const Spaces& spaces = heap_->GetSpaces();
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700606 CardTable* card_table = heap_->GetCardTable();
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700607 ScanObjectVisitor visitor(this);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700608 SetFingerVisitor finger_visitor(this);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700609 // TODO: C++ 0x auto
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700610 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700611 ContinuousSpace* space = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700612 byte* begin = space->Begin();
613 byte* end = space->End();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700614 // Image spaces are handled properly since live == marked for them.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700615 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800616 card_table->Scan(mark_bitmap, begin, end, visitor, VoidFunctor(), minimum_age);
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700617 }
618}
619
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700620class CheckBitmapVisitor {
621 public:
622 CheckBitmapVisitor(MarkSweep* mark_sweep) : mark_sweep_(mark_sweep) {
623
624 }
625
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700626 void operator ()(const Object* obj) const
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800627 NO_THREAD_SAFETY_ANALYSIS {
628 if (kDebugLocking) {
629 Locks::heap_bitmap_lock_->AssertSharedHeld(Thread::Current());
630 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700631 DCHECK(obj != NULL);
632 mark_sweep_->CheckObject(obj);
633 }
634
635 private:
636 MarkSweep* mark_sweep_;
637};
638
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700639void MarkSweep::VerifyImageRoots() {
640 // Verify roots ensures that all the references inside the image space point
641 // objects which are either in the image space or marked objects in the alloc
642 // space
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700643 CheckBitmapVisitor visitor(this);
644 const Spaces& spaces = heap_->GetSpaces();
645 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700646 if ((*it)->IsImageSpace()) {
647 ImageSpace* space = (*it)->AsImageSpace();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700648 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
649 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
650 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700651 DCHECK(live_bitmap != NULL);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800652 live_bitmap->VisitMarkedRange(begin, end, visitor, VoidFunctor());
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700653 }
654 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700655}
656
Carl Shapiro58551df2011-07-24 03:09:51 -0700657// Populates the mark stack based on the set of marked objects and
658// recursively marks until the mark stack is emptied.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800659void MarkSweep::RecursiveMark() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700660 // RecursiveMark will build the lists of known instances of the Reference classes.
661 // See DelayReferenceReferent for details.
662 CHECK(soft_reference_list_ == NULL);
663 CHECK(weak_reference_list_ == NULL);
664 CHECK(finalizer_reference_list_ == NULL);
665 CHECK(phantom_reference_list_ == NULL);
666 CHECK(cleared_reference_list_ == NULL);
667
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800668 const bool partial = GetGcType() == kGcTypePartial;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700669 const Spaces& spaces = heap_->GetSpaces();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700670 SetFingerVisitor set_finger_visitor(this);
671 ScanObjectVisitor scan_visitor(this);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800672 if (!kDisableFinger) {
673 finger_ = NULL;
674 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
675 ContinuousSpace* space = *it;
676 if ((space->GetGcRetentionPolicy() == kGcRetentionPolicyAlwaysCollect) ||
677 (!partial && space->GetGcRetentionPolicy() == kGcRetentionPolicyFullCollect)
678 ) {
679 current_mark_bitmap_ = space->GetMarkBitmap();
680 if (current_mark_bitmap_ == NULL) {
681 GetHeap()->DumpSpaces();
682 LOG(FATAL) << "invalid bitmap";
683 }
684 // This function does not handle heap end increasing, so we must use the space end.
685 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
686 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
687 current_mark_bitmap_->VisitMarkedRange(begin, end, scan_visitor, set_finger_visitor);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700688 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700689 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700690 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800691 DisableFinger();
692 timings_.AddSplit("RecursiveMark");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700693 ProcessMarkStack();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800694 timings_.AddSplit("ProcessMarkStack");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700695}
696
697bool MarkSweep::IsMarkedCallback(const Object* object, void* arg) {
698 return
699 reinterpret_cast<MarkSweep*>(arg)->IsMarked(object) ||
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700700 !reinterpret_cast<MarkSweep*>(arg)->GetHeap()->GetLiveBitmap()->Test(object);
701}
702
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800703void MarkSweep::RecursiveMarkDirtyObjects(byte minimum_age) {
704 ScanGrayObjects(minimum_age);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800705 timings_.AddSplit("ScanGrayObjects");
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700706 ProcessMarkStack();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800707 timings_.AddSplit("ProcessMarkStack");
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700708}
709
Carl Shapiro58551df2011-07-24 03:09:51 -0700710void MarkSweep::ReMarkRoots() {
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700711 Runtime::Current()->VisitRoots(ReMarkObjectVisitor, this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700712}
713
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800714void MarkSweep::SweepJniWeakGlobals(IsMarkedTester is_marked, void* arg) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700715 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
Ian Rogers50b35e22012-10-04 10:09:15 -0700716 MutexLock mu(Thread::Current(), vm->weak_globals_lock);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700717 IndirectReferenceTable* table = &vm->weak_globals;
Mathieu Chartier654d3a22012-07-11 17:54:18 -0700718 typedef IndirectReferenceTable::iterator It; // TODO: C++0x auto
Elliott Hughes410c0c82011-09-01 17:58:25 -0700719 for (It it = table->begin(), end = table->end(); it != end; ++it) {
720 const Object** entry = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700721 if (!is_marked(*entry, arg)) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700722 *entry = kClearedJniWeakGlobal;
723 }
724 }
725}
726
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700727struct ArrayMarkedCheck {
728 ObjectStack* live_stack;
729 MarkSweep* mark_sweep;
730};
731
732// Either marked or not live.
733bool MarkSweep::IsMarkedArrayCallback(const Object* object, void* arg) {
734 ArrayMarkedCheck* array_check = reinterpret_cast<ArrayMarkedCheck*>(arg);
735 if (array_check->mark_sweep->IsMarked(object)) {
736 return true;
737 }
738 ObjectStack* live_stack = array_check->live_stack;
739 return std::find(live_stack->Begin(), live_stack->End(), object) == live_stack->End();
740}
741
742void MarkSweep::SweepSystemWeaksArray(ObjectStack* allocations) {
Mathieu Chartier46a23632012-08-07 18:44:40 -0700743 Runtime* runtime = Runtime::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700744 // The callbacks check
745 // !is_marked where is_marked is the callback but we want
746 // !IsMarked && IsLive
747 // So compute !(!IsMarked && IsLive) which is equal to (IsMarked || !IsLive).
748 // Or for swapped (IsLive || !IsMarked).
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700749
750 ArrayMarkedCheck visitor;
751 visitor.live_stack = allocations;
752 visitor.mark_sweep = this;
753 runtime->GetInternTable()->SweepInternTableWeaks(IsMarkedArrayCallback, &visitor);
754 runtime->GetMonitorList()->SweepMonitorList(IsMarkedArrayCallback, &visitor);
755 SweepJniWeakGlobals(IsMarkedArrayCallback, &visitor);
756}
757
758void MarkSweep::SweepSystemWeaks() {
759 Runtime* runtime = Runtime::Current();
760 // The callbacks check
761 // !is_marked where is_marked is the callback but we want
762 // !IsMarked && IsLive
763 // So compute !(!IsMarked && IsLive) which is equal to (IsMarked || !IsLive).
764 // Or for swapped (IsLive || !IsMarked).
765 runtime->GetInternTable()->SweepInternTableWeaks(IsMarkedCallback, this);
766 runtime->GetMonitorList()->SweepMonitorList(IsMarkedCallback, this);
767 SweepJniWeakGlobals(IsMarkedCallback, this);
Carl Shapiro58551df2011-07-24 03:09:51 -0700768}
769
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700770bool MarkSweep::VerifyIsLiveCallback(const Object* obj, void* arg) {
771 reinterpret_cast<MarkSweep*>(arg)->VerifyIsLive(obj);
772 // We don't actually want to sweep the object, so lets return "marked"
773 return true;
774}
775
776void MarkSweep::VerifyIsLive(const Object* obj) {
777 Heap* heap = GetHeap();
778 if (!heap->GetLiveBitmap()->Test(obj)) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700779 LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
780 if (!large_object_space->GetLiveObjects()->Test(obj)) {
781 if (std::find(heap->allocation_stack_->Begin(), heap->allocation_stack_->End(), obj) ==
782 heap->allocation_stack_->End()) {
783 // Object not found!
784 heap->DumpSpaces();
785 LOG(FATAL) << "Found dead object " << obj;
786 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700787 }
788 }
789}
790
791void MarkSweep::VerifySystemWeaks() {
792 Runtime* runtime = Runtime::Current();
793 // Verify system weaks, uses a special IsMarked callback which always returns true.
794 runtime->GetInternTable()->SweepInternTableWeaks(VerifyIsLiveCallback, this);
795 runtime->GetMonitorList()->SweepMonitorList(VerifyIsLiveCallback, this);
796
797 JavaVMExt* vm = runtime->GetJavaVM();
Ian Rogers50b35e22012-10-04 10:09:15 -0700798 MutexLock mu(Thread::Current(), vm->weak_globals_lock);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700799 IndirectReferenceTable* table = &vm->weak_globals;
800 typedef IndirectReferenceTable::iterator It; // TODO: C++0x auto
801 for (It it = table->begin(), end = table->end(); it != end; ++it) {
802 const Object** entry = *it;
803 VerifyIsLive(*entry);
804 }
805}
806
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800807struct SweepCallbackContext {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700808 MarkSweep* mark_sweep;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800809 AllocSpace* space;
Ian Rogers50b35e22012-10-04 10:09:15 -0700810 Thread* self;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800811};
812
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700813class CheckpointMarkThreadRoots : public Closure {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700814 public:
815 CheckpointMarkThreadRoots(MarkSweep* mark_sweep) : mark_sweep_(mark_sweep) {
816
817 }
818
819 virtual void Run(Thread* thread) NO_THREAD_SAFETY_ANALYSIS {
820 // Note: self is not necessarily equal to thread since thread may be suspended.
821 Thread* self = Thread::Current();
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800822 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
823 << thread->GetState() << " thread " << thread << " self " << self;
Mathieu Chartierac86a7c2012-11-12 15:03:16 -0800824 thread->VisitRoots(MarkSweep::MarkRootParallelCallback, mark_sweep_);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700825 mark_sweep_->GetBarrier().Pass(self);
826 }
827
828 private:
829 MarkSweep* mark_sweep_;
830};
831
832Barrier& MarkSweep::GetBarrier() {
833 return *gc_barrier_;
834}
835
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800836const TimingLogger& MarkSweep::GetTimings() const {
837 return timings_;
838}
839
840const CumulativeLogger& MarkSweep::GetCumulativeTimings() const {
841 return cumulative_timings_;
842}
843
844void MarkSweep::ResetCumulativeStatistics() {
845 cumulative_timings_.Reset();
846 total_time_ = 0;
847 total_paused_time_ = 0;
848 total_freed_objects_ = 0;
849 total_freed_bytes_ = 0;
850}
851
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700852void MarkSweep::MarkRootsCheckpoint() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800853 CheckpointMarkThreadRoots check_point(this);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700854 ThreadList* thread_list = Runtime::Current()->GetThreadList();
855 // Increment the count of the barrier. If all of the checkpoints have already been finished then
856 // will hit 0 and continue. Otherwise we are still waiting for some checkpoints, so the counter
857 // will go positive and we will unblock when it hits zero.
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800858 gc_barrier_->Increment(Thread::Current(), thread_list->RunCheckpoint(&check_point));
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700859}
860
Ian Rogers30fab402012-01-23 15:43:46 -0800861void MarkSweep::SweepCallback(size_t num_ptrs, Object** ptrs, void* arg) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800862 SweepCallbackContext* context = static_cast<SweepCallbackContext*>(arg);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700863 MarkSweep* mark_sweep = context->mark_sweep;
864 Heap* heap = mark_sweep->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800865 AllocSpace* space = context->space;
Ian Rogers50b35e22012-10-04 10:09:15 -0700866 Thread* self = context->self;
867 Locks::heap_bitmap_lock_->AssertExclusiveHeld(self);
Ian Rogers5d76c432011-10-31 21:42:49 -0700868 // Use a bulk free, that merges consecutive objects before freeing or free per object?
869 // Documentation suggests better free performance with merging, but this may be at the expensive
870 // of allocation.
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700871 size_t freed_objects = num_ptrs;
872 // AllocSpace::FreeList clears the value in ptrs, so perform after clearing the live bit
873 size_t freed_bytes = space->FreeList(self, num_ptrs, ptrs);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700874 heap->RecordFree(freed_objects, freed_bytes);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700875 mark_sweep->freed_objects_ += freed_objects;
876 mark_sweep->freed_bytes_ += freed_bytes;
Carl Shapiro58551df2011-07-24 03:09:51 -0700877}
878
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700879void MarkSweep::ZygoteSweepCallback(size_t num_ptrs, Object** ptrs, void* arg) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700880 SweepCallbackContext* context = static_cast<SweepCallbackContext*>(arg);
Ian Rogers50b35e22012-10-04 10:09:15 -0700881 Locks::heap_bitmap_lock_->AssertExclusiveHeld(context->self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700882 Heap* heap = context->mark_sweep->GetHeap();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700883 // We don't free any actual memory to avoid dirtying the shared zygote pages.
884 for (size_t i = 0; i < num_ptrs; ++i) {
885 Object* obj = static_cast<Object*>(ptrs[i]);
886 heap->GetLiveBitmap()->Clear(obj);
887 heap->GetCardTable()->MarkCard(obj);
888 }
889}
890
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700891void MarkSweep::SweepArray(TimingLogger& logger, ObjectStack* allocations, bool swap_bitmaps) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700892 size_t freed_bytes = 0;
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700893 DlMallocSpace* space = heap_->GetAllocSpace();
Elliott Hughes2da50362011-10-10 16:57:08 -0700894
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700895 // If we don't swap bitmaps then newly allocated Weaks go into the live bitmap but not mark
896 // bitmap, resulting in occasional frees of Weaks which are still in use.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700897 SweepSystemWeaksArray(allocations);
898 logger.AddSplit("SweepSystemWeaks");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700899
900 // Newly allocated objects MUST be in the alloc space and those are the only objects which we are
901 // going to free.
902 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
903 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700904 LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
905 SpaceSetMap* large_live_objects = large_object_space->GetLiveObjects();
906 SpaceSetMap* large_mark_objects = large_object_space->GetMarkObjects();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700907 if (swap_bitmaps) {
908 std::swap(live_bitmap, mark_bitmap);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700909 std::swap(large_live_objects, large_mark_objects);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700910 }
911
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700912 size_t freed_large_objects = 0;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700913 size_t count = allocations->Size();
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700914 Object** objects = const_cast<Object**>(allocations->Begin());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700915 Object** out = objects;
916
917 // Empty the allocation stack.
Ian Rogers50b35e22012-10-04 10:09:15 -0700918 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700919 for (size_t i = 0;i < count;++i) {
920 Object* obj = objects[i];
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700921 // There should only be objects in the AllocSpace/LargeObjectSpace in the allocation stack.
922 if (LIKELY(mark_bitmap->HasAddress(obj))) {
923 if (!mark_bitmap->Test(obj)) {
924 // Don't bother un-marking since we clear the mark bitmap anyways.
925 *(out++) = obj;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700926 }
927 } else if (!large_mark_objects->Test(obj)) {
928 ++freed_large_objects;
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700929 freed_bytes += large_object_space->Free(self, obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700930 }
931 }
932 logger.AddSplit("Process allocation stack");
933
934 size_t freed_objects = out - objects;
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700935 freed_bytes += space->FreeList(self, freed_objects, objects);
Mathieu Chartier40e978b2012-09-07 11:38:36 -0700936 VLOG(heap) << "Freed " << freed_objects << "/" << count
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700937 << " objects with size " << PrettySize(freed_bytes);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700938 heap_->RecordFree(freed_objects + freed_large_objects, freed_bytes);
Mathieu Chartier40e978b2012-09-07 11:38:36 -0700939 freed_objects_ += freed_objects;
940 freed_bytes_ += freed_bytes;
941 logger.AddSplit("FreeList");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700942 allocations->Reset();
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800943 logger.AddSplit("ResetStack");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700944}
945
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800946void MarkSweep::Sweep(TimingLogger& timings, bool swap_bitmaps) {
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700947 DCHECK(mark_stack_->IsEmpty());
948
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700949 // If we don't swap bitmaps then newly allocated Weaks go into the live bitmap but not mark
950 // bitmap, resulting in occasional frees of Weaks which are still in use.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700951 SweepSystemWeaks();
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700952 timings.AddSplit("SweepSystemWeaks");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700953
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800954 const bool partial = GetGcType() == kGcTypePartial;
Mathieu Chartier46a23632012-08-07 18:44:40 -0700955 const Spaces& spaces = heap_->GetSpaces();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800956 SweepCallbackContext scc;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700957 scc.mark_sweep = this;
Ian Rogers50b35e22012-10-04 10:09:15 -0700958 scc.self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700959 // TODO: C++0x auto
960 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700961 ContinuousSpace* space = *it;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700962 if (
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700963 space->GetGcRetentionPolicy() == kGcRetentionPolicyAlwaysCollect ||
964 (!partial && space->GetGcRetentionPolicy() == kGcRetentionPolicyFullCollect)
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700965 ) {
966 uintptr_t begin = reinterpret_cast<uintptr_t>(space->Begin());
967 uintptr_t end = reinterpret_cast<uintptr_t>(space->End());
968 scc.space = space->AsAllocSpace();
969 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
970 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700971 if (swap_bitmaps) {
972 std::swap(live_bitmap, mark_bitmap);
973 }
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700974 if (space->GetGcRetentionPolicy() == kGcRetentionPolicyAlwaysCollect) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700975 // Bitmaps are pre-swapped for optimization which enables sweeping with the heap unlocked.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700976 SpaceBitmap::SweepWalk(*live_bitmap, *mark_bitmap, begin, end,
977 &SweepCallback, reinterpret_cast<void*>(&scc));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700978 } else {
979 // Zygote sweep takes care of dirtying cards and clearing live bits, does not free actual memory.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700980 SpaceBitmap::SweepWalk(*live_bitmap, *mark_bitmap, begin, end,
981 &ZygoteSweepCallback, reinterpret_cast<void*>(&scc));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700982 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700983 }
984 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700985 timings.AddSplit("Sweep");
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800986
987 SweepLargeObjects(swap_bitmaps);
988 timings.AddSplit("SweepLargeObjects");
Carl Shapiro58551df2011-07-24 03:09:51 -0700989}
990
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700991void MarkSweep::SweepLargeObjects(bool swap_bitmaps) {
992 // Sweep large objects
993 LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700994 SpaceSetMap* large_live_objects = large_object_space->GetLiveObjects();
995 SpaceSetMap* large_mark_objects = large_object_space->GetMarkObjects();
996 if (swap_bitmaps) {
997 std::swap(large_live_objects, large_mark_objects);
998 }
999 SpaceSetMap::Objects& live_objects = large_live_objects->GetObjects();
1000 // O(n*log(n)) but hopefully there are not too many large objects.
1001 size_t freed_objects = 0;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001002 size_t freed_bytes = 0;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001003 // TODO: C++0x
Ian Rogers50b35e22012-10-04 10:09:15 -07001004 Thread* self = Thread::Current();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001005 for (SpaceSetMap::Objects::iterator it = live_objects.begin(); it != live_objects.end(); ++it) {
1006 if (!large_mark_objects->Test(*it)) {
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001007 freed_bytes += large_object_space->Free(self, const_cast<Object*>(*it));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001008 ++freed_objects;
1009 }
1010 }
1011 freed_objects_ += freed_objects;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001012 freed_bytes_ += freed_bytes;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001013 // Large objects don't count towards bytes_allocated.
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001014 GetHeap()->RecordFree(freed_objects, freed_bytes);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001015}
1016
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001017void MarkSweep::CheckReference(const Object* obj, const Object* ref, MemberOffset offset, bool is_static) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001018 const Spaces& spaces = heap_->GetSpaces();
1019 // TODO: C++0x auto
1020 for (Spaces::const_iterator cur = spaces.begin(); cur != spaces.end(); ++cur) {
1021 if ((*cur)->IsAllocSpace() && (*cur)->Contains(ref)) {
1022 DCHECK(IsMarked(obj));
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001023
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001024 bool is_marked = IsMarked(ref);
1025 if (!is_marked) {
1026 LOG(INFO) << **cur;
1027 LOG(WARNING) << (is_static ? "Static ref'" : "Instance ref'") << PrettyTypeOf(ref)
1028 << "' (" << reinterpret_cast<const void*>(ref) << ") in '" << PrettyTypeOf(obj)
1029 << "' (" << reinterpret_cast<const void*>(obj) << ") at offset "
1030 << reinterpret_cast<void*>(offset.Int32Value()) << " wasn't marked";
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001031
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001032 const Class* klass = is_static ? obj->AsClass() : obj->GetClass();
1033 DCHECK(klass != NULL);
1034 const ObjectArray<Field>* fields = is_static ? klass->GetSFields() : klass->GetIFields();
1035 DCHECK(fields != NULL);
1036 bool found = false;
1037 for (int32_t i = 0; i < fields->GetLength(); ++i) {
1038 const Field* cur = fields->Get(i);
1039 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1040 LOG(WARNING) << "Field referencing the alloc space was " << PrettyField(cur);
1041 found = true;
1042 break;
1043 }
1044 }
1045 if (!found) {
1046 LOG(WARNING) << "Could not find field in object alloc space with offset " << offset.Int32Value();
1047 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001048
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001049 bool obj_marked = heap_->GetCardTable()->IsDirty(obj);
1050 if (!obj_marked) {
1051 LOG(WARNING) << "Object '" << PrettyTypeOf(obj) << "' "
1052 << "(" << reinterpret_cast<const void*>(obj) << ") contains references to "
1053 << "the alloc space, but wasn't card marked";
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001054 }
1055 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001056 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001057 break;
Ian Rogers5d76c432011-10-31 21:42:49 -07001058 }
1059}
1060
Carl Shapiro69759ea2011-07-21 18:13:35 -07001061// Process the "referent" field in a java.lang.ref.Reference. If the
1062// referent has not yet been marked, put it on the appropriate list in
1063// the gcHeap for later processing.
1064void MarkSweep::DelayReferenceReferent(Object* obj) {
1065 DCHECK(obj != NULL);
Brian Carlstrom1f870082011-08-23 16:02:11 -07001066 Class* klass = obj->GetClass();
1067 DCHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001068 DCHECK(klass->IsReferenceClass());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001069 Object* pending = obj->GetFieldObject<Object*>(heap_->GetReferencePendingNextOffset(), false);
1070 Object* referent = heap_->GetReferenceReferent(obj);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001071 if (kCountJavaLangRefs) {
1072 ++reference_count_;
1073 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001074 if (pending == NULL && referent != NULL && !IsMarked(referent)) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07001075 Object** list = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001076 if (klass->IsSoftReferenceClass()) {
Carl Shapiro69759ea2011-07-21 18:13:35 -07001077 list = &soft_reference_list_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001078 } else if (klass->IsWeakReferenceClass()) {
Carl Shapiro69759ea2011-07-21 18:13:35 -07001079 list = &weak_reference_list_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001080 } else if (klass->IsFinalizerReferenceClass()) {
Carl Shapiro69759ea2011-07-21 18:13:35 -07001081 list = &finalizer_reference_list_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001082 } else if (klass->IsPhantomReferenceClass()) {
Carl Shapiro69759ea2011-07-21 18:13:35 -07001083 list = &phantom_reference_list_;
1084 }
Brian Carlstrom0796af02011-10-12 14:31:45 -07001085 DCHECK(list != NULL) << PrettyClass(klass) << " " << std::hex << klass->GetAccessFlags();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001086 // TODO: One lock per list?
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001087 heap_->EnqueuePendingReference(obj, list);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001088 }
1089}
1090
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001091void MarkSweep::ScanRoot(const Object* obj) {
1092 ScanObject(obj);
1093}
1094
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001095class MarkObjectVisitor {
1096 public:
1097 MarkObjectVisitor(MarkSweep* const mark_sweep) : mark_sweep_(mark_sweep) {
1098 }
1099
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001100 // TODO: Fixme when anotatalysis works with visitors.
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001101 void operator ()(const Object* /* obj */, const Object* ref, const MemberOffset& /* offset */,
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001102 bool /* is_static */) const
1103 NO_THREAD_SAFETY_ANALYSIS {
1104 if (kDebugLocking) {
1105 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
1106 Locks::heap_bitmap_lock_->AssertExclusiveHeld(Thread::Current());
1107 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001108 mark_sweep_->MarkObject(ref);
1109 }
1110
1111 private:
1112 MarkSweep* const mark_sweep_;
1113};
1114
Carl Shapiro69759ea2011-07-21 18:13:35 -07001115// Scans an object reference. Determines the type of the reference
1116// and dispatches to a specialized scanning routine.
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001117void MarkSweep::ScanObject(const Object* obj) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001118 MarkObjectVisitor visitor(this);
1119 ScanObjectVisit(obj, visitor);
1120}
1121
1122class MarkStackChunk : public Task {
1123public:
1124 MarkStackChunk(ThreadPool* thread_pool, MarkSweep* mark_sweep, Object** begin, Object** end)
1125 : mark_sweep_(mark_sweep),
1126 thread_pool_(thread_pool),
1127 index_(0),
1128 length_(0),
1129 output_(NULL) {
1130 length_ = end - begin;
1131 if (begin != end) {
1132 // Cost not significant since we only do this for the initial set of mark stack chunks.
1133 memcpy(data_, begin, length_ * sizeof(*begin));
1134 }
1135 if (kCountTasks) {
1136 ++mark_sweep_->work_chunks_created_;
1137 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001138 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001139
1140 ~MarkStackChunk() {
1141 DCHECK(output_ == NULL || output_->length_ == 0);
1142 DCHECK_GE(index_, length_);
1143 delete output_;
1144 if (kCountTasks) {
1145 ++mark_sweep_->work_chunks_deleted_;
1146 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001147 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001148
1149 MarkSweep* const mark_sweep_;
1150 ThreadPool* const thread_pool_;
1151 static const size_t max_size = 1 * KB;
1152 // Index of which object we are scanning. Only needs to be atomic if we are doing work stealing.
1153 size_t index_;
1154 // Input / output mark stack. We add newly marked references to data_ until length reaches
1155 // max_size. This is an optimization so that less tasks are created.
1156 // TODO: Investigate using a bounded buffer FIFO.
1157 Object* data_[max_size];
1158 // How many elements in data_ we need to scan.
1159 size_t length_;
1160 // Output block, newly marked references get added to the ouput block so that another thread can
1161 // scan them.
1162 MarkStackChunk* output_;
1163
1164 class MarkObjectParallelVisitor {
1165 public:
1166 MarkObjectParallelVisitor(MarkStackChunk* chunk_task) : chunk_task_(chunk_task) {
1167
1168 }
1169
1170 void operator ()(const Object* /* obj */, const Object* ref,
1171 const MemberOffset& /* offset */, bool /* is_static */) const {
1172 if (ref != NULL && chunk_task_->mark_sweep_->MarkObjectParallel(ref)) {
1173 chunk_task_->MarkStackPush(ref);
1174 }
1175 }
1176
1177 private:
1178 MarkStackChunk* const chunk_task_;
1179 };
1180
1181 // Push an object into the block.
1182 // Don't need to use atomic ++ since we only one thread is writing to an output block at any
1183 // given time.
1184 void Push(Object* obj) {
1185 data_[length_++] = obj;
1186 }
1187
1188 void MarkStackPush(const Object* obj) {
1189 if (static_cast<size_t>(length_) < max_size) {
1190 Push(const_cast<Object*>(obj));
1191 } else {
1192 // Internal buffer is full, push to a new buffer instead.
1193 if (UNLIKELY(output_ == NULL)) {
1194 AllocateOutputChunk();
1195 } else if (UNLIKELY(static_cast<size_t>(output_->length_) == max_size)) {
1196 // Output block is full, queue it up for processing and obtain a new block.
1197 EnqueueOutput();
1198 AllocateOutputChunk();
1199 }
1200 output_->Push(const_cast<Object*>(obj));
1201 }
1202 }
1203
1204 void ScanObject(Object* obj) {
1205 mark_sweep_->ScanObjectVisit(obj, MarkObjectParallelVisitor(this));
1206 }
1207
1208 void EnqueueOutput() {
1209 if (output_ != NULL) {
1210 uint64_t start = 0;
1211 if (kMeasureOverhead) {
1212 start = NanoTime();
1213 }
1214 thread_pool_->AddTask(Thread::Current(), output_);
1215 output_ = NULL;
1216 if (kMeasureOverhead) {
1217 mark_sweep_->overhead_time_ += NanoTime() - start;
1218 }
1219 }
1220 }
1221
1222 void AllocateOutputChunk() {
1223 uint64_t start = 0;
1224 if (kMeasureOverhead) {
1225 start = NanoTime();
1226 }
1227 output_ = new MarkStackChunk(thread_pool_, mark_sweep_, NULL, NULL);
1228 if (kMeasureOverhead) {
1229 mark_sweep_->overhead_time_ += NanoTime() - start;
1230 }
1231 }
1232
1233 void Finalize() {
1234 EnqueueOutput();
1235 delete this;
1236 }
1237
1238 // Scans all of the objects
1239 virtual void Run(Thread* self) {
1240 int index;
1241 while ((index = index_++) < length_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001242 if (kUseMarkStackPrefetch) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001243 static const size_t prefetch_look_ahead = 1;
1244 __builtin_prefetch(data_[std::min(index + prefetch_look_ahead, length_ - 1)]);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001245 }
1246 Object* obj = data_[index];
1247 DCHECK(obj != NULL);
1248 ScanObject(obj);
1249 }
1250 }
1251};
1252
1253void MarkSweep::ProcessMarkStackParallel() {
1254 CHECK(kDisableFinger) << "parallel mark stack processing cannot work when finger is enabled";
1255 Thread* self = Thread::Current();
1256 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
1257 // Split the current mark stack up into work tasks.
1258 const size_t num_threads = thread_pool->GetThreadCount();
1259 const size_t stack_size = mark_stack_->Size();
1260 const size_t chunk_size =
1261 std::min((stack_size + num_threads - 1) / num_threads,
1262 static_cast<size_t>(MarkStackChunk::max_size));
1263 size_t index = 0;
1264 for (size_t i = 0; i < num_threads || index < stack_size; ++i) {
1265 Object** begin = &mark_stack_->Begin()[std::min(stack_size, index)];
1266 Object** end = &mark_stack_->Begin()[std::min(stack_size, index + chunk_size)];
1267 index += chunk_size;
1268 thread_pool->AddTask(self, new MarkStackChunk(thread_pool, this, begin, end));
1269 }
1270 thread_pool->StartWorkers(self);
1271 mark_stack_->Reset();
1272 thread_pool->Wait(self, true);
1273 //LOG(INFO) << "Idle wait time " << PrettyDuration(thread_pool->GetWaitTime());
1274 CHECK_EQ(work_chunks_created_, work_chunks_deleted_) << " some of the work chunks were leaked";
Carl Shapiro69759ea2011-07-21 18:13:35 -07001275}
1276
Ian Rogers5d76c432011-10-31 21:42:49 -07001277// Scan anything that's on the mark stack.
Carl Shapiro69759ea2011-07-21 18:13:35 -07001278void MarkSweep::ProcessMarkStack() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001279 ThreadPool* thread_pool = GetHeap()->GetThreadPool();
1280 if (kParallelMarkStack && thread_pool != NULL && thread_pool->GetThreadCount() > 0) {
1281 ProcessMarkStackParallel();
1282 return;
1283 }
1284
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001285 if (kUseMarkStackPrefetch) {
1286 const size_t fifo_size = 4;
1287 const size_t fifo_mask = fifo_size - 1;
1288 const Object* fifo[fifo_size];
1289 for (size_t i = 0;i < fifo_size;++i) {
1290 fifo[i] = NULL;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001291 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001292 size_t fifo_pos = 0;
1293 size_t fifo_count = 0;
1294 for (;;) {
1295 const Object* obj = fifo[fifo_pos & fifo_mask];
1296 if (obj != NULL) {
1297 ScanObject(obj);
1298 fifo[fifo_pos & fifo_mask] = NULL;
1299 --fifo_count;
1300 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001301
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001302 if (!mark_stack_->IsEmpty()) {
1303 const Object* obj = mark_stack_->PopBack();
1304 DCHECK(obj != NULL);
1305 fifo[fifo_pos & fifo_mask] = obj;
1306 __builtin_prefetch(obj);
1307 fifo_count++;
1308 }
1309 fifo_pos++;
1310
1311 if (!fifo_count) {
1312 CHECK(mark_stack_->IsEmpty()) << mark_stack_->Size();
1313 break;
1314 }
1315 }
1316 } else {
1317 while (!mark_stack_->IsEmpty()) {
1318 const Object* obj = mark_stack_->PopBack();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001319 DCHECK(obj != NULL);
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001320 ScanObject(obj);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001321 }
1322 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001323}
1324
Carl Shapiro69759ea2011-07-21 18:13:35 -07001325// Walks the reference list marking any references subject to the
1326// reference clearing policy. References with a black referent are
1327// removed from the list. References with white referents biased
1328// toward saving are blackened and also removed from the list.
1329void MarkSweep::PreserveSomeSoftReferences(Object** list) {
1330 DCHECK(list != NULL);
1331 Object* clear = NULL;
1332 size_t counter = 0;
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001333
1334 DCHECK(mark_stack_->IsEmpty());
1335
Carl Shapiro69759ea2011-07-21 18:13:35 -07001336 while (*list != NULL) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001337 Object* ref = heap_->DequeuePendingReference(list);
1338 Object* referent = heap_->GetReferenceReferent(ref);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001339 if (referent == NULL) {
1340 // Referent was cleared by the user during marking.
1341 continue;
1342 }
1343 bool is_marked = IsMarked(referent);
1344 if (!is_marked && ((++counter) & 1)) {
1345 // Referent is white and biased toward saving, mark it.
1346 MarkObject(referent);
1347 is_marked = true;
1348 }
1349 if (!is_marked) {
1350 // Referent is white, queue it for clearing.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001351 heap_->EnqueuePendingReference(ref, &clear);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001352 }
1353 }
1354 *list = clear;
1355 // Restart the mark with the newly black references added to the
1356 // root set.
1357 ProcessMarkStack();
1358}
1359
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001360inline bool MarkSweep::IsMarked(const Object* object) const
1361 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
1362 if (object >= immune_begin_ && object < immune_end_) {
1363 return true;
1364 }
1365 DCHECK(current_mark_bitmap_ != NULL);
1366 if (current_mark_bitmap_->HasAddress(object)) {
1367 return current_mark_bitmap_->Test(object);
1368 }
1369 return heap_->GetMarkBitmap()->Test(object);
1370}
1371
1372
Carl Shapiro69759ea2011-07-21 18:13:35 -07001373// Unlink the reference list clearing references objects with white
1374// referents. Cleared references registered to a reference queue are
1375// scheduled for appending by the heap worker thread.
1376void MarkSweep::ClearWhiteReferences(Object** list) {
1377 DCHECK(list != NULL);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001378 while (*list != NULL) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001379 Object* ref = heap_->DequeuePendingReference(list);
1380 Object* referent = heap_->GetReferenceReferent(ref);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001381 if (referent != NULL && !IsMarked(referent)) {
1382 // Referent is white, clear it.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001383 heap_->ClearReferenceReferent(ref);
1384 if (heap_->IsEnqueuable(ref)) {
1385 heap_->EnqueueReference(ref, &cleared_reference_list_);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001386 }
1387 }
1388 }
1389 DCHECK(*list == NULL);
1390}
1391
1392// Enqueues finalizer references with white referents. White
1393// referents are blackened, moved to the zombie field, and the
1394// referent field is cleared.
1395void MarkSweep::EnqueueFinalizerReferences(Object** list) {
1396 DCHECK(list != NULL);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001397 MemberOffset zombie_offset = heap_->GetFinalizerReferenceZombieOffset();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001398 bool has_enqueued = false;
1399 while (*list != NULL) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001400 Object* ref = heap_->DequeuePendingReference(list);
1401 Object* referent = heap_->GetReferenceReferent(ref);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001402 if (referent != NULL && !IsMarked(referent)) {
1403 MarkObject(referent);
1404 // If the referent is non-null the reference must queuable.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001405 DCHECK(heap_->IsEnqueuable(ref));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001406 ref->SetFieldObject(zombie_offset, referent, false);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001407 heap_->ClearReferenceReferent(ref);
1408 heap_->EnqueueReference(ref, &cleared_reference_list_);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001409 has_enqueued = true;
1410 }
1411 }
1412 if (has_enqueued) {
1413 ProcessMarkStack();
1414 }
1415 DCHECK(*list == NULL);
1416}
1417
Carl Shapiro58551df2011-07-24 03:09:51 -07001418// Process reference class instances and schedule finalizations.
Carl Shapiro69759ea2011-07-21 18:13:35 -07001419void MarkSweep::ProcessReferences(Object** soft_references, bool clear_soft,
1420 Object** weak_references,
1421 Object** finalizer_references,
1422 Object** phantom_references) {
1423 DCHECK(soft_references != NULL);
1424 DCHECK(weak_references != NULL);
1425 DCHECK(finalizer_references != NULL);
1426 DCHECK(phantom_references != NULL);
1427
1428 // Unless we are in the zygote or required to clear soft references
1429 // with white references, preserve some white referents.
Ian Rogers2945e242012-06-03 14:45:16 -07001430 if (!clear_soft && !Runtime::Current()->IsZygote()) {
Carl Shapiro69759ea2011-07-21 18:13:35 -07001431 PreserveSomeSoftReferences(soft_references);
1432 }
1433
1434 // Clear all remaining soft and weak references with white
1435 // referents.
1436 ClearWhiteReferences(soft_references);
1437 ClearWhiteReferences(weak_references);
1438
1439 // Preserve all white objects with finalize methods and schedule
1440 // them for finalization.
1441 EnqueueFinalizerReferences(finalizer_references);
1442
1443 // Clear all f-reachable soft and weak references with white
1444 // referents.
1445 ClearWhiteReferences(soft_references);
1446 ClearWhiteReferences(weak_references);
1447
1448 // Clear all phantom references with white referents.
1449 ClearWhiteReferences(phantom_references);
1450
1451 // At this point all reference lists should be empty.
1452 DCHECK(*soft_references == NULL);
1453 DCHECK(*weak_references == NULL);
1454 DCHECK(*finalizer_references == NULL);
1455 DCHECK(*phantom_references == NULL);
1456}
1457
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001458void MarkSweep::UnBindBitmaps() {
1459 const Spaces& spaces = heap_->GetSpaces();
1460 // TODO: C++0x auto
1461 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
1462 Space* space = *it;
1463 if (space->IsAllocSpace()) {
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001464 DlMallocSpace* alloc_space = space->AsAllocSpace();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001465 if (alloc_space->temp_bitmap_.get() != NULL) {
1466 // At this point, the temp_bitmap holds our old mark bitmap.
1467 SpaceBitmap* new_bitmap = alloc_space->temp_bitmap_.release();
1468 GetHeap()->GetMarkBitmap()->ReplaceBitmap(alloc_space->mark_bitmap_.get(), new_bitmap);
1469 CHECK_EQ(alloc_space->mark_bitmap_.release(), alloc_space->live_bitmap_.get());
1470 alloc_space->mark_bitmap_.reset(new_bitmap);
1471 DCHECK(alloc_space->temp_bitmap_.get() == NULL);
1472 }
1473 }
1474 }
1475}
1476
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001477void MarkSweep::FinishPhase() {
1478 // Can't enqueue referneces if we hold the mutator lock.
1479 Object* cleared_references = GetClearedReferences();
1480 heap_->EnqueueClearedReferences(&cleared_references);
1481
1482 heap_->PostGcVerification(this);
1483
Mathieu Chartier65db8802012-11-20 12:36:46 -08001484 heap_->GrowForUtilization(GetDuration());
1485 timings_.AddSplit("GrowForUtilization");
1486
1487 heap_->RequestHeapTrim();
1488 timings_.AddSplit("RequestHeapTrim");
1489
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001490 // Update the cumulative statistics
1491 total_time_ += GetDuration();
1492 total_paused_time_ += std::accumulate(GetPauseTimes().begin(), GetPauseTimes().end(), 0,
1493 std::plus<uint64_t>());
1494 total_freed_objects_ += GetFreedObjects();
1495 total_freed_bytes_ += GetFreedBytes();
1496
1497 // Ensure that the mark stack is empty.
1498 CHECK(mark_stack_->IsEmpty());
1499
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001500 if (kCountScannedTypes) {
1501 VLOG(gc) << "MarkSweep scanned classes=" << class_count_ << " arrays=" << array_count_
1502 << " other=" << other_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001503 }
1504
1505 if (kCountTasks) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001506 VLOG(gc) << "Total number of work chunks allocated: " << work_chunks_created_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001507 }
1508
1509 if (kMeasureOverhead) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001510 VLOG(gc) << "Overhead time " << PrettyDuration(overhead_time_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001511 }
1512
1513 if (kProfileLargeObjects) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001514 VLOG(gc) << "Large objects tested " << large_object_test_ << " marked " << large_object_mark_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001515 }
1516
1517 if (kCountClassesMarked) {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001518 VLOG(gc) << "Classes marked " << classes_marked_;
1519 }
1520
1521 if (kCountJavaLangRefs) {
1522 VLOG(gc) << "References scanned " << reference_count_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001523 }
1524
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001525 // Update the cumulative loggers.
1526 cumulative_timings_.Start();
1527 cumulative_timings_.AddLogger(timings_);
1528 cumulative_timings_.End();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001529
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001530 // Clear all of the spaces' mark bitmaps.
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001531 const Spaces& spaces = heap_->GetSpaces();
1532 // TODO: C++0x auto
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001533 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001534 ContinuousSpace* space = *it;
1535 if (space->GetGcRetentionPolicy() != kGcRetentionPolicyNeverCollect) {
1536 space->GetMarkBitmap()->Clear();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001537 }
1538 }
Mathieu Chartier5301cd22012-05-31 12:11:36 -07001539 mark_stack_->Reset();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001540
1541 // Reset the marked large objects.
1542 LargeObjectSpace* large_objects = GetHeap()->GetLargeObjectsSpace();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001543 large_objects->GetMarkObjects()->Clear();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001544}
1545
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001546MarkSweep::~MarkSweep() {
1547
1548}
1549
Carl Shapiro69759ea2011-07-21 18:13:35 -07001550} // namespace art