blob: b0ba8b6874f641b8e08a6833dadbc4cd6ca5fd90 [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 "heap.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070018
Mathieu Chartier752a0e62013-06-27 11:03:27 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <cutils/trace.h>
Brian Carlstrom5643b782012-02-05 12:32:53 -080021
Brian Carlstrom58ae9412011-10-04 00:56:06 -070022#include <limits>
Carl Shapiro58551df2011-07-24 03:09:51 -070023#include <vector>
24
Elliott Hughes1aa246d2012-12-13 09:29:36 -080025#include "base/stl_util.h"
Mathieu Chartier987ccff2013-07-08 11:05:21 -070026#include "common_throws.h"
Ian Rogers48931882013-01-22 14:35:16 -080027#include "cutils/sched_policy.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070028#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/atomic_stack.h"
30#include "gc/accounting/card_table-inl.h"
31#include "gc/accounting/heap_bitmap-inl.h"
32#include "gc/accounting/mod_union_table-inl.h"
33#include "gc/accounting/space_bitmap-inl.h"
34#include "gc/collector/mark_sweep-inl.h"
35#include "gc/collector/partial_mark_sweep.h"
36#include "gc/collector/sticky_mark_sweep.h"
37#include "gc/space/image_space.h"
38#include "gc/space/large_object_space.h"
39#include "gc/space/space-inl.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070040#include "image.h"
Jeff Hao5d917302013-02-27 17:57:33 -080041#include "invoke_arg_array_builder.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/class-inl.h"
43#include "mirror/field-inl.h"
44#include "mirror/object.h"
45#include "mirror/object-inl.h"
46#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080047#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080048#include "os.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070049#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070051#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070052#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070053#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070054#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070055
56namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070057namespace gc {
Carl Shapiro69759ea2011-07-21 18:13:35 -070058
Ian Rogers1d54e732013-05-02 21:10:01 -070059// When to create a log message about a slow GC, 100ms.
Mathieu Chartier2b82db42012-11-14 17:29:05 -080060static const uint64_t kSlowGcThreshold = MsToNs(100);
Mathieu Chartier82353312013-07-18 10:47:51 -070061// When to create a log message about a long pause, 5ms.
Mathieu Chartier2b82db42012-11-14 17:29:05 -080062static const uint64_t kLongGcPauseThreshold = MsToNs(5);
Mathieu Chartier65db8802012-11-20 12:36:46 -080063static const bool kDumpGcPerformanceOnShutdown = false;
Ian Rogers1d54e732013-05-02 21:10:01 -070064// Minimum amount of remaining bytes before a concurrent GC is triggered.
65static const size_t kMinConcurrentRemainingBytes = 128 * KB;
Mathieu Chartier0051be62012-10-12 17:47:11 -070066const double Heap::kDefaultTargetUtilization = 0.5;
67
Mathieu Chartier0051be62012-10-12 17:47:11 -070068Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
69 double target_utilization, size_t capacity,
Mathieu Chartier63a54342013-07-23 13:17:59 -070070 const std::string& original_image_file_name, bool concurrent_gc, size_t num_gc_threads)
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080072 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070073 concurrent_gc_(concurrent_gc),
Mathieu Chartier63a54342013-07-23 13:17:59 -070074 num_gc_threads_(num_gc_threads),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070075 have_zygote_space_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -070076 reference_queue_lock_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080077 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -070078 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -070079 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -080080 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -070081 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -070082 max_allowed_footprint_(initial_size),
Mathieu Chartier987ccff2013-07-08 11:05:21 -070083 native_footprint_gc_watermark_(initial_size),
84 native_footprint_limit_(2 * initial_size),
Ian Rogers1d54e732013-05-02 21:10:01 -070085 concurrent_start_bytes_(concurrent_gc ? initial_size - (kMinConcurrentRemainingBytes)
86 : std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -070087 total_bytes_freed_ever_(0),
88 total_objects_freed_ever_(0),
Mathieu Chartier2fde5332012-09-14 14:51:54 -070089 large_object_threshold_(3 * kPageSize),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080090 num_bytes_allocated_(0),
Mathieu Chartier987ccff2013-07-08 11:05:21 -070091 native_bytes_allocated_(0),
Mathieu Chartier82353312013-07-18 10:47:51 -070092 process_state_(PROCESS_STATE_TOP),
Mathieu Chartier0a9dc052013-07-25 11:01:28 -070093 gc_memory_overhead_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -070094 verify_missing_card_marks_(false),
95 verify_system_weaks_(false),
96 verify_pre_gc_heap_(false),
97 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -070098 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070099 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700100 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700101 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800102 allocation_rate_(0),
Ian Rogers1d54e732013-05-02 21:10:01 -0700103 max_allocation_stack_size_(kDesiredHeapVerification > kNoHeapVerification? KB : MB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800104 reference_referent_offset_(0),
105 reference_queue_offset_(0),
106 reference_queueNext_offset_(0),
107 reference_pendingNext_offset_(0),
108 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700109 min_free_(min_free),
110 max_free_(max_free),
111 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700112 total_wait_time_(0),
113 measure_allocation_time_(false),
114 total_allocation_time_(0),
Ian Rogers04d7aa92013-03-16 14:29:17 -0700115 verify_object_mode_(kHeapVerificationNotPermitted) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800116 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800117 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700118 }
119
Ian Rogers1d54e732013-05-02 21:10:01 -0700120 live_bitmap_.reset(new accounting::HeapBitmap(this));
121 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700122
Ian Rogers30fab402012-01-23 15:43:46 -0800123 // Requested begin for the alloc space, to follow the mapped image and oat files
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700124 byte* requested_alloc_space_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800125 std::string image_file_name(original_image_file_name);
126 if (!image_file_name.empty()) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700127 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name);
128 CHECK(image_space != NULL) << "Failed to create space for " << image_file_name;
Ian Rogers1d54e732013-05-02 21:10:01 -0700129 AddContinuousSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800130 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
131 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800132 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
133 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700134 if (oat_file_end_addr > requested_alloc_space_begin) {
135 requested_alloc_space_begin =
136 reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr),
137 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700138 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700139 }
140
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700141 // Allocate the large object space.
Ian Rogers22a20862013-03-16 16:34:57 -0700142 const bool kUseFreeListSpaceForLOS = false;
143 if (kUseFreeListSpaceForLOS) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700144 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
Ian Rogers22a20862013-03-16 16:34:57 -0700145 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -0700146 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
Ian Rogers22a20862013-03-16 16:34:57 -0700147 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700148 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
149 AddDiscontinuousSpace(large_object_space_);
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700150
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -0700151 alloc_space_ = space::DlMallocSpace::Create(Runtime::Current()->IsZygote() ? "zygote space" : "alloc space",
Ian Rogers1d54e732013-05-02 21:10:01 -0700152 initial_size,
153 growth_limit, capacity,
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700154 requested_alloc_space_begin);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700155 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
jeffhao8161c032012-10-31 15:50:00 -0700156 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -0700157 AddContinuousSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700158
Ian Rogers1d54e732013-05-02 21:10:01 -0700159 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
160 byte* heap_begin = continuous_spaces_.front()->Begin();
161 size_t heap_capacity = continuous_spaces_.back()->End() - continuous_spaces_.front()->Begin();
162 if (continuous_spaces_.back()->IsDlMallocSpace()) {
163 heap_capacity += continuous_spaces_.back()->AsDlMallocSpace()->NonGrowthLimitCapacity();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700164 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700165
Ian Rogers30fab402012-01-23 15:43:46 -0800166 // Mark image objects in the live bitmap
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700167 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -0700168 typedef std::vector<space::ContinuousSpace*>::iterator It;
169 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
170 space::ContinuousSpace* space = *it;
Ian Rogers30fab402012-01-23 15:43:46 -0800171 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700172 space::ImageSpace* image_space = space->AsImageSpace();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700173 image_space->RecordImageAllocations(image_space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800174 }
175 }
176
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800177 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700178 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700179 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700180
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700181 image_mod_union_table_.reset(new accounting::ModUnionTableCardCache(this));
Ian Rogers1d54e732013-05-02 21:10:01 -0700182 CHECK(image_mod_union_table_.get() != NULL) << "Failed to create image mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700183
Ian Rogers1d54e732013-05-02 21:10:01 -0700184 zygote_mod_union_table_.reset(new accounting::ModUnionTableCardCache(this));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700185 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700186
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700187 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700188 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700189
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800190 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700191 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700192 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
193 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
194 max_allocation_stack_size_));
195 live_stack_.reset(accounting::ObjectStack::Create("live stack",
196 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700197
Mathieu Chartier65db8802012-11-20 12:36:46 -0800198 // It's still too early to take a lock because there are no threads yet, but we can create locks
199 // now. We don't create it earlier to make it clear that you can't use locks during heap
200 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700201 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700202 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
203 *gc_complete_lock_));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700204
Mathieu Chartier63a54342013-07-23 13:17:59 -0700205 // Create the reference queue lock, this is required so for parallel object scanning in the GC.
Ian Rogers1d54e732013-05-02 21:10:01 -0700206 reference_queue_lock_ = new Mutex("reference queue lock");
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700207
Ian Rogers1d54e732013-05-02 21:10:01 -0700208 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800209 last_gc_size_ = GetBytesAllocated();
210
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800211 // Create our garbage collectors.
212 for (size_t i = 0; i < 2; ++i) {
213 const bool concurrent = i != 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700214 mark_sweep_collectors_.push_back(new collector::MarkSweep(this, concurrent));
215 mark_sweep_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
216 mark_sweep_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700217 }
218
Brian Carlstrom42748892013-07-18 18:04:08 -0700219 CHECK_NE(max_allowed_footprint_, 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800220 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800221 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700222 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700223}
224
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700225void Heap::CreateThreadPool() {
Mathieu Chartier63a54342013-07-23 13:17:59 -0700226 thread_pool_.reset(new ThreadPool(num_gc_threads_));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700227}
228
229void Heap::DeleteThreadPool() {
230 thread_pool_.reset(NULL);
231}
232
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700233// Sort spaces based on begin address
Ian Rogers1d54e732013-05-02 21:10:01 -0700234struct ContinuousSpaceSorter {
Brian Carlstromdf629502013-07-17 22:39:56 -0700235 bool operator()(const space::ContinuousSpace* a, const space::ContinuousSpace* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700236 return a->Begin() < b->Begin();
237 }
238};
239
Mathieu Chartier82353312013-07-18 10:47:51 -0700240void Heap::UpdateProcessState(ProcessState process_state) {
241 process_state_ = process_state;
242}
243
Ian Rogers1d54e732013-05-02 21:10:01 -0700244void Heap::AddContinuousSpace(space::ContinuousSpace* space) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700245 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700246 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700247 DCHECK(space->GetLiveBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700248 live_bitmap_->AddContinuousSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700249 DCHECK(space->GetMarkBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700250 mark_bitmap_->AddContinuousSpaceBitmap(space->GetMarkBitmap());
251 continuous_spaces_.push_back(space);
252 if (space->IsDlMallocSpace() && !space->IsLargeObjectSpace()) {
253 alloc_space_ = space->AsDlMallocSpace();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700254 }
255
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700256 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
Ian Rogers1d54e732013-05-02 21:10:01 -0700257 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(), ContinuousSpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700258
259 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
260 // avoid redundant marking.
261 bool seen_zygote = false, seen_alloc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700262 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
263 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
264 space::ContinuousSpace* space = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700265 if (space->IsImageSpace()) {
266 DCHECK(!seen_zygote);
267 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700268 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700269 DCHECK(!seen_alloc);
270 seen_zygote = true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700271 } else if (space->IsDlMallocSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700272 seen_alloc = true;
273 }
274 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800275}
276
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700277void Heap::RegisterGCAllocation(size_t bytes) {
278 if (this != NULL) {
279 gc_memory_overhead_.fetch_add(bytes);
280 }
281}
282
283void Heap::RegisterGCDeAllocation(size_t bytes) {
284 if (this != NULL) {
285 gc_memory_overhead_.fetch_sub(bytes);
286 }
287}
288
Ian Rogers1d54e732013-05-02 21:10:01 -0700289void Heap::AddDiscontinuousSpace(space::DiscontinuousSpace* space) {
290 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
291 DCHECK(space != NULL);
292 DCHECK(space->GetLiveObjects() != NULL);
293 live_bitmap_->AddDiscontinuousObjectSet(space->GetLiveObjects());
294 DCHECK(space->GetMarkObjects() != NULL);
295 mark_bitmap_->AddDiscontinuousObjectSet(space->GetMarkObjects());
296 discontinuous_spaces_.push_back(space);
297}
298
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700299void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700300 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700301 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700302 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800303
304 // Dump cumulative loggers for each GC type.
305 // TODO: C++0x
306 uint64_t total_paused_time = 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700307 typedef std::vector<collector::MarkSweep*>::const_iterator It;
308 for (It it = mark_sweep_collectors_.begin();
Sameer Abu Asala8439542013-02-14 16:06:42 -0800309 it != mark_sweep_collectors_.end(); ++it) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700310 collector::MarkSweep* collector = *it;
Sameer Abu Asala8439542013-02-14 16:06:42 -0800311 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800312 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700313 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800314 const uint64_t total_ns = logger.GetTotalNs();
Ian Rogers1d54e732013-05-02 21:10:01 -0700315 const uint64_t total_pause_ns = (*it)->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800316 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
317 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
318 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700319 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
320 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
321 << collector->GetName() << " freed: " << freed_objects
322 << " objects with total size " << PrettySize(freed_bytes) << "\n"
323 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
324 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800325 total_duration += total_ns;
326 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700327 }
328 }
329 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700330 size_t total_objects_allocated = GetObjectsAllocatedEver();
331 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700332 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700333 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700334 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
335 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700336 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700337 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700338 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700339 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700340 os << "Total number of allocations: " << total_objects_allocated << "\n";
341 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700342 if (measure_allocation_time_) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700343 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
344 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
345 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700346 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700347 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
348 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700349 os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700350}
351
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800352Heap::~Heap() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700353 if (kDumpGcPerformanceOnShutdown) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700354 DumpGcPerformanceInfo(LOG(INFO));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700355 }
356
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800357 STLDeleteElements(&mark_sweep_collectors_);
358
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700359 // If we don't reset then the mark stack complains in it's destructor.
360 allocation_stack_->Reset();
361 live_stack_->Reset();
362
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800363 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800364 // We can't take the heap lock here because there might be a daemon thread suspended with the
365 // heap lock held. We know though that no non-daemon threads are executing, and we know that
366 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
367 // those threads can't resume. We're the only running thread, and we can do whatever we like...
Ian Rogers1d54e732013-05-02 21:10:01 -0700368 STLDeleteElements(&continuous_spaces_);
369 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700370 delete gc_complete_lock_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700371 delete reference_queue_lock_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700372}
373
Ian Rogers1d54e732013-05-02 21:10:01 -0700374space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
375 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700376 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700377 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
378 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700379 if ((*it)->Contains(obj)) {
380 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700381 }
382 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700383 if (!fail_ok) {
384 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
385 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700386 return NULL;
387}
388
Ian Rogers1d54e732013-05-02 21:10:01 -0700389space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
390 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700391 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700392 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It;
393 for (It it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
394 if ((*it)->Contains(obj)) {
395 return *it;
396 }
397 }
398 if (!fail_ok) {
399 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
400 }
401 return NULL;
402}
403
404space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
405 space::Space* result = FindContinuousSpaceFromObject(obj, true);
406 if (result != NULL) {
407 return result;
408 }
409 return FindDiscontinuousSpaceFromObject(obj, true);
410}
411
412space::ImageSpace* Heap::GetImageSpace() const {
413 // TODO: C++0x auto
414 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
415 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700416 if ((*it)->IsImageSpace()) {
417 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700418 }
419 }
420 return NULL;
421}
422
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700423static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700424 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700425 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700426 size_t chunk_free_bytes = chunk_size - used_bytes;
427 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
428 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700429 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700430}
431
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432mirror::Object* Heap::AllocObject(Thread* self, mirror::Class* c, size_t byte_count) {
433 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(mirror::Class)) ||
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
435 strlen(ClassHelper(c).GetDescriptor()) == 0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800436 DCHECK_GE(byte_count, sizeof(mirror::Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700437
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800438 mirror::Object* obj = NULL;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700439 size_t size = 0;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700440 uint64_t allocation_start = 0;
Ian Rogers333cf1b2013-07-24 11:57:02 -0700441 if (UNLIKELY(measure_allocation_time_)) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700442 allocation_start = NanoTime() / kTimeAdjust;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700443 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700444
445 // We need to have a zygote space or else our newly allocated large object can end up in the
446 // Zygote resulting in it being prematurely freed.
447 // We can only do this for primive objects since large objects will not be within the card table
448 // range. This also means that we rely on SetClass not dirtying the object's card.
Ian Rogers333cf1b2013-07-24 11:57:02 -0700449 bool large_object_allocation =
450 byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray();
451 if (UNLIKELY(large_object_allocation)) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700452 size = RoundUp(byte_count, kPageSize);
Ian Rogers1d54e732013-05-02 21:10:01 -0700453 obj = Allocate(self, large_object_space_, size);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700454 // Make sure that our large object didn't get placed anywhere within the space interval or else
455 // it breaks the immune range.
456 DCHECK(obj == NULL ||
Ian Rogers1d54e732013-05-02 21:10:01 -0700457 reinterpret_cast<byte*>(obj) < continuous_spaces_.front()->Begin() ||
458 reinterpret_cast<byte*>(obj) >= continuous_spaces_.back()->End());
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700459 } else {
Ian Rogers50b35e22012-10-04 10:09:15 -0700460 obj = Allocate(self, alloc_space_, byte_count);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700461
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700462 // Ensure that we did not allocate into a zygote space.
Ian Rogers1d54e732013-05-02 21:10:01 -0700463 DCHECK(obj == NULL || !have_zygote_space_ || !FindSpaceFromObject(obj, false)->IsZygoteSpace());
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700464 size = alloc_space_->AllocationSize(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700465 }
466
Mathieu Chartier037813d2012-08-23 16:44:59 -0700467 if (LIKELY(obj != NULL)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700468 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700469
470 // Record allocation after since we want to use the atomic add for the atomic fence to guard
471 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700472 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700473
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700474 if (Dbg::IsAllocTrackingEnabled()) {
475 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700476 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700477 if (static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700478 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800479 SirtRef<mirror::Object> ref(self, obj);
Ian Rogers1f539342012-10-03 21:09:42 -0700480 RequestConcurrentGC(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700481 }
482 VerifyObject(obj);
483
Ian Rogers333cf1b2013-07-24 11:57:02 -0700484 if (UNLIKELY(measure_allocation_time_)) {
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700485 total_allocation_time_.fetch_add(NanoTime() / kTimeAdjust - allocation_start);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700486 }
487
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700488 return obj;
Ian Rogers333cf1b2013-07-24 11:57:02 -0700489 } else {
490 std::ostringstream oss;
491 int64_t total_bytes_free = GetFreeMemory();
492 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
493 << " free bytes";
494 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
495 if (!large_object_allocation && total_bytes_free >= byte_count) {
496 size_t max_contiguous_allocation = 0;
497 // TODO: C++0x auto
498 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
499 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
500 space::ContinuousSpace* space = *it;
501 if (space->IsDlMallocSpace()) {
502 space->AsDlMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
503 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800504 }
Ian Rogers333cf1b2013-07-24 11:57:02 -0700505 oss << "; failed due to fragmentation (largest possible contiguous allocation "
506 << max_contiguous_allocation << " bytes)";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700507 }
Ian Rogers333cf1b2013-07-24 11:57:02 -0700508 self->ThrowOutOfMemoryError(oss.str().c_str());
509 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700510 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700511}
512
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800513bool Heap::IsHeapAddress(const mirror::Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700514 // Note: we deliberately don't take the lock here, and mustn't test anything that would
515 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700516 if (obj == NULL) {
517 return true;
518 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700519 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700520 return false;
521 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700522 return FindSpaceFromObject(obj, true) != NULL;
Elliott Hughesa2501992011-08-26 19:39:54 -0700523}
524
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800525bool Heap::IsLiveObjectLocked(const mirror::Object* obj) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700526 //Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
527 if (obj == NULL) {
528 return false;
529 }
530 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
531 return false;
532 }
533 space::ContinuousSpace* cont_space = FindContinuousSpaceFromObject(obj, true);
534 if (cont_space != NULL) {
535 if (cont_space->GetLiveBitmap()->Test(obj)) {
536 return true;
537 }
538 } else {
539 space::DiscontinuousSpace* disc_space = FindDiscontinuousSpaceFromObject(obj, true);
540 if (disc_space != NULL) {
541 if (disc_space->GetLiveObjects()->Test(obj)) {
542 return true;
543 }
544 }
545 }
546 for (size_t i = 0; i < 5; ++i) {
547 if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj)) ||
548 live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
549 return true;
550 }
551 NanoSleep(MsToNs(10));
552 }
553 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700554}
555
Ian Rogers04d7aa92013-03-16 14:29:17 -0700556void Heap::VerifyObjectImpl(const mirror::Object* obj) {
557 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700558 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700559 return;
560 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700561 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700562}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700563
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700564void Heap::DumpSpaces() {
565 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700566 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
567 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
568 space::ContinuousSpace* space = *it;
569 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
570 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700571 LOG(INFO) << space << " " << *space << "\n"
572 << live_bitmap << " " << *live_bitmap << "\n"
573 << mark_bitmap << " " << *mark_bitmap;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700574 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700575 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
576 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
577 space::DiscontinuousSpace* space = *it;
578 LOG(INFO) << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700579 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700580}
581
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800582void Heap::VerifyObjectBody(const mirror::Object* obj) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800583 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700584 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700585 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800586 if (UNLIKELY(GetObjectsAllocated() <= 10)) { // Ignore early dawn of the universe verifications.
587 return;
588 }
589 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
590 mirror::Object::ClassOffset().Int32Value();
591 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
592 if (UNLIKELY(c == NULL)) {
593 LOG(FATAL) << "Null class in object: " << obj;
594 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
595 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
596 }
597 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
598 // Note: we don't use the accessors here as they have internal sanity checks
599 // that we don't want to run
600 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
601 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
602 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
603 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
604 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700605
Ian Rogers62d6c772013-02-27 08:32:07 -0800606 if (verify_object_mode_ != kVerifyAllFast) {
607 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
608 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700609 if (!IsLiveObjectLocked(obj)) {
610 DumpSpaces();
611 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700612 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700613 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700614 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
615 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700616 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700617}
618
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800619void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700620 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700621 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700622}
623
624void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700625 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700626 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700627}
628
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800629void Heap::RecordAllocation(size_t size, mirror::Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700630 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700631 DCHECK_GT(size, 0u);
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700632 num_bytes_allocated_.fetch_add(size);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700633
634 if (Runtime::Current()->HasStatsEnabled()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700635 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700636 ++thread_stats->allocated_objects;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700637 thread_stats->allocated_bytes += size;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700638
639 // TODO: Update these atomically.
640 RuntimeStats* global_stats = Runtime::Current()->GetStats();
641 ++global_stats->allocated_objects;
642 global_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700643 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700644
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700645 // This is safe to do since the GC will never free objects which are neither in the allocation
646 // stack or the live bitmap.
647 while (!allocation_stack_->AtomicPushBack(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700648 CollectGarbageInternal(collector::kGcTypeSticky, kGcCauseForAlloc, false);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700649 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700650}
651
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700652void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700653 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700654 num_bytes_allocated_.fetch_sub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700655
656 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700657 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700658 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700659 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700660
661 // TODO: Do this concurrently.
662 RuntimeStats* global_stats = Runtime::Current()->GetStats();
663 global_stats->freed_objects += freed_objects;
664 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700665 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700666}
667
Ian Rogers1d54e732013-05-02 21:10:01 -0700668mirror::Object* Heap::TryToAllocate(Thread* self, space::AllocSpace* space, size_t alloc_size,
669 bool grow) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700670 // Should we try to use a CAS here and fix up num_bytes_allocated_ later with AllocationSize?
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800671 if (num_bytes_allocated_ + alloc_size > max_allowed_footprint_) {
672 // max_allowed_footprint_ <= growth_limit_ so it is safe to check in here.
673 if (num_bytes_allocated_ + alloc_size > growth_limit_) {
674 // Completely out of memory.
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700675 return NULL;
676 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700677 }
678
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700679 return space->Alloc(self, alloc_size);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700680}
681
Ian Rogers1d54e732013-05-02 21:10:01 -0700682mirror::Object* Heap::Allocate(Thread* self, space::AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700683 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
684 // done in the runnable state where suspension is expected.
Ian Rogers81d425b2012-09-27 16:03:43 -0700685 DCHECK_EQ(self->GetState(), kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700686 self->AssertThreadSuspensionIsAllowable();
Brian Carlstromb82b6872011-10-26 17:18:07 -0700687
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800688 mirror::Object* ptr = TryToAllocate(self, space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700689 if (ptr != NULL) {
690 return ptr;
691 }
692
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700693 // The allocation failed. If the GC is running, block until it completes, and then retry the
694 // allocation.
Ian Rogers1d54e732013-05-02 21:10:01 -0700695 collector::GcType last_gc = WaitForConcurrentGcToComplete(self);
696 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700697 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Ian Rogers50b35e22012-10-04 10:09:15 -0700698 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700699 if (ptr != NULL) {
700 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700701 }
702 }
703
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700704 // Loop through our different Gc types and try to Gc until we get enough free memory.
Ian Rogers1d54e732013-05-02 21:10:01 -0700705 for (size_t i = static_cast<size_t>(last_gc) + 1;
706 i < static_cast<size_t>(collector::kGcTypeMax); ++i) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700707 bool run_gc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700708 collector::GcType gc_type = static_cast<collector::GcType>(i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700709 switch (gc_type) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700710 case collector::kGcTypeSticky: {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700711 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700712 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
713 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700714 break;
715 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700716 case collector::kGcTypePartial:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700717 run_gc = have_zygote_space_;
718 break;
Ian Rogers1d54e732013-05-02 21:10:01 -0700719 case collector::kGcTypeFull:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700720 run_gc = true;
721 break;
722 default:
723 break;
724 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700725
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700726 if (run_gc) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700727 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
Ian Rogers1d54e732013-05-02 21:10:01 -0700728 collector::GcType gc_type_ran = CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier65db8802012-11-20 12:36:46 -0800729 DCHECK_GE(static_cast<size_t>(gc_type_ran), i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700730 i = static_cast<size_t>(gc_type_ran);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700731
732 // Did we free sufficient memory for the allocation to succeed?
Ian Rogers50b35e22012-10-04 10:09:15 -0700733 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700734 if (ptr != NULL) {
735 return ptr;
736 }
737 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700738 }
739
740 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700741 // Try harder, growing the heap if necessary.
Ian Rogers50b35e22012-10-04 10:09:15 -0700742 ptr = TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700743 if (ptr != NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700744 return ptr;
745 }
746
Elliott Hughes81ff3182012-03-23 20:35:56 -0700747 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
748 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
749 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700750
Elliott Hughes418dfe72011-10-06 18:56:27 -0700751 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700752 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
753 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700754
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700755 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers1d54e732013-05-02 21:10:01 -0700756 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseForAlloc, true);
Ian Rogers50b35e22012-10-04 10:09:15 -0700757 return TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700758}
759
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700760void Heap::SetTargetHeapUtilization(float target) {
761 DCHECK_GT(target, 0.0f); // asserted in Java code
762 DCHECK_LT(target, 1.0f);
763 target_utilization_ = target;
764}
765
Ian Rogers1d54e732013-05-02 21:10:01 -0700766size_t Heap::GetObjectsAllocated() const {
767 size_t total = 0;
768 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
769 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
770 space::ContinuousSpace* space = *it;
771 if (space->IsDlMallocSpace()) {
772 total += space->AsDlMallocSpace()->GetObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700773 }
774 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700775 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
776 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
777 space::DiscontinuousSpace* space = *it;
778 total += space->AsLargeObjectSpace()->GetObjectsAllocated();
779 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700780 return total;
781}
782
Ian Rogers1d54e732013-05-02 21:10:01 -0700783size_t Heap::GetObjectsAllocatedEver() const {
784 size_t total = 0;
785 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
786 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
787 space::ContinuousSpace* space = *it;
788 if (space->IsDlMallocSpace()) {
789 total += space->AsDlMallocSpace()->GetTotalObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700790 }
791 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700792 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
793 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
794 space::DiscontinuousSpace* space = *it;
795 total += space->AsLargeObjectSpace()->GetTotalObjectsAllocated();
796 }
797 return total;
798}
799
800size_t Heap::GetBytesAllocatedEver() const {
801 size_t total = 0;
802 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
803 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
804 space::ContinuousSpace* space = *it;
805 if (space->IsDlMallocSpace()) {
806 total += space->AsDlMallocSpace()->GetTotalBytesAllocated();
807 }
808 }
809 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
810 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
811 space::DiscontinuousSpace* space = *it;
812 total += space->AsLargeObjectSpace()->GetTotalBytesAllocated();
813 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700814 return total;
815}
816
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700817class InstanceCounter {
818 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800819 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700820 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800821 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700822 }
823
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800824 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800825 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800826 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800827 if (use_is_assignable_from_) {
828 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
829 ++counts_[i];
830 }
831 } else {
832 if (instance_class == classes_[i]) {
833 ++counts_[i];
834 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700835 }
836 }
837 }
838
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700839 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800841 bool use_is_assignable_from_;
842 uint64_t* const counts_;
843
844 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700845};
846
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800847void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800848 uint64_t* counts) {
849 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
850 // is empty, so the live bitmap is the only place we need to look.
851 Thread* self = Thread::Current();
852 self->TransitionFromRunnableToSuspended(kNative);
853 CollectGarbage(false);
854 self->TransitionFromSuspendedToRunnable();
855
856 InstanceCounter counter(classes, use_is_assignable_from, counts);
857 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700858 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700859}
860
Elliott Hughes3b78c942013-01-15 17:35:41 -0800861class InstanceCollector {
862 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800863 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800864 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
865 : class_(c), max_count_(max_count), instances_(instances) {
866 }
867
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800868 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
869 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -0800870 if (instance_class == class_) {
871 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800872 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800873 }
874 }
875 }
876
877 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800878 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800879 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800880 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800881
882 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
883};
884
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800885void Heap::GetInstances(mirror::Class* c, int32_t max_count,
886 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800887 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
888 // is empty, so the live bitmap is the only place we need to look.
889 Thread* self = Thread::Current();
890 self->TransitionFromRunnableToSuspended(kNative);
891 CollectGarbage(false);
892 self->TransitionFromSuspendedToRunnable();
893
894 InstanceCollector collector(c, max_count, instances);
895 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
896 GetLiveBitmap()->Visit(collector);
897}
898
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800899class ReferringObjectsFinder {
900 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800901 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
902 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800903 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
904 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
905 }
906
907 // For bitmap Visit.
908 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
909 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800910 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -0700911 collector::MarkSweep::VisitObjectReferences(o, *this);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800912 }
913
914 // For MarkSweep::VisitObjectReferences.
Brian Carlstromdf629502013-07-17 22:39:56 -0700915 void operator()(const mirror::Object* referrer, const mirror::Object* object,
916 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800917 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800918 referring_objects_.push_back(const_cast<mirror::Object*>(referrer));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800919 }
920 }
921
922 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800923 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800924 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800925 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800926
927 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
928};
929
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800930void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
931 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800932 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
933 // is empty, so the live bitmap is the only place we need to look.
934 Thread* self = Thread::Current();
935 self->TransitionFromRunnableToSuspended(kNative);
936 CollectGarbage(false);
937 self->TransitionFromSuspendedToRunnable();
938
939 ReferringObjectsFinder finder(o, max_count, referring_objects);
940 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
941 GetLiveBitmap()->Visit(finder);
942}
943
Ian Rogers30fab402012-01-23 15:43:46 -0800944void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700945 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
946 // last GC will not have necessarily been cleared.
Ian Rogers81d425b2012-09-27 16:03:43 -0700947 Thread* self = Thread::Current();
948 WaitForConcurrentGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700949 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700950}
951
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700952void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700953 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800954 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
955 CollectGarbage(false);
Ian Rogers81d425b2012-09-27 16:03:43 -0700956 Thread* self = Thread::Current();
957 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700958
959 // Try to see if we have any Zygote spaces.
960 if (have_zygote_space_) {
961 return;
962 }
963
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700964 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
965
966 {
967 // Flush the alloc stack.
Ian Rogers81d425b2012-09-27 16:03:43 -0700968 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700969 FlushAllocStack();
970 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700971
Ian Rogers1d54e732013-05-02 21:10:01 -0700972 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
973 // of the remaining available heap memory.
974 space::DlMallocSpace* zygote_space = alloc_space_;
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -0700975 alloc_space_ = zygote_space->CreateZygoteSpace("alloc space");
Ian Rogers1d54e732013-05-02 21:10:01 -0700976 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700977
Ian Rogers1d54e732013-05-02 21:10:01 -0700978 // Change the GC retention policy of the zygote space to only collect when full.
979 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
980 AddContinuousSpace(alloc_space_);
981 have_zygote_space_ = true;
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700982
Ian Rogers5f5a2c02012-09-17 10:52:08 -0700983 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700984 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -0700985 typedef std::vector<collector::MarkSweep*>::const_iterator It;
986 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
987 it != end; ++it) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800988 (*it)->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -0700989 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700990}
991
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700992void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700993 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
994 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700995 allocation_stack_->Reset();
996}
997
Ian Rogers1d54e732013-05-02 21:10:01 -0700998void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
999 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001000 mirror::Object** limit = stack->End();
1001 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1002 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001003 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001004 if (LIKELY(bitmap->HasAddress(obj))) {
1005 bitmap->Set(obj);
1006 } else {
1007 large_objects->Set(obj);
1008 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001009 }
1010}
1011
Ian Rogers1d54e732013-05-02 21:10:01 -07001012void Heap::UnMarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1013 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001014 mirror::Object** limit = stack->End();
1015 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1016 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001017 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001018 if (LIKELY(bitmap->HasAddress(obj))) {
1019 bitmap->Clear(obj);
1020 } else {
1021 large_objects->Clear(obj);
1022 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001023 }
1024}
1025
Ian Rogers1d54e732013-05-02 21:10:01 -07001026collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1027 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001028 Thread* self = Thread::Current();
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001029
1030 switch (gc_cause) {
1031 case kGcCauseForAlloc:
1032 ATRACE_BEGIN("GC (alloc)");
1033 break;
1034 case kGcCauseBackground:
1035 ATRACE_BEGIN("GC (background)");
1036 break;
1037 case kGcCauseExplicit:
1038 ATRACE_BEGIN("GC (explicit)");
1039 break;
1040 }
1041
Mathieu Chartier65db8802012-11-20 12:36:46 -08001042 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001043 Locks::mutator_lock_->AssertNotHeld(self);
Carl Shapiro58551df2011-07-24 03:09:51 -07001044
Ian Rogers120f1c72012-09-28 17:17:10 -07001045 if (self->IsHandlingStackOverflow()) {
1046 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1047 }
1048
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001049 // Ensure there is only one GC at a time.
1050 bool start_collect = false;
1051 while (!start_collect) {
1052 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001053 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001054 if (!is_gc_running_) {
1055 is_gc_running_ = true;
1056 start_collect = true;
1057 }
1058 }
1059 if (!start_collect) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001060 WaitForConcurrentGcToComplete(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001061 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1062 // Not doing at the moment to ensure soft references are cleared.
1063 }
1064 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001065 gc_complete_lock_->AssertNotHeld(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001066
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001067 if (gc_cause == kGcCauseForAlloc && Runtime::Current()->HasStatsEnabled()) {
1068 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
1069 ++Thread::Current()->GetStats()->gc_for_alloc_count;
1070 }
1071
Ian Rogers1d54e732013-05-02 21:10:01 -07001072 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001073 uint64_t gc_start_size = GetBytesAllocated();
1074 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001075 if (UNLIKELY(gc_start_time_ns == last_gc_time_ns_)) {
Jeff Hao9bd02812013-02-08 14:29:50 -08001076 LOG(WARNING) << "Timers are broken (gc_start_time == last_gc_time_).";
1077 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001078 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001079 if (ms_delta != 0) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001080 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001081 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1082 }
1083
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001084 if (gc_type == collector::kGcTypeSticky &&
1085 alloc_space_->Size() < min_alloc_space_size_for_sticky_gc_) {
1086 gc_type = collector::kGcTypePartial;
1087 }
1088
Ian Rogers1d54e732013-05-02 21:10:01 -07001089 DCHECK_LT(gc_type, collector::kGcTypeMax);
1090 DCHECK_NE(gc_type, collector::kGcTypeNone);
1091 collector::MarkSweep* collector = NULL;
1092 typedef std::vector<collector::MarkSweep*>::iterator It;
1093 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
1094 it != end; ++it) {
1095 collector::MarkSweep* cur_collector = *it;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001096 if (cur_collector->IsConcurrent() == concurrent_gc_ && cur_collector->GetGcType() == gc_type) {
1097 collector = cur_collector;
1098 break;
1099 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001100 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001101 CHECK(collector != NULL)
1102 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1103 << " and type=" << gc_type;
1104 collector->clear_soft_references_ = clear_soft_references;
1105 collector->Run();
Ian Rogers1d54e732013-05-02 21:10:01 -07001106 total_objects_freed_ever_ += collector->GetFreedObjects();
1107 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001108
Ian Rogers1d54e732013-05-02 21:10:01 -07001109 const size_t duration = collector->GetDurationNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001110 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1111 bool was_slow = duration > kSlowGcThreshold ||
1112 (gc_cause == kGcCauseForAlloc && duration > kLongGcPauseThreshold);
1113 for (size_t i = 0; i < pauses.size(); ++i) {
1114 if (pauses[i] > kLongGcPauseThreshold) {
1115 was_slow = true;
1116 }
1117 }
1118
1119 if (was_slow) {
1120 const size_t percent_free = GetPercentFree();
Ian Rogers1d54e732013-05-02 21:10:01 -07001121 const size_t current_heap_size = GetBytesAllocated();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001122 const size_t total_memory = GetTotalMemory();
1123 std::ostringstream pause_string;
1124 for (size_t i = 0; i < pauses.size(); ++i) {
1125 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1126 << ((i != pauses.size() - 1) ? ", " : "");
1127 }
1128 LOG(INFO) << gc_cause << " " << collector->GetName()
Sameer Abu Asala8439542013-02-14 16:06:42 -08001129 << "GC freed " << PrettySize(collector->GetFreedBytes()) << ", "
1130 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1131 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1132 << " total " << PrettyDuration((duration / 1000) * 1000);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001133 if (VLOG_IS_ON(heap)) {
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001134 LOG(INFO) << Dumpable<base::TimingLogger>(collector->GetTimings());
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001135 }
1136 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001137
Ian Rogers15bf2d32012-08-28 17:33:04 -07001138 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001139 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001140 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001141 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -07001142 // Wake anyone who may have been waiting for the GC to complete.
Ian Rogersc604d732012-10-14 16:09:54 -07001143 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001144 }
Mathieu Chartier0a9dc052013-07-25 11:01:28 -07001145
Ian Rogers15bf2d32012-08-28 17:33:04 -07001146 // Inform DDMS that a GC completed.
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001147 ATRACE_END();
Ian Rogers15bf2d32012-08-28 17:33:04 -07001148 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001149 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001150}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001151
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001152void Heap::UpdateAndMarkModUnion(collector::MarkSweep* mark_sweep, base::TimingLogger& timings,
Ian Rogers1d54e732013-05-02 21:10:01 -07001153 collector::GcType gc_type) {
1154 if (gc_type == collector::kGcTypeSticky) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001155 // Don't need to do anything for mod union table in this case since we are only scanning dirty
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001156 // cards.
1157 return;
1158 }
1159
1160 // Update zygote mod union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001161 if (gc_type == collector::kGcTypePartial) {
1162 timings.NewSplit("UpdateZygoteModUnionTable");
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001163 zygote_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001164
Ian Rogers1d54e732013-05-02 21:10:01 -07001165 timings.NewSplit("ZygoteMarkReferences");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001166 zygote_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001167 }
1168
1169 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001170 timings.NewSplit("UpdateModUnionTable");
1171 image_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001172
1173 // Scans all objects in the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001174 timings.NewSplit("MarkImageToAllocSpaceReferences");
1175 image_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001176}
1177
Ian Rogers1d54e732013-05-02 21:10:01 -07001178static void RootMatchesObjectVisitor(const mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001179 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001180 if (root == obj) {
1181 LOG(INFO) << "Object " << obj << " is a root";
1182 }
1183}
1184
1185class ScanVisitor {
1186 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001187 void operator()(const mirror::Object* obj) const {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001188 LOG(INFO) << "Would have rescanned object " << obj;
1189 }
1190};
1191
Ian Rogers1d54e732013-05-02 21:10:01 -07001192// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001193class VerifyReferenceVisitor {
1194 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001195 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001197 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001198
1199 bool Failed() const {
1200 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001201 }
1202
1203 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001204 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001205 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1206 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001207 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001208 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001209 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1210 accounting::CardTable* card_table = heap_->GetCardTable();
1211 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1212 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001213
Ian Rogers1d54e732013-05-02 21:10:01 -07001214 if (obj != NULL) {
1215 byte* card_addr = card_table->CardFromAddr(obj);
1216 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset " << offset
1217 << "\nIsDirty = " << (*card_addr == accounting::CardTable::kCardDirty)
1218 << "\nObj type " << PrettyTypeOf(obj)
1219 << "\nRef type " << PrettyTypeOf(ref);
1220 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1221 void* cover_begin = card_table->AddrFromCard(card_addr);
1222 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1223 accounting::CardTable::kCardSize);
1224 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1225 << "-" << cover_end;
1226 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001227
Ian Rogers1d54e732013-05-02 21:10:01 -07001228 // Print out how the object is live.
1229 if (bitmap != NULL && bitmap->Test(obj)) {
1230 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1231 }
1232 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
1233 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1234 }
1235 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
1236 LOG(ERROR) << "Object " << obj << " found in live stack";
1237 }
1238 // Attempt to see if the card table missed the reference.
1239 ScanVisitor scan_visitor;
1240 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1241 card_table->Scan(bitmap, byte_cover_begin,
1242 byte_cover_begin + accounting::CardTable::kCardSize,
1243 scan_visitor, VoidFunctor());
1244
1245 // Search to see if any of the roots reference our object.
1246 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1247 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1248
1249 // Search to see if any of the roots reference our reference.
1250 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1251 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1252 } else {
1253 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001254 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001255 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1256 LOG(ERROR) << "Reference " << ref << " found in allocation stack!";
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001257 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001258 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001259 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001260 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001261 heap_->image_mod_union_table_->Dump(LOG(ERROR) << "Image mod-union table: ");
1262 heap_->zygote_mod_union_table_->Dump(LOG(ERROR) << "Zygote mod-union table: ");
1263 failed_ = true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001264 }
1265 }
1266
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001267 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -07001268 return heap_->IsLiveObjectLocked(obj);
1269 }
1270
1271 static void VerifyRoots(const mirror::Object* root, void* arg) {
1272 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
1273 (*visitor)(NULL, root, MemberOffset(0), true);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001274 }
1275
1276 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001277 Heap* const heap_;
1278 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001279};
1280
Ian Rogers1d54e732013-05-02 21:10:01 -07001281// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001282class VerifyObjectVisitor {
1283 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001284 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001285
Brian Carlstromdf629502013-07-17 22:39:56 -07001286 void operator()(const mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001288 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1289 // be live or else how did we find it in the live bitmap?
1290 VerifyReferenceVisitor visitor(heap_);
1291 collector::MarkSweep::VisitObjectReferences(obj, visitor);
1292 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001293 }
1294
1295 bool Failed() const {
1296 return failed_;
1297 }
1298
1299 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001300 Heap* const heap_;
1301 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001302};
1303
1304// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001305bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001306 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001307 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001308 allocation_stack_->Sort();
1309 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001310 // Perform the verification.
1311 VerifyObjectVisitor visitor(this);
Ian Rogers1d54e732013-05-02 21:10:01 -07001312 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001313 GetLiveBitmap()->Visit(visitor);
1314 // We don't want to verify the objects in the allocation stack since they themselves may be
1315 // pointing to dead objects if they are not reachable.
1316 if (visitor.Failed()) {
1317 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001318 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001319 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001320 return true;
1321}
1322
1323class VerifyReferenceCardVisitor {
1324 public:
1325 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1326 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1327 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001328 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001329 }
1330
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001331 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1332 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001333 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1334 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001335 // Filter out class references since changing an object's class does not mark the card as dirty.
1336 // Also handles large objects, since the only reference they hold is a class reference.
1337 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001338 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001339 // If the object is not dirty and it is referencing something in the live stack other than
1340 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001341 if (!card_table->AddrIsInCardTable(obj)) {
1342 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1343 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001344 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001345 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1346 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001347 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
1348 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1349 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001350 LOG(ERROR) << "Object " << obj << " found in live stack";
1351 }
1352 if (heap_->GetLiveBitmap()->Test(obj)) {
1353 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1354 }
1355 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1356 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1357
1358 // Print which field of the object is dead.
1359 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001360 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001361 CHECK(klass != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001362 const mirror::ObjectArray<mirror::Field>* fields = is_static ? klass->GetSFields()
1363 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001364 CHECK(fields != NULL);
1365 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001366 const mirror::Field* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001367 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1368 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1369 << PrettyField(cur);
1370 break;
1371 }
1372 }
1373 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001374 const mirror::ObjectArray<mirror::Object>* object_array =
1375 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001376 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1377 if (object_array->Get(i) == ref) {
1378 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1379 }
1380 }
1381 }
1382
1383 *failed_ = true;
1384 }
1385 }
1386 }
1387 }
1388
1389 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001390 Heap* const heap_;
1391 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001392};
1393
1394class VerifyLiveStackReferences {
1395 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001396 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001397 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001398 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001399
Brian Carlstromdf629502013-07-17 22:39:56 -07001400 void operator()(const mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001401 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1402 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Ian Rogers1d54e732013-05-02 21:10:01 -07001403 collector::MarkSweep::VisitObjectReferences(obj, visitor);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001404 }
1405
1406 bool Failed() const {
1407 return failed_;
1408 }
1409
1410 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001411 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001412 bool failed_;
1413};
1414
1415bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001416 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001417
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001418 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001419 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001420 VerifyLiveStackReferences visitor(this);
1421 GetLiveBitmap()->Visit(visitor);
1422
1423 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001424 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001425 visitor(*it);
1426 }
1427
1428 if (visitor.Failed()) {
1429 DumpSpaces();
1430 return false;
1431 }
1432 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001433}
1434
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001435void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001436 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001437
1438 // Sort the live stack so that we can quickly binary search it later.
Ian Rogers04d7aa92013-03-16 14:29:17 -07001439 if (verify_object_mode_ > kNoHeapVerification) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001440 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001441 }
1442}
1443
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001444void Heap::ProcessCards(base::TimingLogger& timings) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001445 // Clear cards and keep track of cards cleared in the mod-union table.
1446 typedef std::vector<space::ContinuousSpace*>::iterator It;
1447 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
1448 space::ContinuousSpace* space = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001449 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001450 timings.NewSplit("ModUnionClearCards");
1451 image_mod_union_table_->ClearCards(space);
1452 } else if (space->IsZygoteSpace()) {
1453 timings.NewSplit("ZygoteModUnionClearCards");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001454 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001455 } else {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001456 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1457 // were dirty before the GC started.
Ian Rogers1d54e732013-05-02 21:10:01 -07001458 timings.NewSplit("AllocSpaceClearCards");
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001459 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001460 }
1461 }
1462}
1463
Ian Rogers1d54e732013-05-02 21:10:01 -07001464void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001465 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1466 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001467
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001468 if (verify_pre_gc_heap_) {
1469 thread_list->SuspendAll();
1470 {
1471 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1472 if (!VerifyHeapReferences()) {
1473 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1474 }
1475 }
1476 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001477 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001478
1479 // Check that all objects which reference things in the live stack are on dirty cards.
1480 if (verify_missing_card_marks_) {
1481 thread_list->SuspendAll();
1482 {
1483 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1484 SwapStacks();
1485 // Sort the live stack so that we can quickly binary search it later.
1486 if (!VerifyMissingCardMarks()) {
1487 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1488 }
1489 SwapStacks();
1490 }
1491 thread_list->ResumeAll();
1492 }
1493
1494 if (verify_mod_union_table_) {
1495 thread_list->SuspendAll();
1496 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
1497 zygote_mod_union_table_->Update();
1498 zygote_mod_union_table_->Verify();
Ian Rogers1d54e732013-05-02 21:10:01 -07001499 image_mod_union_table_->Update();
1500 image_mod_union_table_->Verify();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001501 thread_list->ResumeAll();
1502 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001503}
1504
Ian Rogers1d54e732013-05-02 21:10:01 -07001505void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001506 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001507
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001508 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1509 // reachable objects.
1510 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001511 Thread* self = Thread::Current();
1512 CHECK_NE(self->GetState(), kRunnable);
1513 Locks::mutator_lock_->SharedUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001514 thread_list->SuspendAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001515 {
1516 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1517 // Swapping bound bitmaps does nothing.
1518 gc->SwapBitmaps();
1519 if (!VerifyHeapReferences()) {
1520 LOG(FATAL) << "Post " << gc->GetName() << "GC verification failed";
1521 }
1522 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001523 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001524 thread_list->ResumeAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001525 Locks::mutator_lock_->SharedLock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001526 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001527}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001528
Ian Rogers1d54e732013-05-02 21:10:01 -07001529void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001530 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001531
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001532 if (verify_system_weaks_) {
1533 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001534 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001535 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001536 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001537}
1538
Ian Rogers1d54e732013-05-02 21:10:01 -07001539collector::GcType Heap::WaitForConcurrentGcToComplete(Thread* self) {
1540 collector::GcType last_gc_type = collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001541 if (concurrent_gc_) {
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001542 ATRACE_BEGIN("GC: Wait For Concurrent");
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001543 bool do_wait;
1544 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001545 {
1546 // Check if GC is running holding gc_complete_lock_.
Ian Rogers81d425b2012-09-27 16:03:43 -07001547 MutexLock mu(self, *gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001548 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001549 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001550 if (do_wait) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001551 uint64_t wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001552 // We must wait, change thread state then sleep on gc_complete_cond_;
1553 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1554 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001555 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001556 while (is_gc_running_) {
Ian Rogersc604d732012-10-14 16:09:54 -07001557 gc_complete_cond_->Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001558 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001559 last_gc_type = last_gc_type_;
Brian Carlstromf69863b2013-07-17 21:53:13 -07001560 wait_time = NanoTime() - wait_start;
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001561 total_wait_time_ += wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001562 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001563 if (wait_time > kLongGcPauseThreshold) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001564 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1565 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001566 }
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001567 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001568 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001569 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001570}
1571
Elliott Hughesc967f782012-04-16 10:23:15 -07001572void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001573 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001574 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001575 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001576}
1577
1578size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001579 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001580}
1581
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001582void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001583 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001584 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001585 << PrettySize(GetMaxMemory());
1586 max_allowed_footprint = GetMaxMemory();
1587 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001588 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001589}
1590
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001591void Heap::UpdateMaxNativeFootprint() {
1592 size_t native_size = native_bytes_allocated_;
1593 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
1594 size_t target_size = native_size / GetTargetHeapUtilization();
1595 if (target_size > native_size + max_free_) {
1596 target_size = native_size + max_free_;
1597 } else if (target_size < native_size + min_free_) {
1598 target_size = native_size + min_free_;
1599 }
1600 native_footprint_gc_watermark_ = target_size;
1601 native_footprint_limit_ = 2 * target_size - native_size;
1602}
1603
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001604void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001605 // We know what our utilization is at this moment.
1606 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001607 const size_t bytes_allocated = GetBytesAllocated();
1608 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001609 last_gc_time_ns_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001610
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001611 size_t target_size;
1612 if (gc_type != collector::kGcTypeSticky) {
1613 // Grow the heap for non sticky GC.
1614 target_size = bytes_allocated / GetTargetHeapUtilization();
1615 if (target_size > bytes_allocated + max_free_) {
1616 target_size = bytes_allocated + max_free_;
1617 } else if (target_size < bytes_allocated + min_free_) {
1618 target_size = bytes_allocated + min_free_;
1619 }
1620 next_gc_type_ = collector::kGcTypeSticky;
1621 } else {
1622 // Based on how close the current heap size is to the target size, decide
1623 // whether or not to do a partial or sticky GC next.
1624 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1625 next_gc_type_ = collector::kGcTypeSticky;
1626 } else {
1627 next_gc_type_ = collector::kGcTypePartial;
1628 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001629
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001630 // If we have freed enough memory, shrink the heap back down.
1631 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1632 target_size = bytes_allocated + max_free_;
1633 } else {
1634 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1635 }
1636 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001637 SetIdealFootprint(target_size);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001638
Ian Rogers1d54e732013-05-02 21:10:01 -07001639 // Calculate when to perform the next ConcurrentGC.
1640 if (concurrent_gc_) {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001641 // Calculate the estimated GC duration.
1642 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1643 // Estimate how many remaining bytes we will have when we need to start the next GC.
1644 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
Ian Rogers1d54e732013-05-02 21:10:01 -07001645 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
1646 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1647 // A never going to happen situation that from the estimated allocation rate we will exceed
1648 // the applications entire footprint with the given estimated allocation rate. Schedule
1649 // another GC straight away.
1650 concurrent_start_bytes_ = bytes_allocated;
1651 } else {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001652 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1653 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1654 // right away.
1655 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001656 }
1657 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1658 DCHECK_LE(max_allowed_footprint_, growth_limit_);
1659 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001660
1661 UpdateMaxNativeFootprint();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001662}
1663
jeffhaoc1160702011-10-27 15:48:45 -07001664void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08001665 growth_limit_ = capacity_;
jeffhaoc1160702011-10-27 15:48:45 -07001666 alloc_space_->ClearGrowthLimit();
1667}
1668
Elliott Hughesadb460d2011-10-05 17:02:34 -07001669void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001670 MemberOffset reference_queue_offset,
1671 MemberOffset reference_queueNext_offset,
1672 MemberOffset reference_pendingNext_offset,
1673 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001674 reference_referent_offset_ = reference_referent_offset;
1675 reference_queue_offset_ = reference_queue_offset;
1676 reference_queueNext_offset_ = reference_queueNext_offset;
1677 reference_pendingNext_offset_ = reference_pendingNext_offset;
1678 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1679 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1680 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1681 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1682 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1683 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1684}
1685
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001686mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001687 DCHECK(reference != NULL);
1688 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001689 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001690}
1691
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001692void Heap::ClearReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001693 DCHECK(reference != NULL);
1694 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1695 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1696}
1697
1698// Returns true if the reference object has not yet been enqueued.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001699bool Heap::IsEnqueuable(const mirror::Object* ref) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001700 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001701 const mirror::Object* queue =
1702 ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false);
1703 const mirror::Object* queue_next =
1704 ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001705 return (queue != NULL) && (queue_next == NULL);
1706}
1707
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001708void Heap::EnqueueReference(mirror::Object* ref, mirror::Object** cleared_reference_list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001709 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001710 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false) != NULL);
1711 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false) == NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001712 EnqueuePendingReference(ref, cleared_reference_list);
1713}
1714
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001715void Heap::EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001716 DCHECK(ref != NULL);
1717 DCHECK(list != NULL);
1718
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001719 // TODO: Remove this lock, use atomic stacks for storing references.
1720 MutexLock mu(Thread::Current(), *reference_queue_lock_);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001721 if (*list == NULL) {
1722 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1723 *list = ref;
1724 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001725 mirror::Object* head =
1726 (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001727 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1728 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1729 }
1730}
1731
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001732mirror::Object* Heap::DequeuePendingReference(mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001733 DCHECK(list != NULL);
1734 DCHECK(*list != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001735 mirror::Object* head = (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1736 false);
1737 mirror::Object* ref;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001738
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001739 // Note: the following code is thread-safe because it is only called from ProcessReferences which
1740 // is single threaded.
Elliott Hughesadb460d2011-10-05 17:02:34 -07001741 if (*list == head) {
1742 ref = *list;
1743 *list = NULL;
1744 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001745 mirror::Object* next = head->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1746 false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001747 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1748 ref = head;
1749 }
1750 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1751 return ref;
1752}
1753
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001754void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001755 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08001756 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001757 ArgArray arg_array(NULL, 0);
1758 arg_array.Append(reinterpret_cast<uint32_t>(object));
1759 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07001760 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001761}
1762
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001763void Heap::EnqueueClearedReferences(mirror::Object** cleared) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001764 DCHECK(cleared != NULL);
1765 if (*cleared != NULL) {
Ian Rogers64b6d142012-10-29 16:34:15 -07001766 // When a runtime isn't started there are no reference queues to care about so ignore.
1767 if (LIKELY(Runtime::Current()->IsStarted())) {
1768 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08001769 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001770 ArgArray arg_array(NULL, 0);
1771 arg_array.Append(reinterpret_cast<uint32_t>(*cleared));
1772 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07001773 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07001774 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001775 *cleared = NULL;
1776 }
1777}
1778
Ian Rogers1f539342012-10-03 21:09:42 -07001779void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001780 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07001781 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001782 DCHECK(concurrent_gc_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001783 if (runtime == NULL || !runtime->IsFinishedStarting() ||
Ian Rogers120f1c72012-09-28 17:17:10 -07001784 !runtime->IsConcurrentGcEnabled()) {
1785 return;
1786 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001787 {
1788 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1789 if (runtime->IsShuttingDown()) {
1790 return;
1791 }
1792 }
1793 if (self->IsHandlingStackOverflow()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001794 return;
1795 }
1796
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001797 // We already have a request pending, no reason to start more until we update
1798 // concurrent_start_bytes_.
1799 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1800
Ian Rogers120f1c72012-09-28 17:17:10 -07001801 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001802 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1803 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001804 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1805 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001806 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001807}
1808
Ian Rogers81d425b2012-09-27 16:03:43 -07001809void Heap::ConcurrentGC(Thread* self) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001810 {
1811 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001812 if (Runtime::Current()->IsShuttingDown()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001813 return;
1814 }
Mathieu Chartier2542d662012-06-21 17:14:11 -07001815 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001816
Mathieu Chartier65db8802012-11-20 12:36:46 -08001817 // Wait for any GCs currently running to finish.
Ian Rogers1d54e732013-05-02 21:10:01 -07001818 if (WaitForConcurrentGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001819 CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001820 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001821}
1822
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001823void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08001824 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
1825 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
1826 // a space it will hold its lock and can become a cause of jank.
1827 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
1828 // forking.
1829
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001830 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1831 // because that only marks object heads, so a large array looks like lots of empty space. We
1832 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1833 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1834 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1835 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08001836 uint64_t ms_time = MilliTime();
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001837 float utilization =
Ian Rogers1d54e732013-05-02 21:10:01 -07001838 static_cast<float>(alloc_space_->GetBytesAllocated()) / alloc_space_->Size();
1839 if ((utilization > 0.75f) || ((ms_time - last_trim_time_ms_) < 2 * 1000)) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001840 // Don't bother trimming the alloc space if it's more than 75% utilized, or if a
1841 // heap trim occurred in the last two seconds.
1842 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001843 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001844
1845 Thread* self = Thread::Current();
1846 {
1847 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1848 Runtime* runtime = Runtime::Current();
1849 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown()) {
1850 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
1851 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
1852 // as we don't hold the lock while requesting the trim).
1853 return;
1854 }
Ian Rogerse1d490c2012-02-03 09:09:07 -08001855 }
Ian Rogers48931882013-01-22 14:35:16 -08001856
1857 SchedPolicy policy;
1858 get_sched_policy(self->GetTid(), &policy);
1859 if (policy == SP_FOREGROUND || policy == SP_AUDIO_APP) {
1860 // Don't trim the heap if we are a foreground or audio app.
1861 return;
1862 }
1863
Ian Rogers1d54e732013-05-02 21:10:01 -07001864 last_trim_time_ms_ = ms_time;
Ian Rogers120f1c72012-09-28 17:17:10 -07001865 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001866 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1867 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001868 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1869 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001870 CHECK(!env->ExceptionCheck());
1871}
1872
Ian Rogers48931882013-01-22 14:35:16 -08001873size_t Heap::Trim() {
1874 // Handle a requested heap trim on a thread outside of the main GC thread.
1875 return alloc_space_->Trim();
1876}
1877
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001878bool Heap::IsGCRequestPending() const {
1879 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
1880}
1881
1882void Heap::RegisterNativeAllocation(int bytes) {
1883 // Total number of native bytes allocated.
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001884 native_bytes_allocated_.fetch_add(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001885 Thread* self = Thread::Current();
1886 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
1887 // The second watermark is higher than the gc watermark. If you hit this it means you are
1888 // allocating native objects faster than the GC can keep up with.
1889 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
1890 JNIEnv* env = self->GetJniEnv();
1891 // Can't do this in WellKnownClasses::Init since System is not properly set up at that
1892 // point.
1893 if (WellKnownClasses::java_lang_System_runFinalization == NULL) {
1894 DCHECK(WellKnownClasses::java_lang_System != NULL);
1895 WellKnownClasses::java_lang_System_runFinalization =
1896 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
1897 assert(WellKnownClasses::java_lang_System_runFinalization != NULL);
1898 }
1899 if (WaitForConcurrentGcToComplete(self) != collector::kGcTypeNone) {
1900 // Just finished a GC, attempt to run finalizers.
1901 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
1902 WellKnownClasses::java_lang_System_runFinalization);
1903 CHECK(!env->ExceptionCheck());
1904 }
1905
1906 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
1907 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
1908 CollectGarbageInternal(collector::kGcTypePartial, kGcCauseForAlloc, false);
1909 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
1910 WellKnownClasses::java_lang_System_runFinalization);
1911 CHECK(!env->ExceptionCheck());
1912 }
1913 // We have just run finalizers, update the native watermark since it is very likely that
1914 // finalizers released native managed allocations.
1915 UpdateMaxNativeFootprint();
1916 } else {
1917 if (!IsGCRequestPending()) {
1918 RequestConcurrentGC(self);
1919 }
1920 }
1921 }
1922}
1923
1924void Heap::RegisterNativeFree(int bytes) {
1925 int expected_size, new_size;
1926 do {
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001927 expected_size = native_bytes_allocated_.load();
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001928 new_size = expected_size - bytes;
1929 if (new_size < 0) {
1930 ThrowRuntimeException("attempted to free %d native bytes with only %d native bytes registered as allocated",
1931 bytes, expected_size);
1932 break;
1933 }
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001934 } while (!native_bytes_allocated_.compare_and_swap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001935}
1936
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07001937int64_t Heap::GetTotalMemory() const {
1938 int64_t ret = 0;
1939 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
1940 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
1941 space::ContinuousSpace* space = *it;
1942 if (space->IsImageSpace()) {
1943 // Currently don't include the image space.
1944 } else if (space->IsDlMallocSpace()) {
1945 // Zygote or alloc space
1946 ret += space->AsDlMallocSpace()->GetFootprint();
1947 }
1948 }
1949 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
1950 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
1951 space::DiscontinuousSpace* space = *it;
1952 if (space->IsLargeObjectSpace()) {
1953 ret += space->AsLargeObjectSpace()->GetBytesAllocated();
1954 }
1955 }
1956 return ret;
1957}
1958
Ian Rogers1d54e732013-05-02 21:10:01 -07001959} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001960} // namespace art