blob: b6cef58fa2846d708006b2b041fb90ce49f6b53f [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 Chartierc7b83a02012-09-11 18:07:39 -070093 verify_missing_card_marks_(false),
94 verify_system_weaks_(false),
95 verify_pre_gc_heap_(false),
96 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -070097 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070098 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -070099 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700100 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800101 allocation_rate_(0),
Ian Rogers1d54e732013-05-02 21:10:01 -0700102 max_allocation_stack_size_(kDesiredHeapVerification > kNoHeapVerification? KB : MB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800103 reference_referent_offset_(0),
104 reference_queue_offset_(0),
105 reference_queueNext_offset_(0),
106 reference_pendingNext_offset_(0),
107 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700108 min_free_(min_free),
109 max_free_(max_free),
110 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700111 total_wait_time_(0),
112 measure_allocation_time_(false),
113 total_allocation_time_(0),
Ian Rogers04d7aa92013-03-16 14:29:17 -0700114 verify_object_mode_(kHeapVerificationNotPermitted) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800115 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800116 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700117 }
118
Ian Rogers1d54e732013-05-02 21:10:01 -0700119 live_bitmap_.reset(new accounting::HeapBitmap(this));
120 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700121
Ian Rogers30fab402012-01-23 15:43:46 -0800122 // Requested begin for the alloc space, to follow the mapped image and oat files
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700123 byte* requested_alloc_space_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800124 std::string image_file_name(original_image_file_name);
125 if (!image_file_name.empty()) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700126 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name);
127 CHECK(image_space != NULL) << "Failed to create space for " << image_file_name;
Ian Rogers1d54e732013-05-02 21:10:01 -0700128 AddContinuousSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800129 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
130 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800131 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
132 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700133 if (oat_file_end_addr > requested_alloc_space_begin) {
134 requested_alloc_space_begin =
135 reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr),
136 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700137 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700138 }
139
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700140 // Allocate the large object space.
Ian Rogers22a20862013-03-16 16:34:57 -0700141 const bool kUseFreeListSpaceForLOS = false;
142 if (kUseFreeListSpaceForLOS) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700143 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
Ian Rogers22a20862013-03-16 16:34:57 -0700144 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -0700145 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
Ian Rogers22a20862013-03-16 16:34:57 -0700146 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700147 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
148 AddDiscontinuousSpace(large_object_space_);
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700149
Ian Rogers1d54e732013-05-02 21:10:01 -0700150 alloc_space_ = space::DlMallocSpace::Create("alloc space",
151 initial_size,
152 growth_limit, capacity,
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700153 requested_alloc_space_begin);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700154 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
jeffhao8161c032012-10-31 15:50:00 -0700155 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -0700156 AddContinuousSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700157
Ian Rogers1d54e732013-05-02 21:10:01 -0700158 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
159 byte* heap_begin = continuous_spaces_.front()->Begin();
160 size_t heap_capacity = continuous_spaces_.back()->End() - continuous_spaces_.front()->Begin();
161 if (continuous_spaces_.back()->IsDlMallocSpace()) {
162 heap_capacity += continuous_spaces_.back()->AsDlMallocSpace()->NonGrowthLimitCapacity();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700163 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700164
Ian Rogers30fab402012-01-23 15:43:46 -0800165 // Mark image objects in the live bitmap
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700166 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -0700167 typedef std::vector<space::ContinuousSpace*>::iterator It;
168 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
169 space::ContinuousSpace* space = *it;
Ian Rogers30fab402012-01-23 15:43:46 -0800170 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700171 space::ImageSpace* image_space = space->AsImageSpace();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700172 image_space->RecordImageAllocations(image_space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800173 }
174 }
175
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800176 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700177 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700178 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700179
Ian Rogers1d54e732013-05-02 21:10:01 -0700180 image_mod_union_table_.reset(new accounting::ModUnionTableToZygoteAllocspace(this));
181 CHECK(image_mod_union_table_.get() != NULL) << "Failed to create image mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700182
Ian Rogers1d54e732013-05-02 21:10:01 -0700183 zygote_mod_union_table_.reset(new accounting::ModUnionTableCardCache(this));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700184 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700185
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700186 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700187 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700188
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800189 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700190 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700191 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
192 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
193 max_allocation_stack_size_));
194 live_stack_.reset(accounting::ObjectStack::Create("live stack",
195 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700196
Mathieu Chartier65db8802012-11-20 12:36:46 -0800197 // It's still too early to take a lock because there are no threads yet, but we can create locks
198 // now. We don't create it earlier to make it clear that you can't use locks during heap
199 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700200 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700201 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
202 *gc_complete_lock_));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700203
Mathieu Chartier63a54342013-07-23 13:17:59 -0700204 // Create the reference queue lock, this is required so for parallel object scanning in the GC.
Ian Rogers1d54e732013-05-02 21:10:01 -0700205 reference_queue_lock_ = new Mutex("reference queue lock");
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700206
Ian Rogers1d54e732013-05-02 21:10:01 -0700207 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800208 last_gc_size_ = GetBytesAllocated();
209
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800210 // Create our garbage collectors.
211 for (size_t i = 0; i < 2; ++i) {
212 const bool concurrent = i != 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700213 mark_sweep_collectors_.push_back(new collector::MarkSweep(this, concurrent));
214 mark_sweep_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
215 mark_sweep_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700216 }
217
Brian Carlstrom42748892013-07-18 18:04:08 -0700218 CHECK_NE(max_allowed_footprint_, 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800219 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800220 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700221 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700222}
223
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700224void Heap::CreateThreadPool() {
Mathieu Chartier63a54342013-07-23 13:17:59 -0700225 thread_pool_.reset(new ThreadPool(num_gc_threads_));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700226}
227
228void Heap::DeleteThreadPool() {
229 thread_pool_.reset(NULL);
230}
231
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700232// Sort spaces based on begin address
Ian Rogers1d54e732013-05-02 21:10:01 -0700233struct ContinuousSpaceSorter {
Brian Carlstromdf629502013-07-17 22:39:56 -0700234 bool operator()(const space::ContinuousSpace* a, const space::ContinuousSpace* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700235 return a->Begin() < b->Begin();
236 }
237};
238
Mathieu Chartier82353312013-07-18 10:47:51 -0700239void Heap::UpdateProcessState(ProcessState process_state) {
240 process_state_ = process_state;
241}
242
Ian Rogers1d54e732013-05-02 21:10:01 -0700243void Heap::AddContinuousSpace(space::ContinuousSpace* space) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700244 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700245 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700246 DCHECK(space->GetLiveBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700247 live_bitmap_->AddContinuousSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700248 DCHECK(space->GetMarkBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700249 mark_bitmap_->AddContinuousSpaceBitmap(space->GetMarkBitmap());
250 continuous_spaces_.push_back(space);
251 if (space->IsDlMallocSpace() && !space->IsLargeObjectSpace()) {
252 alloc_space_ = space->AsDlMallocSpace();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700253 }
254
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700255 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
Ian Rogers1d54e732013-05-02 21:10:01 -0700256 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(), ContinuousSpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700257
258 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
259 // avoid redundant marking.
260 bool seen_zygote = false, seen_alloc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700261 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
262 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
263 space::ContinuousSpace* space = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700264 if (space->IsImageSpace()) {
265 DCHECK(!seen_zygote);
266 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700267 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700268 DCHECK(!seen_alloc);
269 seen_zygote = true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700270 } else if (space->IsDlMallocSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700271 seen_alloc = true;
272 }
273 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800274}
275
Ian Rogers1d54e732013-05-02 21:10:01 -0700276void Heap::AddDiscontinuousSpace(space::DiscontinuousSpace* space) {
277 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
278 DCHECK(space != NULL);
279 DCHECK(space->GetLiveObjects() != NULL);
280 live_bitmap_->AddDiscontinuousObjectSet(space->GetLiveObjects());
281 DCHECK(space->GetMarkObjects() != NULL);
282 mark_bitmap_->AddDiscontinuousObjectSet(space->GetMarkObjects());
283 discontinuous_spaces_.push_back(space);
284}
285
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700286void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700287 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700288 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700289 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800290
291 // Dump cumulative loggers for each GC type.
292 // TODO: C++0x
293 uint64_t total_paused_time = 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700294 typedef std::vector<collector::MarkSweep*>::const_iterator It;
295 for (It it = mark_sweep_collectors_.begin();
Sameer Abu Asala8439542013-02-14 16:06:42 -0800296 it != mark_sweep_collectors_.end(); ++it) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700297 collector::MarkSweep* collector = *it;
Sameer Abu Asala8439542013-02-14 16:06:42 -0800298 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800299 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700300 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800301 const uint64_t total_ns = logger.GetTotalNs();
Ian Rogers1d54e732013-05-02 21:10:01 -0700302 const uint64_t total_pause_ns = (*it)->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800303 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
304 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
305 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700306 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
307 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
308 << collector->GetName() << " freed: " << freed_objects
309 << " objects with total size " << PrettySize(freed_bytes) << "\n"
310 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
311 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800312 total_duration += total_ns;
313 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700314 }
315 }
316 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700317 size_t total_objects_allocated = GetObjectsAllocatedEver();
318 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700319 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700320 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700321 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
322 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700323 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700324 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700325 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700326 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700327 os << "Total number of allocations: " << total_objects_allocated << "\n";
328 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700329 if (measure_allocation_time_) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700330 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
331 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
332 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700333 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700334 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
335 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700336}
337
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800338Heap::~Heap() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700339 if (kDumpGcPerformanceOnShutdown) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700340 DumpGcPerformanceInfo(LOG(INFO));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700341 }
342
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800343 STLDeleteElements(&mark_sweep_collectors_);
344
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700345 // If we don't reset then the mark stack complains in it's destructor.
346 allocation_stack_->Reset();
347 live_stack_->Reset();
348
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800349 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800350 // We can't take the heap lock here because there might be a daemon thread suspended with the
351 // heap lock held. We know though that no non-daemon threads are executing, and we know that
352 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
353 // 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 -0700354 STLDeleteElements(&continuous_spaces_);
355 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700356 delete gc_complete_lock_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700357 delete reference_queue_lock_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700358}
359
Ian Rogers1d54e732013-05-02 21:10:01 -0700360space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
361 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700362 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700363 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
364 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700365 if ((*it)->Contains(obj)) {
366 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700367 }
368 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700369 if (!fail_ok) {
370 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
371 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700372 return NULL;
373}
374
Ian Rogers1d54e732013-05-02 21:10:01 -0700375space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
376 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700377 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700378 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It;
379 for (It it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
380 if ((*it)->Contains(obj)) {
381 return *it;
382 }
383 }
384 if (!fail_ok) {
385 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
386 }
387 return NULL;
388}
389
390space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
391 space::Space* result = FindContinuousSpaceFromObject(obj, true);
392 if (result != NULL) {
393 return result;
394 }
395 return FindDiscontinuousSpaceFromObject(obj, true);
396}
397
398space::ImageSpace* Heap::GetImageSpace() const {
399 // TODO: C++0x auto
400 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
401 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700402 if ((*it)->IsImageSpace()) {
403 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700404 }
405 }
406 return NULL;
407}
408
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700409static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700410 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700411 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700412 size_t chunk_free_bytes = chunk_size - used_bytes;
413 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
414 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700415 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700416}
417
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800418mirror::Object* Heap::AllocObject(Thread* self, mirror::Class* c, size_t byte_count) {
419 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(mirror::Class)) ||
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700420 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
421 strlen(ClassHelper(c).GetDescriptor()) == 0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800422 DCHECK_GE(byte_count, sizeof(mirror::Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700423
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800424 mirror::Object* obj = NULL;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700425 size_t size = 0;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700426 uint64_t allocation_start = 0;
Ian Rogers333cf1b2013-07-24 11:57:02 -0700427 if (UNLIKELY(measure_allocation_time_)) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700428 allocation_start = NanoTime() / kTimeAdjust;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700429 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700430
431 // We need to have a zygote space or else our newly allocated large object can end up in the
432 // Zygote resulting in it being prematurely freed.
433 // We can only do this for primive objects since large objects will not be within the card table
434 // range. This also means that we rely on SetClass not dirtying the object's card.
Ian Rogers333cf1b2013-07-24 11:57:02 -0700435 bool large_object_allocation =
436 byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray();
437 if (UNLIKELY(large_object_allocation)) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700438 size = RoundUp(byte_count, kPageSize);
Ian Rogers1d54e732013-05-02 21:10:01 -0700439 obj = Allocate(self, large_object_space_, size);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700440 // Make sure that our large object didn't get placed anywhere within the space interval or else
441 // it breaks the immune range.
442 DCHECK(obj == NULL ||
Ian Rogers1d54e732013-05-02 21:10:01 -0700443 reinterpret_cast<byte*>(obj) < continuous_spaces_.front()->Begin() ||
444 reinterpret_cast<byte*>(obj) >= continuous_spaces_.back()->End());
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700445 } else {
Ian Rogers50b35e22012-10-04 10:09:15 -0700446 obj = Allocate(self, alloc_space_, byte_count);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700447
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700448 // Ensure that we did not allocate into a zygote space.
Ian Rogers1d54e732013-05-02 21:10:01 -0700449 DCHECK(obj == NULL || !have_zygote_space_ || !FindSpaceFromObject(obj, false)->IsZygoteSpace());
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700450 size = alloc_space_->AllocationSize(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700451 }
452
Mathieu Chartier037813d2012-08-23 16:44:59 -0700453 if (LIKELY(obj != NULL)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700454 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700455
456 // Record allocation after since we want to use the atomic add for the atomic fence to guard
457 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700458 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700459
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700460 if (Dbg::IsAllocTrackingEnabled()) {
461 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700462 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700463 if (static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700464 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800465 SirtRef<mirror::Object> ref(self, obj);
Ian Rogers1f539342012-10-03 21:09:42 -0700466 RequestConcurrentGC(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700467 }
468 VerifyObject(obj);
469
Ian Rogers333cf1b2013-07-24 11:57:02 -0700470 if (UNLIKELY(measure_allocation_time_)) {
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700471 total_allocation_time_.fetch_add(NanoTime() / kTimeAdjust - allocation_start);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700472 }
473
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700474 return obj;
Ian Rogers333cf1b2013-07-24 11:57:02 -0700475 } else {
476 std::ostringstream oss;
477 int64_t total_bytes_free = GetFreeMemory();
478 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
479 << " free bytes";
480 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
481 if (!large_object_allocation && total_bytes_free >= byte_count) {
482 size_t max_contiguous_allocation = 0;
483 // TODO: C++0x auto
484 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
485 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
486 space::ContinuousSpace* space = *it;
487 if (space->IsDlMallocSpace()) {
488 space->AsDlMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
489 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800490 }
Ian Rogers333cf1b2013-07-24 11:57:02 -0700491 oss << "; failed due to fragmentation (largest possible contiguous allocation "
492 << max_contiguous_allocation << " bytes)";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700493 }
Ian Rogers333cf1b2013-07-24 11:57:02 -0700494 self->ThrowOutOfMemoryError(oss.str().c_str());
495 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700496 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700497}
498
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800499bool Heap::IsHeapAddress(const mirror::Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700500 // Note: we deliberately don't take the lock here, and mustn't test anything that would
501 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700502 if (obj == NULL) {
503 return true;
504 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700505 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700506 return false;
507 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700508 return FindSpaceFromObject(obj, true) != NULL;
Elliott Hughesa2501992011-08-26 19:39:54 -0700509}
510
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800511bool Heap::IsLiveObjectLocked(const mirror::Object* obj) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700512 //Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
513 if (obj == NULL) {
514 return false;
515 }
516 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
517 return false;
518 }
519 space::ContinuousSpace* cont_space = FindContinuousSpaceFromObject(obj, true);
520 if (cont_space != NULL) {
521 if (cont_space->GetLiveBitmap()->Test(obj)) {
522 return true;
523 }
524 } else {
525 space::DiscontinuousSpace* disc_space = FindDiscontinuousSpaceFromObject(obj, true);
526 if (disc_space != NULL) {
527 if (disc_space->GetLiveObjects()->Test(obj)) {
528 return true;
529 }
530 }
531 }
532 for (size_t i = 0; i < 5; ++i) {
533 if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj)) ||
534 live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
535 return true;
536 }
537 NanoSleep(MsToNs(10));
538 }
539 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700540}
541
Ian Rogers04d7aa92013-03-16 14:29:17 -0700542void Heap::VerifyObjectImpl(const mirror::Object* obj) {
543 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700544 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700545 return;
546 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700547 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700548}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700549
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700550void Heap::DumpSpaces() {
551 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700552 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
553 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
554 space::ContinuousSpace* space = *it;
555 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
556 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700557 LOG(INFO) << space << " " << *space << "\n"
558 << live_bitmap << " " << *live_bitmap << "\n"
559 << mark_bitmap << " " << *mark_bitmap;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700560 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700561 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
562 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
563 space::DiscontinuousSpace* space = *it;
564 LOG(INFO) << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700565 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700566}
567
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800568void Heap::VerifyObjectBody(const mirror::Object* obj) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800569 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700570 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700571 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800572 if (UNLIKELY(GetObjectsAllocated() <= 10)) { // Ignore early dawn of the universe verifications.
573 return;
574 }
575 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
576 mirror::Object::ClassOffset().Int32Value();
577 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
578 if (UNLIKELY(c == NULL)) {
579 LOG(FATAL) << "Null class in object: " << obj;
580 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
581 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
582 }
583 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
584 // Note: we don't use the accessors here as they have internal sanity checks
585 // that we don't want to run
586 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
587 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
588 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
589 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
590 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700591
Ian Rogers62d6c772013-02-27 08:32:07 -0800592 if (verify_object_mode_ != kVerifyAllFast) {
593 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
594 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700595 if (!IsLiveObjectLocked(obj)) {
596 DumpSpaces();
597 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700598 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700599 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700600 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
601 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700602 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700603}
604
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800605void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700606 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700607 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700608}
609
610void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700611 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700612 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700613}
614
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800615void Heap::RecordAllocation(size_t size, mirror::Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700616 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700617 DCHECK_GT(size, 0u);
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700618 num_bytes_allocated_.fetch_add(size);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700619
620 if (Runtime::Current()->HasStatsEnabled()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700621 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700622 ++thread_stats->allocated_objects;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700623 thread_stats->allocated_bytes += size;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700624
625 // TODO: Update these atomically.
626 RuntimeStats* global_stats = Runtime::Current()->GetStats();
627 ++global_stats->allocated_objects;
628 global_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700629 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700630
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700631 // This is safe to do since the GC will never free objects which are neither in the allocation
632 // stack or the live bitmap.
633 while (!allocation_stack_->AtomicPushBack(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700634 CollectGarbageInternal(collector::kGcTypeSticky, kGcCauseForAlloc, false);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700635 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700636}
637
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700638void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700639 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700640 num_bytes_allocated_.fetch_sub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700641
642 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700643 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700644 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700645 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700646
647 // TODO: Do this concurrently.
648 RuntimeStats* global_stats = Runtime::Current()->GetStats();
649 global_stats->freed_objects += freed_objects;
650 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700651 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700652}
653
Ian Rogers1d54e732013-05-02 21:10:01 -0700654mirror::Object* Heap::TryToAllocate(Thread* self, space::AllocSpace* space, size_t alloc_size,
655 bool grow) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700656 // Should we try to use a CAS here and fix up num_bytes_allocated_ later with AllocationSize?
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800657 if (num_bytes_allocated_ + alloc_size > max_allowed_footprint_) {
658 // max_allowed_footprint_ <= growth_limit_ so it is safe to check in here.
659 if (num_bytes_allocated_ + alloc_size > growth_limit_) {
660 // Completely out of memory.
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700661 return NULL;
662 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700663 }
664
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700665 return space->Alloc(self, alloc_size);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700666}
667
Ian Rogers1d54e732013-05-02 21:10:01 -0700668mirror::Object* Heap::Allocate(Thread* self, space::AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700669 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
670 // done in the runnable state where suspension is expected.
Ian Rogers81d425b2012-09-27 16:03:43 -0700671 DCHECK_EQ(self->GetState(), kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700672 self->AssertThreadSuspensionIsAllowable();
Brian Carlstromb82b6872011-10-26 17:18:07 -0700673
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800674 mirror::Object* ptr = TryToAllocate(self, space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700675 if (ptr != NULL) {
676 return ptr;
677 }
678
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700679 // The allocation failed. If the GC is running, block until it completes, and then retry the
680 // allocation.
Ian Rogers1d54e732013-05-02 21:10:01 -0700681 collector::GcType last_gc = WaitForConcurrentGcToComplete(self);
682 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700683 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Ian Rogers50b35e22012-10-04 10:09:15 -0700684 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700685 if (ptr != NULL) {
686 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700687 }
688 }
689
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700690 // Loop through our different Gc types and try to Gc until we get enough free memory.
Ian Rogers1d54e732013-05-02 21:10:01 -0700691 for (size_t i = static_cast<size_t>(last_gc) + 1;
692 i < static_cast<size_t>(collector::kGcTypeMax); ++i) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700693 bool run_gc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700694 collector::GcType gc_type = static_cast<collector::GcType>(i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700695 switch (gc_type) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700696 case collector::kGcTypeSticky: {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700697 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700698 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
699 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700700 break;
701 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700702 case collector::kGcTypePartial:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700703 run_gc = have_zygote_space_;
704 break;
Ian Rogers1d54e732013-05-02 21:10:01 -0700705 case collector::kGcTypeFull:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700706 run_gc = true;
707 break;
708 default:
709 break;
710 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700711
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700712 if (run_gc) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700713 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
Ian Rogers1d54e732013-05-02 21:10:01 -0700714 collector::GcType gc_type_ran = CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier65db8802012-11-20 12:36:46 -0800715 DCHECK_GE(static_cast<size_t>(gc_type_ran), i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700716 i = static_cast<size_t>(gc_type_ran);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700717
718 // Did we free sufficient memory for the allocation to succeed?
Ian Rogers50b35e22012-10-04 10:09:15 -0700719 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700720 if (ptr != NULL) {
721 return ptr;
722 }
723 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700724 }
725
726 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700727 // Try harder, growing the heap if necessary.
Ian Rogers50b35e22012-10-04 10:09:15 -0700728 ptr = TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700729 if (ptr != NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700730 return ptr;
731 }
732
Elliott Hughes81ff3182012-03-23 20:35:56 -0700733 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
734 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
735 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700736
Elliott Hughes418dfe72011-10-06 18:56:27 -0700737 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700738 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
739 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700740
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700741 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers1d54e732013-05-02 21:10:01 -0700742 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseForAlloc, true);
Ian Rogers50b35e22012-10-04 10:09:15 -0700743 return TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700744}
745
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700746void Heap::SetTargetHeapUtilization(float target) {
747 DCHECK_GT(target, 0.0f); // asserted in Java code
748 DCHECK_LT(target, 1.0f);
749 target_utilization_ = target;
750}
751
Ian Rogers1d54e732013-05-02 21:10:01 -0700752size_t Heap::GetObjectsAllocated() const {
753 size_t total = 0;
754 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
755 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
756 space::ContinuousSpace* space = *it;
757 if (space->IsDlMallocSpace()) {
758 total += space->AsDlMallocSpace()->GetObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700759 }
760 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700761 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
762 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
763 space::DiscontinuousSpace* space = *it;
764 total += space->AsLargeObjectSpace()->GetObjectsAllocated();
765 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700766 return total;
767}
768
Ian Rogers1d54e732013-05-02 21:10:01 -0700769size_t Heap::GetObjectsAllocatedEver() const {
770 size_t total = 0;
771 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
772 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
773 space::ContinuousSpace* space = *it;
774 if (space->IsDlMallocSpace()) {
775 total += space->AsDlMallocSpace()->GetTotalObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700776 }
777 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700778 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
779 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
780 space::DiscontinuousSpace* space = *it;
781 total += space->AsLargeObjectSpace()->GetTotalObjectsAllocated();
782 }
783 return total;
784}
785
786size_t Heap::GetBytesAllocatedEver() const {
787 size_t total = 0;
788 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
789 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
790 space::ContinuousSpace* space = *it;
791 if (space->IsDlMallocSpace()) {
792 total += space->AsDlMallocSpace()->GetTotalBytesAllocated();
793 }
794 }
795 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
796 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
797 space::DiscontinuousSpace* space = *it;
798 total += space->AsLargeObjectSpace()->GetTotalBytesAllocated();
799 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700800 return total;
801}
802
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700803class InstanceCounter {
804 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800805 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700806 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800807 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700808 }
809
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800810 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800811 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800812 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800813 if (use_is_assignable_from_) {
814 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
815 ++counts_[i];
816 }
817 } else {
818 if (instance_class == classes_[i]) {
819 ++counts_[i];
820 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700821 }
822 }
823 }
824
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700825 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800826 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800827 bool use_is_assignable_from_;
828 uint64_t* const counts_;
829
830 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700831};
832
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800833void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800834 uint64_t* counts) {
835 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
836 // is empty, so the live bitmap is the only place we need to look.
837 Thread* self = Thread::Current();
838 self->TransitionFromRunnableToSuspended(kNative);
839 CollectGarbage(false);
840 self->TransitionFromSuspendedToRunnable();
841
842 InstanceCounter counter(classes, use_is_assignable_from, counts);
843 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700844 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700845}
846
Elliott Hughes3b78c942013-01-15 17:35:41 -0800847class InstanceCollector {
848 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800849 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800850 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
851 : class_(c), max_count_(max_count), instances_(instances) {
852 }
853
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800854 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
855 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -0800856 if (instance_class == class_) {
857 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800858 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800859 }
860 }
861 }
862
863 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800864 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800865 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800866 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800867
868 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
869};
870
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800871void Heap::GetInstances(mirror::Class* c, int32_t max_count,
872 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800873 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
874 // is empty, so the live bitmap is the only place we need to look.
875 Thread* self = Thread::Current();
876 self->TransitionFromRunnableToSuspended(kNative);
877 CollectGarbage(false);
878 self->TransitionFromSuspendedToRunnable();
879
880 InstanceCollector collector(c, max_count, instances);
881 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
882 GetLiveBitmap()->Visit(collector);
883}
884
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800885class ReferringObjectsFinder {
886 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800887 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
888 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800889 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
890 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
891 }
892
893 // For bitmap Visit.
894 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
895 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800896 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -0700897 collector::MarkSweep::VisitObjectReferences(o, *this);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800898 }
899
900 // For MarkSweep::VisitObjectReferences.
Brian Carlstromdf629502013-07-17 22:39:56 -0700901 void operator()(const mirror::Object* referrer, const mirror::Object* object,
902 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800903 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800904 referring_objects_.push_back(const_cast<mirror::Object*>(referrer));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800905 }
906 }
907
908 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800909 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800910 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800911 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800912
913 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
914};
915
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800916void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
917 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800918 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
919 // is empty, so the live bitmap is the only place we need to look.
920 Thread* self = Thread::Current();
921 self->TransitionFromRunnableToSuspended(kNative);
922 CollectGarbage(false);
923 self->TransitionFromSuspendedToRunnable();
924
925 ReferringObjectsFinder finder(o, max_count, referring_objects);
926 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
927 GetLiveBitmap()->Visit(finder);
928}
929
Ian Rogers30fab402012-01-23 15:43:46 -0800930void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700931 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
932 // last GC will not have necessarily been cleared.
Ian Rogers81d425b2012-09-27 16:03:43 -0700933 Thread* self = Thread::Current();
934 WaitForConcurrentGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700935 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700936}
937
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700938void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700939 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800940 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
941 CollectGarbage(false);
Ian Rogers81d425b2012-09-27 16:03:43 -0700942 Thread* self = Thread::Current();
943 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700944
945 // Try to see if we have any Zygote spaces.
946 if (have_zygote_space_) {
947 return;
948 }
949
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700950 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
951
952 {
953 // Flush the alloc stack.
Ian Rogers81d425b2012-09-27 16:03:43 -0700954 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700955 FlushAllocStack();
956 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700957
Ian Rogers1d54e732013-05-02 21:10:01 -0700958 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
959 // of the remaining available heap memory.
960 space::DlMallocSpace* zygote_space = alloc_space_;
961 alloc_space_ = zygote_space->CreateZygoteSpace();
962 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700963
Ian Rogers1d54e732013-05-02 21:10:01 -0700964 // Change the GC retention policy of the zygote space to only collect when full.
965 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
966 AddContinuousSpace(alloc_space_);
967 have_zygote_space_ = true;
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700968
Ian Rogers5f5a2c02012-09-17 10:52:08 -0700969 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700970 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -0700971 typedef std::vector<collector::MarkSweep*>::const_iterator It;
972 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
973 it != end; ++it) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800974 (*it)->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -0700975 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700976}
977
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700978void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700979 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
980 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700981 allocation_stack_->Reset();
982}
983
Ian Rogers1d54e732013-05-02 21:10:01 -0700984void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
985 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800986 mirror::Object** limit = stack->End();
987 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
988 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700989 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700990 if (LIKELY(bitmap->HasAddress(obj))) {
991 bitmap->Set(obj);
992 } else {
993 large_objects->Set(obj);
994 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700995 }
996}
997
Ian Rogers1d54e732013-05-02 21:10:01 -0700998void Heap::UnMarkAllocStack(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->Clear(obj);
1006 } else {
1007 large_objects->Clear(obj);
1008 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001009 }
1010}
1011
Ian Rogers1d54e732013-05-02 21:10:01 -07001012collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1013 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001014 Thread* self = Thread::Current();
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001015
1016 switch (gc_cause) {
1017 case kGcCauseForAlloc:
1018 ATRACE_BEGIN("GC (alloc)");
1019 break;
1020 case kGcCauseBackground:
1021 ATRACE_BEGIN("GC (background)");
1022 break;
1023 case kGcCauseExplicit:
1024 ATRACE_BEGIN("GC (explicit)");
1025 break;
1026 }
1027
Mathieu Chartier65db8802012-11-20 12:36:46 -08001028 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001029 Locks::mutator_lock_->AssertNotHeld(self);
Carl Shapiro58551df2011-07-24 03:09:51 -07001030
Ian Rogers120f1c72012-09-28 17:17:10 -07001031 if (self->IsHandlingStackOverflow()) {
1032 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1033 }
1034
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001035 // Ensure there is only one GC at a time.
1036 bool start_collect = false;
1037 while (!start_collect) {
1038 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001039 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001040 if (!is_gc_running_) {
1041 is_gc_running_ = true;
1042 start_collect = true;
1043 }
1044 }
1045 if (!start_collect) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001046 WaitForConcurrentGcToComplete(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001047 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1048 // Not doing at the moment to ensure soft references are cleared.
1049 }
1050 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001051 gc_complete_lock_->AssertNotHeld(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001052
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001053 if (gc_cause == kGcCauseForAlloc && Runtime::Current()->HasStatsEnabled()) {
1054 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
1055 ++Thread::Current()->GetStats()->gc_for_alloc_count;
1056 }
1057
Ian Rogers1d54e732013-05-02 21:10:01 -07001058 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001059 uint64_t gc_start_size = GetBytesAllocated();
1060 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001061 if (UNLIKELY(gc_start_time_ns == last_gc_time_ns_)) {
Jeff Hao9bd02812013-02-08 14:29:50 -08001062 LOG(WARNING) << "Timers are broken (gc_start_time == last_gc_time_).";
1063 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001064 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001065 if (ms_delta != 0) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001066 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001067 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1068 }
1069
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001070 if (gc_type == collector::kGcTypeSticky &&
1071 alloc_space_->Size() < min_alloc_space_size_for_sticky_gc_) {
1072 gc_type = collector::kGcTypePartial;
1073 }
1074
Ian Rogers1d54e732013-05-02 21:10:01 -07001075 DCHECK_LT(gc_type, collector::kGcTypeMax);
1076 DCHECK_NE(gc_type, collector::kGcTypeNone);
1077 collector::MarkSweep* collector = NULL;
1078 typedef std::vector<collector::MarkSweep*>::iterator It;
1079 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
1080 it != end; ++it) {
1081 collector::MarkSweep* cur_collector = *it;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001082 if (cur_collector->IsConcurrent() == concurrent_gc_ && cur_collector->GetGcType() == gc_type) {
1083 collector = cur_collector;
1084 break;
1085 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001086 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001087 CHECK(collector != NULL)
1088 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1089 << " and type=" << gc_type;
1090 collector->clear_soft_references_ = clear_soft_references;
1091 collector->Run();
Ian Rogers1d54e732013-05-02 21:10:01 -07001092 total_objects_freed_ever_ += collector->GetFreedObjects();
1093 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001094
Ian Rogers1d54e732013-05-02 21:10:01 -07001095 const size_t duration = collector->GetDurationNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001096 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1097 bool was_slow = duration > kSlowGcThreshold ||
1098 (gc_cause == kGcCauseForAlloc && duration > kLongGcPauseThreshold);
1099 for (size_t i = 0; i < pauses.size(); ++i) {
1100 if (pauses[i] > kLongGcPauseThreshold) {
1101 was_slow = true;
1102 }
1103 }
1104
1105 if (was_slow) {
1106 const size_t percent_free = GetPercentFree();
Ian Rogers1d54e732013-05-02 21:10:01 -07001107 const size_t current_heap_size = GetBytesAllocated();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001108 const size_t total_memory = GetTotalMemory();
1109 std::ostringstream pause_string;
1110 for (size_t i = 0; i < pauses.size(); ++i) {
1111 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1112 << ((i != pauses.size() - 1) ? ", " : "");
1113 }
1114 LOG(INFO) << gc_cause << " " << collector->GetName()
Sameer Abu Asala8439542013-02-14 16:06:42 -08001115 << "GC freed " << PrettySize(collector->GetFreedBytes()) << ", "
1116 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1117 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1118 << " total " << PrettyDuration((duration / 1000) * 1000);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001119 if (VLOG_IS_ON(heap)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001120 LOG(INFO) << Dumpable<base::NewTimingLogger>(collector->GetTimings());
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001121 }
1122 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001123
Ian Rogers15bf2d32012-08-28 17:33:04 -07001124 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001125 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001126 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001127 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -07001128 // Wake anyone who may have been waiting for the GC to complete.
Ian Rogersc604d732012-10-14 16:09:54 -07001129 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001130 }
1131 // Inform DDMS that a GC completed.
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001132 ATRACE_END();
Ian Rogers15bf2d32012-08-28 17:33:04 -07001133 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001134 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001135}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001136
Ian Rogers1d54e732013-05-02 21:10:01 -07001137void Heap::UpdateAndMarkModUnion(collector::MarkSweep* mark_sweep, base::NewTimingLogger& timings,
1138 collector::GcType gc_type) {
1139 if (gc_type == collector::kGcTypeSticky) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001140 // 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 -07001141 // cards.
1142 return;
1143 }
1144
1145 // Update zygote mod union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001146 if (gc_type == collector::kGcTypePartial) {
1147 timings.NewSplit("UpdateZygoteModUnionTable");
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001148 zygote_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001149
Ian Rogers1d54e732013-05-02 21:10:01 -07001150 timings.NewSplit("ZygoteMarkReferences");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001151 zygote_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001152 }
1153
1154 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001155 timings.NewSplit("UpdateModUnionTable");
1156 image_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001157
1158 // Scans all objects in the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001159 timings.NewSplit("MarkImageToAllocSpaceReferences");
1160 image_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001161}
1162
Ian Rogers1d54e732013-05-02 21:10:01 -07001163static void RootMatchesObjectVisitor(const mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001164 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001165 if (root == obj) {
1166 LOG(INFO) << "Object " << obj << " is a root";
1167 }
1168}
1169
1170class ScanVisitor {
1171 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001172 void operator()(const mirror::Object* obj) const {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001173 LOG(INFO) << "Would have rescanned object " << obj;
1174 }
1175};
1176
Ian Rogers1d54e732013-05-02 21:10:01 -07001177// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001178class VerifyReferenceVisitor {
1179 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001180 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001181 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001182 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001183
1184 bool Failed() const {
1185 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001186 }
1187
1188 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001189 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001190 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1191 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001192 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001193 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001194 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1195 accounting::CardTable* card_table = heap_->GetCardTable();
1196 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1197 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001198
Ian Rogers1d54e732013-05-02 21:10:01 -07001199 if (obj != NULL) {
1200 byte* card_addr = card_table->CardFromAddr(obj);
1201 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset " << offset
1202 << "\nIsDirty = " << (*card_addr == accounting::CardTable::kCardDirty)
1203 << "\nObj type " << PrettyTypeOf(obj)
1204 << "\nRef type " << PrettyTypeOf(ref);
1205 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1206 void* cover_begin = card_table->AddrFromCard(card_addr);
1207 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1208 accounting::CardTable::kCardSize);
1209 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1210 << "-" << cover_end;
1211 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001212
Ian Rogers1d54e732013-05-02 21:10:01 -07001213 // Print out how the object is live.
1214 if (bitmap != NULL && bitmap->Test(obj)) {
1215 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1216 }
1217 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
1218 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1219 }
1220 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
1221 LOG(ERROR) << "Object " << obj << " found in live stack";
1222 }
1223 // Attempt to see if the card table missed the reference.
1224 ScanVisitor scan_visitor;
1225 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1226 card_table->Scan(bitmap, byte_cover_begin,
1227 byte_cover_begin + accounting::CardTable::kCardSize,
1228 scan_visitor, VoidFunctor());
1229
1230 // Search to see if any of the roots reference our object.
1231 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1232 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1233
1234 // Search to see if any of the roots reference our reference.
1235 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1236 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1237 } else {
1238 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001239 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001240 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1241 LOG(ERROR) << "Reference " << ref << " found in allocation stack!";
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001242 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001243 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001244 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001245 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001246 heap_->image_mod_union_table_->Dump(LOG(ERROR) << "Image mod-union table: ");
1247 heap_->zygote_mod_union_table_->Dump(LOG(ERROR) << "Zygote mod-union table: ");
1248 failed_ = true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001249 }
1250 }
1251
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001252 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -07001253 return heap_->IsLiveObjectLocked(obj);
1254 }
1255
1256 static void VerifyRoots(const mirror::Object* root, void* arg) {
1257 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
1258 (*visitor)(NULL, root, MemberOffset(0), true);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001259 }
1260
1261 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001262 Heap* const heap_;
1263 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001264};
1265
Ian Rogers1d54e732013-05-02 21:10:01 -07001266// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001267class VerifyObjectVisitor {
1268 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001269 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001270
Brian Carlstromdf629502013-07-17 22:39:56 -07001271 void operator()(const mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001272 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001273 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1274 // be live or else how did we find it in the live bitmap?
1275 VerifyReferenceVisitor visitor(heap_);
1276 collector::MarkSweep::VisitObjectReferences(obj, visitor);
1277 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001278 }
1279
1280 bool Failed() const {
1281 return failed_;
1282 }
1283
1284 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001285 Heap* const heap_;
1286 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001287};
1288
1289// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001290bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001291 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001292 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001293 allocation_stack_->Sort();
1294 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001295 // Perform the verification.
1296 VerifyObjectVisitor visitor(this);
Ian Rogers1d54e732013-05-02 21:10:01 -07001297 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001298 GetLiveBitmap()->Visit(visitor);
1299 // We don't want to verify the objects in the allocation stack since they themselves may be
1300 // pointing to dead objects if they are not reachable.
1301 if (visitor.Failed()) {
1302 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001303 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001304 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001305 return true;
1306}
1307
1308class VerifyReferenceCardVisitor {
1309 public:
1310 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1311 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1312 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001313 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001314 }
1315
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001316 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1317 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001318 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1319 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001320 // Filter out class references since changing an object's class does not mark the card as dirty.
1321 // Also handles large objects, since the only reference they hold is a class reference.
1322 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001323 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001324 // If the object is not dirty and it is referencing something in the live stack other than
1325 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001326 if (!card_table->AddrIsInCardTable(obj)) {
1327 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1328 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001329 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001330 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1331 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001332 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
1333 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1334 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001335 LOG(ERROR) << "Object " << obj << " found in live stack";
1336 }
1337 if (heap_->GetLiveBitmap()->Test(obj)) {
1338 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1339 }
1340 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1341 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1342
1343 // Print which field of the object is dead.
1344 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001345 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001346 CHECK(klass != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001347 const mirror::ObjectArray<mirror::Field>* fields = is_static ? klass->GetSFields()
1348 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001349 CHECK(fields != NULL);
1350 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001351 const mirror::Field* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001352 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1353 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1354 << PrettyField(cur);
1355 break;
1356 }
1357 }
1358 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001359 const mirror::ObjectArray<mirror::Object>* object_array =
1360 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001361 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1362 if (object_array->Get(i) == ref) {
1363 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1364 }
1365 }
1366 }
1367
1368 *failed_ = true;
1369 }
1370 }
1371 }
1372 }
1373
1374 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001375 Heap* const heap_;
1376 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001377};
1378
1379class VerifyLiveStackReferences {
1380 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001381 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001382 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001383 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001384
Brian Carlstromdf629502013-07-17 22:39:56 -07001385 void operator()(const mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1387 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Ian Rogers1d54e732013-05-02 21:10:01 -07001388 collector::MarkSweep::VisitObjectReferences(obj, visitor);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001389 }
1390
1391 bool Failed() const {
1392 return failed_;
1393 }
1394
1395 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001396 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001397 bool failed_;
1398};
1399
1400bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001401 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001402
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001403 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001404 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001405 VerifyLiveStackReferences visitor(this);
1406 GetLiveBitmap()->Visit(visitor);
1407
1408 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001409 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001410 visitor(*it);
1411 }
1412
1413 if (visitor.Failed()) {
1414 DumpSpaces();
1415 return false;
1416 }
1417 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001418}
1419
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001420void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001421 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001422
1423 // Sort the live stack so that we can quickly binary search it later.
Ian Rogers04d7aa92013-03-16 14:29:17 -07001424 if (verify_object_mode_ > kNoHeapVerification) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001425 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001426 }
1427}
1428
Ian Rogers1d54e732013-05-02 21:10:01 -07001429void Heap::ProcessCards(base::NewTimingLogger& timings) {
1430 // Clear cards and keep track of cards cleared in the mod-union table.
1431 typedef std::vector<space::ContinuousSpace*>::iterator It;
1432 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
1433 space::ContinuousSpace* space = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001434 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001435 timings.NewSplit("ModUnionClearCards");
1436 image_mod_union_table_->ClearCards(space);
1437 } else if (space->IsZygoteSpace()) {
1438 timings.NewSplit("ZygoteModUnionClearCards");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001439 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001440 } else {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001441 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1442 // were dirty before the GC started.
Ian Rogers1d54e732013-05-02 21:10:01 -07001443 timings.NewSplit("AllocSpaceClearCards");
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001444 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001445 }
1446 }
1447}
1448
Ian Rogers1d54e732013-05-02 21:10:01 -07001449void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001450 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1451 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001452
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001453 if (verify_pre_gc_heap_) {
1454 thread_list->SuspendAll();
1455 {
1456 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1457 if (!VerifyHeapReferences()) {
1458 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1459 }
1460 }
1461 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001462 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001463
1464 // Check that all objects which reference things in the live stack are on dirty cards.
1465 if (verify_missing_card_marks_) {
1466 thread_list->SuspendAll();
1467 {
1468 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1469 SwapStacks();
1470 // Sort the live stack so that we can quickly binary search it later.
1471 if (!VerifyMissingCardMarks()) {
1472 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1473 }
1474 SwapStacks();
1475 }
1476 thread_list->ResumeAll();
1477 }
1478
1479 if (verify_mod_union_table_) {
1480 thread_list->SuspendAll();
1481 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
1482 zygote_mod_union_table_->Update();
1483 zygote_mod_union_table_->Verify();
Ian Rogers1d54e732013-05-02 21:10:01 -07001484 image_mod_union_table_->Update();
1485 image_mod_union_table_->Verify();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001486 thread_list->ResumeAll();
1487 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001488}
1489
Ian Rogers1d54e732013-05-02 21:10:01 -07001490void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001491 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001492
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001493 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1494 // reachable objects.
1495 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001496 Thread* self = Thread::Current();
1497 CHECK_NE(self->GetState(), kRunnable);
1498 Locks::mutator_lock_->SharedUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001499 thread_list->SuspendAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001500 {
1501 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1502 // Swapping bound bitmaps does nothing.
1503 gc->SwapBitmaps();
1504 if (!VerifyHeapReferences()) {
1505 LOG(FATAL) << "Post " << gc->GetName() << "GC verification failed";
1506 }
1507 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001508 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001509 thread_list->ResumeAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001510 Locks::mutator_lock_->SharedLock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001511 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001512}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001513
Ian Rogers1d54e732013-05-02 21:10:01 -07001514void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001515 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001516
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001517 if (verify_system_weaks_) {
1518 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001519 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001520 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001521 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001522}
1523
Ian Rogers1d54e732013-05-02 21:10:01 -07001524collector::GcType Heap::WaitForConcurrentGcToComplete(Thread* self) {
1525 collector::GcType last_gc_type = collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001526 if (concurrent_gc_) {
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001527 ATRACE_BEGIN("GC: Wait For Concurrent");
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001528 bool do_wait;
1529 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001530 {
1531 // Check if GC is running holding gc_complete_lock_.
Ian Rogers81d425b2012-09-27 16:03:43 -07001532 MutexLock mu(self, *gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001533 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001534 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001535 if (do_wait) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001536 uint64_t wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001537 // We must wait, change thread state then sleep on gc_complete_cond_;
1538 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1539 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001540 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001541 while (is_gc_running_) {
Ian Rogersc604d732012-10-14 16:09:54 -07001542 gc_complete_cond_->Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001543 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001544 last_gc_type = last_gc_type_;
Brian Carlstromf69863b2013-07-17 21:53:13 -07001545 wait_time = NanoTime() - wait_start;
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001546 total_wait_time_ += wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001547 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001548 if (wait_time > kLongGcPauseThreshold) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001549 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1550 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001551 }
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001552 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001553 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001554 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001555}
1556
Elliott Hughesc967f782012-04-16 10:23:15 -07001557void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001558 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001559 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001560 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001561}
1562
1563size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001564 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001565}
1566
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001567void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001568 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001569 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001570 << PrettySize(GetMaxMemory());
1571 max_allowed_footprint = GetMaxMemory();
1572 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001573 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001574}
1575
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001576void Heap::UpdateMaxNativeFootprint() {
1577 size_t native_size = native_bytes_allocated_;
1578 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
1579 size_t target_size = native_size / GetTargetHeapUtilization();
1580 if (target_size > native_size + max_free_) {
1581 target_size = native_size + max_free_;
1582 } else if (target_size < native_size + min_free_) {
1583 target_size = native_size + min_free_;
1584 }
1585 native_footprint_gc_watermark_ = target_size;
1586 native_footprint_limit_ = 2 * target_size - native_size;
1587}
1588
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001589void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001590 // We know what our utilization is at this moment.
1591 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001592 const size_t bytes_allocated = GetBytesAllocated();
1593 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001594 last_gc_time_ns_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001595
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001596 size_t target_size;
1597 if (gc_type != collector::kGcTypeSticky) {
1598 // Grow the heap for non sticky GC.
1599 target_size = bytes_allocated / GetTargetHeapUtilization();
1600 if (target_size > bytes_allocated + max_free_) {
1601 target_size = bytes_allocated + max_free_;
1602 } else if (target_size < bytes_allocated + min_free_) {
1603 target_size = bytes_allocated + min_free_;
1604 }
1605 next_gc_type_ = collector::kGcTypeSticky;
1606 } else {
1607 // Based on how close the current heap size is to the target size, decide
1608 // whether or not to do a partial or sticky GC next.
1609 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1610 next_gc_type_ = collector::kGcTypeSticky;
1611 } else {
1612 next_gc_type_ = collector::kGcTypePartial;
1613 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001614
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001615 // If we have freed enough memory, shrink the heap back down.
1616 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1617 target_size = bytes_allocated + max_free_;
1618 } else {
1619 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1620 }
1621 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001622 SetIdealFootprint(target_size);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001623
Ian Rogers1d54e732013-05-02 21:10:01 -07001624 // Calculate when to perform the next ConcurrentGC.
1625 if (concurrent_gc_) {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001626 // Calculate the estimated GC duration.
1627 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1628 // Estimate how many remaining bytes we will have when we need to start the next GC.
1629 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
Ian Rogers1d54e732013-05-02 21:10:01 -07001630 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
1631 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1632 // A never going to happen situation that from the estimated allocation rate we will exceed
1633 // the applications entire footprint with the given estimated allocation rate. Schedule
1634 // another GC straight away.
1635 concurrent_start_bytes_ = bytes_allocated;
1636 } else {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001637 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1638 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1639 // right away.
1640 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001641 }
1642 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1643 DCHECK_LE(max_allowed_footprint_, growth_limit_);
1644 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001645
1646 UpdateMaxNativeFootprint();
Carl Shapiro69759ea2011-07-21 18:13:35 -07001647}
1648
jeffhaoc1160702011-10-27 15:48:45 -07001649void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08001650 growth_limit_ = capacity_;
jeffhaoc1160702011-10-27 15:48:45 -07001651 alloc_space_->ClearGrowthLimit();
1652}
1653
Elliott Hughesadb460d2011-10-05 17:02:34 -07001654void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001655 MemberOffset reference_queue_offset,
1656 MemberOffset reference_queueNext_offset,
1657 MemberOffset reference_pendingNext_offset,
1658 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001659 reference_referent_offset_ = reference_referent_offset;
1660 reference_queue_offset_ = reference_queue_offset;
1661 reference_queueNext_offset_ = reference_queueNext_offset;
1662 reference_pendingNext_offset_ = reference_pendingNext_offset;
1663 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1664 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1665 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1666 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1667 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1668 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1669}
1670
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001671mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001672 DCHECK(reference != NULL);
1673 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001674 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001675}
1676
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001677void Heap::ClearReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001678 DCHECK(reference != NULL);
1679 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1680 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1681}
1682
1683// Returns true if the reference object has not yet been enqueued.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001684bool Heap::IsEnqueuable(const mirror::Object* ref) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001685 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001686 const mirror::Object* queue =
1687 ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false);
1688 const mirror::Object* queue_next =
1689 ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001690 return (queue != NULL) && (queue_next == NULL);
1691}
1692
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001693void Heap::EnqueueReference(mirror::Object* ref, mirror::Object** cleared_reference_list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001694 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001695 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false) != NULL);
1696 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false) == NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001697 EnqueuePendingReference(ref, cleared_reference_list);
1698}
1699
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001700void Heap::EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001701 DCHECK(ref != NULL);
1702 DCHECK(list != NULL);
1703
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001704 // TODO: Remove this lock, use atomic stacks for storing references.
1705 MutexLock mu(Thread::Current(), *reference_queue_lock_);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001706 if (*list == NULL) {
1707 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1708 *list = ref;
1709 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001710 mirror::Object* head =
1711 (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001712 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1713 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1714 }
1715}
1716
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001717mirror::Object* Heap::DequeuePendingReference(mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001718 DCHECK(list != NULL);
1719 DCHECK(*list != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001720 mirror::Object* head = (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1721 false);
1722 mirror::Object* ref;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001723
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001724 // Note: the following code is thread-safe because it is only called from ProcessReferences which
1725 // is single threaded.
Elliott Hughesadb460d2011-10-05 17:02:34 -07001726 if (*list == head) {
1727 ref = *list;
1728 *list = NULL;
1729 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001730 mirror::Object* next = head->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1731 false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001732 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1733 ref = head;
1734 }
1735 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1736 return ref;
1737}
1738
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001739void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001740 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08001741 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001742 ArgArray arg_array(NULL, 0);
1743 arg_array.Append(reinterpret_cast<uint32_t>(object));
1744 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07001745 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001746}
1747
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001748void Heap::EnqueueClearedReferences(mirror::Object** cleared) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001749 DCHECK(cleared != NULL);
1750 if (*cleared != NULL) {
Ian Rogers64b6d142012-10-29 16:34:15 -07001751 // When a runtime isn't started there are no reference queues to care about so ignore.
1752 if (LIKELY(Runtime::Current()->IsStarted())) {
1753 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08001754 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001755 ArgArray arg_array(NULL, 0);
1756 arg_array.Append(reinterpret_cast<uint32_t>(*cleared));
1757 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07001758 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07001759 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001760 *cleared = NULL;
1761 }
1762}
1763
Ian Rogers1f539342012-10-03 21:09:42 -07001764void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001765 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07001766 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001767 DCHECK(concurrent_gc_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001768 if (runtime == NULL || !runtime->IsFinishedStarting() ||
Ian Rogers120f1c72012-09-28 17:17:10 -07001769 !runtime->IsConcurrentGcEnabled()) {
1770 return;
1771 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001772 {
1773 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1774 if (runtime->IsShuttingDown()) {
1775 return;
1776 }
1777 }
1778 if (self->IsHandlingStackOverflow()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001779 return;
1780 }
1781
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001782 // We already have a request pending, no reason to start more until we update
1783 // concurrent_start_bytes_.
1784 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1785
Ian Rogers120f1c72012-09-28 17:17:10 -07001786 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001787 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1788 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001789 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1790 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001791 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001792}
1793
Ian Rogers81d425b2012-09-27 16:03:43 -07001794void Heap::ConcurrentGC(Thread* self) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001795 {
1796 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001797 if (Runtime::Current()->IsShuttingDown()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001798 return;
1799 }
Mathieu Chartier2542d662012-06-21 17:14:11 -07001800 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001801
Mathieu Chartier65db8802012-11-20 12:36:46 -08001802 // Wait for any GCs currently running to finish.
Ian Rogers1d54e732013-05-02 21:10:01 -07001803 if (WaitForConcurrentGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001804 CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001805 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001806}
1807
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001808void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08001809 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
1810 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
1811 // a space it will hold its lock and can become a cause of jank.
1812 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
1813 // forking.
1814
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001815 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1816 // because that only marks object heads, so a large array looks like lots of empty space. We
1817 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1818 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1819 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1820 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08001821 uint64_t ms_time = MilliTime();
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001822 float utilization =
Ian Rogers1d54e732013-05-02 21:10:01 -07001823 static_cast<float>(alloc_space_->GetBytesAllocated()) / alloc_space_->Size();
1824 if ((utilization > 0.75f) || ((ms_time - last_trim_time_ms_) < 2 * 1000)) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001825 // Don't bother trimming the alloc space if it's more than 75% utilized, or if a
1826 // heap trim occurred in the last two seconds.
1827 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001828 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001829
1830 Thread* self = Thread::Current();
1831 {
1832 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1833 Runtime* runtime = Runtime::Current();
1834 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown()) {
1835 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
1836 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
1837 // as we don't hold the lock while requesting the trim).
1838 return;
1839 }
Ian Rogerse1d490c2012-02-03 09:09:07 -08001840 }
Ian Rogers48931882013-01-22 14:35:16 -08001841
1842 SchedPolicy policy;
1843 get_sched_policy(self->GetTid(), &policy);
1844 if (policy == SP_FOREGROUND || policy == SP_AUDIO_APP) {
1845 // Don't trim the heap if we are a foreground or audio app.
1846 return;
1847 }
1848
Ian Rogers1d54e732013-05-02 21:10:01 -07001849 last_trim_time_ms_ = ms_time;
Ian Rogers120f1c72012-09-28 17:17:10 -07001850 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001851 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1852 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001853 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1854 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001855 CHECK(!env->ExceptionCheck());
1856}
1857
Ian Rogers48931882013-01-22 14:35:16 -08001858size_t Heap::Trim() {
1859 // Handle a requested heap trim on a thread outside of the main GC thread.
1860 return alloc_space_->Trim();
1861}
1862
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001863bool Heap::IsGCRequestPending() const {
1864 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
1865}
1866
1867void Heap::RegisterNativeAllocation(int bytes) {
1868 // Total number of native bytes allocated.
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001869 native_bytes_allocated_.fetch_add(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001870 Thread* self = Thread::Current();
1871 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
1872 // The second watermark is higher than the gc watermark. If you hit this it means you are
1873 // allocating native objects faster than the GC can keep up with.
1874 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
1875 JNIEnv* env = self->GetJniEnv();
1876 // Can't do this in WellKnownClasses::Init since System is not properly set up at that
1877 // point.
1878 if (WellKnownClasses::java_lang_System_runFinalization == NULL) {
1879 DCHECK(WellKnownClasses::java_lang_System != NULL);
1880 WellKnownClasses::java_lang_System_runFinalization =
1881 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
1882 assert(WellKnownClasses::java_lang_System_runFinalization != NULL);
1883 }
1884 if (WaitForConcurrentGcToComplete(self) != collector::kGcTypeNone) {
1885 // Just finished a GC, attempt to run finalizers.
1886 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
1887 WellKnownClasses::java_lang_System_runFinalization);
1888 CHECK(!env->ExceptionCheck());
1889 }
1890
1891 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
1892 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
1893 CollectGarbageInternal(collector::kGcTypePartial, kGcCauseForAlloc, false);
1894 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
1895 WellKnownClasses::java_lang_System_runFinalization);
1896 CHECK(!env->ExceptionCheck());
1897 }
1898 // We have just run finalizers, update the native watermark since it is very likely that
1899 // finalizers released native managed allocations.
1900 UpdateMaxNativeFootprint();
1901 } else {
1902 if (!IsGCRequestPending()) {
1903 RequestConcurrentGC(self);
1904 }
1905 }
1906 }
1907}
1908
1909void Heap::RegisterNativeFree(int bytes) {
1910 int expected_size, new_size;
1911 do {
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001912 expected_size = native_bytes_allocated_.load();
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001913 new_size = expected_size - bytes;
1914 if (new_size < 0) {
1915 ThrowRuntimeException("attempted to free %d native bytes with only %d native bytes registered as allocated",
1916 bytes, expected_size);
1917 break;
1918 }
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07001919 } while (!native_bytes_allocated_.compare_and_swap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001920}
1921
Ian Rogers1d54e732013-05-02 21:10:01 -07001922} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001923} // namespace art