blob: 5e62729c2eccdb89f2f68b5e96bea4fe49315e99 [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>
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -070024#include <valgrind.h>
Carl Shapiro58551df2011-07-24 03:09:51 -070025
Mathieu Chartierb2f99362013-11-20 17:26:00 -080026#include "base/histogram-inl.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/stl_util.h"
Mathieu Chartier987ccff2013-07-08 11:05:21 -070028#include "common_throws.h"
Ian Rogers48931882013-01-22 14:35:16 -080029#include "cutils/sched_policy.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070030#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/accounting/atomic_stack.h"
32#include "gc/accounting/card_table-inl.h"
33#include "gc/accounting/heap_bitmap-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070034#include "gc/accounting/mod_union_table.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070035#include "gc/accounting/mod_union_table-inl.h"
36#include "gc/accounting/space_bitmap-inl.h"
37#include "gc/collector/mark_sweep-inl.h"
38#include "gc/collector/partial_mark_sweep.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070039#include "gc/collector/semi_space.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070040#include "gc/collector/sticky_mark_sweep.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070041#include "gc/space/bump_pointer_space.h"
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -070042#include "gc/space/dlmalloc_space-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070043#include "gc/space/image_space.h"
44#include "gc/space/large_object_space.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070045#include "gc/space/rosalloc_space-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070046#include "gc/space/space-inl.h"
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070047#include "heap-inl.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070048#include "image.h"
Jeff Hao5d917302013-02-27 17:57:33 -080049#include "invoke_arg_array_builder.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070050#include "mirror/art_field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "mirror/object.h"
53#include "mirror/object-inl.h"
54#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080055#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080056#include "os.h"
Mathieu Chartier0de9f732013-11-22 17:58:48 -080057#include "runtime.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070058#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070059#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070060#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070061#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070062#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070063#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070064
65namespace art {
Mathieu Chartier50482232013-11-21 11:48:14 -080066
67extern void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator);
68
Ian Rogers1d54e732013-05-02 21:10:01 -070069namespace gc {
Carl Shapiro69759ea2011-07-21 18:13:35 -070070
Mathieu Chartier720ef762013-08-17 14:46:54 -070071static constexpr bool kGCALotMode = false;
72static constexpr size_t kGcAlotInterval = KB;
Ian Rogers1d54e732013-05-02 21:10:01 -070073// Minimum amount of remaining bytes before a concurrent GC is triggered.
Mathieu Chartier720ef762013-08-17 14:46:54 -070074static constexpr size_t kMinConcurrentRemainingBytes = 128 * KB;
Mathieu Chartier0051be62012-10-12 17:47:11 -070075
Mathieu Chartier0051be62012-10-12 17:47:11 -070076Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070077 double target_utilization, size_t capacity, const std::string& image_file_name,
Mathieu Chartier0de9f732013-11-22 17:58:48 -080078 CollectorType collector_type, size_t parallel_gc_threads, size_t conc_gc_threads,
Mathieu Chartier2775ee42013-08-20 17:43:47 -070079 bool low_memory_mode, size_t long_pause_log_threshold, size_t long_gc_log_threshold,
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -080080 bool ignore_max_footprint)
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080081 : non_moving_space_(nullptr),
Mathieu Chartier0de9f732013-11-22 17:58:48 -080082 concurrent_gc_(collector_type == gc::kCollectorTypeCMS),
83 collector_type_(collector_type),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070084 parallel_gc_threads_(parallel_gc_threads),
85 conc_gc_threads_(conc_gc_threads),
Mathieu Chartiere0a53e92013-08-05 10:17:40 -070086 low_memory_mode_(low_memory_mode),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070087 long_pause_log_threshold_(long_pause_log_threshold),
88 long_gc_log_threshold_(long_gc_log_threshold),
89 ignore_max_footprint_(ignore_max_footprint),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070090 have_zygote_space_(false),
Mathieu Chartier39e32612013-11-12 16:28:05 -080091 soft_reference_queue_(this),
92 weak_reference_queue_(this),
93 finalizer_reference_queue_(this),
94 phantom_reference_queue_(this),
95 cleared_references_(this),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080096 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -070097 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -070098 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -080099 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700100 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700101 max_allowed_footprint_(initial_size),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700102 native_footprint_gc_watermark_(initial_size),
103 native_footprint_limit_(2 * initial_size),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700104 native_need_to_run_finalization_(false),
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700105 activity_thread_class_(NULL),
106 application_thread_class_(NULL),
107 activity_thread_(NULL),
108 application_thread_(NULL),
109 last_process_state_id_(NULL),
110 // Initially care about pauses in case we never get notified of process states, or if the JNI
111 // code becomes broken.
112 care_about_pause_times_(true),
Mathieu Chartier720ef762013-08-17 14:46:54 -0700113 concurrent_start_bytes_(concurrent_gc_ ? initial_size - kMinConcurrentRemainingBytes
114 : std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -0700115 total_bytes_freed_ever_(0),
116 total_objects_freed_ever_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800117 num_bytes_allocated_(0),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700118 native_bytes_allocated_(0),
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700119 gc_memory_overhead_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700120 verify_missing_card_marks_(false),
121 verify_system_weaks_(false),
122 verify_pre_gc_heap_(false),
123 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700124 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700125 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700126 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700127 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800128 allocation_rate_(0),
Mathieu Chartier0418ae22013-07-31 13:35:46 -0700129 /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
130 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
131 * verification is enabled, we limit the size of allocation stacks to speed up their
132 * searching.
133 */
134 max_allocation_stack_size_(kGCALotMode ? kGcAlotInterval
Mathieu Chartier590fee92013-09-13 13:46:47 -0700135 : (kDesiredHeapVerification > kVerifyAllFast) ? KB : MB),
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800136 current_allocator_(kMovingCollector ? kAllocatorTypeBumpPointer : kAllocatorTypeFreeList),
137 current_non_moving_allocator_(kAllocatorTypeFreeList),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700138 bump_pointer_space_(nullptr),
139 temp_space_(nullptr),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800140 reference_referent_offset_(0),
141 reference_queue_offset_(0),
142 reference_queueNext_offset_(0),
143 reference_pendingNext_offset_(0),
144 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700145 min_free_(min_free),
146 max_free_(max_free),
147 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700148 total_wait_time_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700149 total_allocation_time_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700150 verify_object_mode_(kHeapVerificationNotPermitted),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700151 gc_disable_count_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700152 running_on_valgrind_(RUNNING_ON_VALGRIND) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800153 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800154 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700155 }
Mathieu Chartier50482232013-11-21 11:48:14 -0800156 // If we aren't the zygote, switch to the default non zygote allocator. This may update the
157 // entrypoints.
158 if (!Runtime::Current()->IsZygote()) {
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800159 ChangeCollector(collector_type_);
Mathieu Chartier50482232013-11-21 11:48:14 -0800160 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700161 live_bitmap_.reset(new accounting::HeapBitmap(this));
162 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Ian Rogers30fab402012-01-23 15:43:46 -0800163 // Requested begin for the alloc space, to follow the mapped image and oat files
Mathieu Chartier50482232013-11-21 11:48:14 -0800164 byte* requested_alloc_space_begin = nullptr;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800165 if (!image_file_name.empty()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700166 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name.c_str());
Mathieu Chartier50482232013-11-21 11:48:14 -0800167 CHECK(image_space != nullptr) << "Failed to create space for " << image_file_name;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700168 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800169 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
170 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800171 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
172 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700173 if (oat_file_end_addr > requested_alloc_space_begin) {
Mathieu Chartier50482232013-11-21 11:48:14 -0800174 requested_alloc_space_begin = AlignUp(oat_file_end_addr, kPageSize);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700175 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700176 }
177
Mathieu Chartier590fee92013-09-13 13:46:47 -0700178 const char* name = Runtime::Current()->IsZygote() ? "zygote space" : "alloc space";
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700179 if (!kUseRosAlloc) {
180 non_moving_space_ = space::DlMallocSpace::Create(name, initial_size, growth_limit, capacity,
181 requested_alloc_space_begin);
182 } else {
183 non_moving_space_ = space::RosAllocSpace::Create(name, initial_size, growth_limit, capacity,
184 requested_alloc_space_begin);
185 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700186 if (kMovingCollector) {
187 // TODO: Place bump-pointer spaces somewhere to minimize size of card table.
188 // TODO: Having 3+ spaces as big as the large heap size can cause virtual memory fragmentation
189 // issues.
190 const size_t bump_pointer_space_size = std::min(non_moving_space_->Capacity(), 128 * MB);
191 bump_pointer_space_ = space::BumpPointerSpace::Create("Bump pointer space",
192 bump_pointer_space_size, nullptr);
193 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space";
194 AddSpace(bump_pointer_space_);
195 temp_space_ = space::BumpPointerSpace::Create("Bump pointer space 2", bump_pointer_space_size,
196 nullptr);
197 CHECK(temp_space_ != nullptr) << "Failed to create bump pointer space";
198 AddSpace(temp_space_);
199 }
200
201 CHECK(non_moving_space_ != NULL) << "Failed to create non-moving space";
202 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
203 AddSpace(non_moving_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700204
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700205 // Allocate the large object space.
206 const bool kUseFreeListSpaceForLOS = false;
207 if (kUseFreeListSpaceForLOS) {
208 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
209 } else {
210 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
211 }
212 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700213 AddSpace(large_object_space_);
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700214
Ian Rogers1d54e732013-05-02 21:10:01 -0700215 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
Mathieu Chartier590fee92013-09-13 13:46:47 -0700216 CHECK(!continuous_spaces_.empty());
217 // Relies on the spaces being sorted.
Ian Rogers1d54e732013-05-02 21:10:01 -0700218 byte* heap_begin = continuous_spaces_.front()->Begin();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700219 byte* heap_end = continuous_spaces_.back()->Limit();
220 size_t heap_capacity = heap_end - heap_begin;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700221
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800222 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700223 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700224 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700225
Mathieu Chartier590fee92013-09-13 13:46:47 -0700226 // Card cache for now since it makes it easier for us to update the references to the copying
227 // spaces.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700228 accounting::ModUnionTable* mod_union_table =
Mathieu Chartier590fee92013-09-13 13:46:47 -0700229 new accounting::ModUnionTableCardCache("Image mod-union table", this, GetImageSpace());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700230 CHECK(mod_union_table != nullptr) << "Failed to create image mod-union table";
231 AddModUnionTable(mod_union_table);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700232
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700233 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700234 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700235
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800236 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700237 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700238 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
239 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
240 max_allocation_stack_size_));
241 live_stack_.reset(accounting::ObjectStack::Create("live stack",
242 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700243
Mathieu Chartier65db8802012-11-20 12:36:46 -0800244 // It's still too early to take a lock because there are no threads yet, but we can create locks
245 // now. We don't create it earlier to make it clear that you can't use locks during heap
246 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700247 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700248 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
249 *gc_complete_lock_));
Ian Rogers1d54e732013-05-02 21:10:01 -0700250 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800251 last_gc_size_ = GetBytesAllocated();
252
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700253 if (ignore_max_footprint_) {
254 SetIdealFootprint(std::numeric_limits<size_t>::max());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700255 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700256 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700257 CHECK_NE(max_allowed_footprint_, 0U);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700258
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800259 // Create our garbage collectors.
Mathieu Chartier50482232013-11-21 11:48:14 -0800260 for (size_t i = 0; i < 2; ++i) {
261 const bool concurrent = i != 0;
262 garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent));
263 garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
264 garbage_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
265 }
266 gc_plan_.push_back(collector::kGcTypeSticky);
267 gc_plan_.push_back(collector::kGcTypePartial);
268 gc_plan_.push_back(collector::kGcTypeFull);
269 if (kMovingCollector) {
270 // TODO: Clean this up.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700271 semi_space_collector_ = new collector::SemiSpace(this);
272 garbage_collectors_.push_back(semi_space_collector_);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700273 }
274
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700275 if (running_on_valgrind_) {
Ian Rogersfa824272013-11-05 16:12:57 -0800276 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700277 }
278
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800279 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800280 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700281 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700282}
283
Mathieu Chartier50482232013-11-21 11:48:14 -0800284void Heap::ChangeAllocator(AllocatorType allocator) {
285 DCHECK_NE(allocator, kAllocatorTypeLOS);
286 if (current_allocator_ != allocator) {
287 current_allocator_ = allocator;
288 SetQuickAllocEntryPointsAllocator(current_allocator_);
289 Runtime::Current()->GetInstrumentation()->ResetQuickAllocEntryPoints();
290 }
291}
292
Mathieu Chartier590fee92013-09-13 13:46:47 -0700293bool Heap::IsCompilingBoot() const {
294 for (const auto& space : continuous_spaces_) {
295 if (space->IsImageSpace()) {
296 return false;
297 } else if (space->IsZygoteSpace()) {
298 return false;
299 }
300 }
301 return true;
302}
303
304bool Heap::HasImageSpace() const {
305 for (const auto& space : continuous_spaces_) {
306 if (space->IsImageSpace()) {
307 return true;
308 }
309 }
310 return false;
311}
312
313void Heap::IncrementDisableGC(Thread* self) {
314 // Need to do this holding the lock to prevent races where the GC is about to run / running when
315 // we attempt to disable it.
316 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
317 MutexLock mu(self, *gc_complete_lock_);
318 WaitForGcToCompleteLocked(self);
319 ++gc_disable_count_;
320}
321
322void Heap::DecrementDisableGC(Thread* self) {
323 MutexLock mu(self, *gc_complete_lock_);
324 CHECK_GE(gc_disable_count_, 0U);
325 --gc_disable_count_;
326}
327
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700328void Heap::CreateThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700329 const size_t num_threads = std::max(parallel_gc_threads_, conc_gc_threads_);
330 if (num_threads != 0) {
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800331 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700332 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700333}
334
Mathieu Chartier590fee92013-09-13 13:46:47 -0700335void Heap::VisitObjects(ObjectVisitorCallback callback, void* arg) {
336 // Visit objects in bump pointer space.
337 Thread* self = Thread::Current();
338 // TODO: Use reference block.
339 std::vector<SirtRef<mirror::Object>*> saved_refs;
340 if (bump_pointer_space_ != nullptr) {
341 // Need to put all these in sirts since the callback may trigger a GC. TODO: Use a better data
342 // structure.
343 mirror::Object* obj = reinterpret_cast<mirror::Object*>(bump_pointer_space_->Begin());
344 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(
345 bump_pointer_space_->End());
346 while (obj < end) {
347 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
348 obj = space::BumpPointerSpace::GetNextObject(obj);
349 }
350 }
351 // TODO: Switch to standard begin and end to use ranged a based loop.
352 for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End();
353 it < end; ++it) {
354 mirror::Object* obj = *it;
355 // Objects in the allocation stack might be in a movable space.
356 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
357 }
358 GetLiveBitmap()->Walk(callback, arg);
359 for (const auto& ref : saved_refs) {
360 callback(ref->get(), arg);
361 }
362 // Need to free the sirts in reverse order they were allocated.
363 for (size_t i = saved_refs.size(); i != 0; --i) {
364 delete saved_refs[i - 1];
365 }
366}
367
368void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) {
369 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(), stack);
370}
371
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700372void Heap::DeleteThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700373 thread_pool_.reset(nullptr);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700374}
375
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700376static bool ReadStaticInt(JNIEnvExt* env, jclass clz, const char* name, int* out_value) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700377 DCHECK(out_value != NULL);
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700378 jfieldID field = env->GetStaticFieldID(clz, name, "I");
379 if (field == NULL) {
380 env->ExceptionClear();
381 return false;
382 }
383 *out_value = env->GetStaticIntField(clz, field);
384 return true;
385}
386
387void Heap::ListenForProcessStateChange() {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700388 VLOG(heap) << "Heap notified of process state change";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700389
390 Thread* self = Thread::Current();
391 JNIEnvExt* env = self->GetJniEnv();
392
393 if (!have_zygote_space_) {
394 return;
395 }
396
397 if (activity_thread_class_ == NULL) {
398 jclass clz = env->FindClass("android/app/ActivityThread");
399 if (clz == NULL) {
400 env->ExceptionClear();
401 LOG(WARNING) << "Could not find activity thread class in process state change";
402 return;
403 }
404 activity_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
405 }
406
407 if (activity_thread_class_ != NULL && activity_thread_ == NULL) {
408 jmethodID current_activity_method = env->GetStaticMethodID(activity_thread_class_,
409 "currentActivityThread",
410 "()Landroid/app/ActivityThread;");
411 if (current_activity_method == NULL) {
412 env->ExceptionClear();
413 LOG(WARNING) << "Could not get method for currentActivityThread";
414 return;
415 }
416
417 jobject obj = env->CallStaticObjectMethod(activity_thread_class_, current_activity_method);
418 if (obj == NULL) {
419 env->ExceptionClear();
420 LOG(WARNING) << "Could not get current activity";
421 return;
422 }
423 activity_thread_ = env->NewGlobalRef(obj);
424 }
425
426 if (process_state_cares_about_pause_time_.empty()) {
427 // Just attempt to do this the first time.
428 jclass clz = env->FindClass("android/app/ActivityManager");
429 if (clz == NULL) {
430 LOG(WARNING) << "Activity manager class is null";
431 return;
432 }
433 ScopedLocalRef<jclass> activity_manager(env, clz);
434 std::vector<const char*> care_about_pauses;
435 care_about_pauses.push_back("PROCESS_STATE_TOP");
436 care_about_pauses.push_back("PROCESS_STATE_IMPORTANT_BACKGROUND");
437 // Attempt to read the constants and classify them as whether or not we care about pause times.
438 for (size_t i = 0; i < care_about_pauses.size(); ++i) {
439 int process_state = 0;
440 if (ReadStaticInt(env, activity_manager.get(), care_about_pauses[i], &process_state)) {
441 process_state_cares_about_pause_time_.insert(process_state);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700442 VLOG(heap) << "Adding process state " << process_state
443 << " to set of states which care about pause time";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700444 }
445 }
446 }
447
448 if (application_thread_class_ == NULL) {
449 jclass clz = env->FindClass("android/app/ActivityThread$ApplicationThread");
450 if (clz == NULL) {
451 env->ExceptionClear();
452 LOG(WARNING) << "Could not get application thread class";
453 return;
454 }
455 application_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
456 last_process_state_id_ = env->GetFieldID(application_thread_class_, "mLastProcessState", "I");
457 if (last_process_state_id_ == NULL) {
458 env->ExceptionClear();
459 LOG(WARNING) << "Could not get last process state member";
460 return;
461 }
462 }
463
464 if (application_thread_class_ != NULL && application_thread_ == NULL) {
465 jmethodID get_application_thread =
466 env->GetMethodID(activity_thread_class_, "getApplicationThread",
467 "()Landroid/app/ActivityThread$ApplicationThread;");
468 if (get_application_thread == NULL) {
469 LOG(WARNING) << "Could not get method ID for get application thread";
470 return;
471 }
472
473 jobject obj = env->CallObjectMethod(activity_thread_, get_application_thread);
474 if (obj == NULL) {
475 LOG(WARNING) << "Could not get application thread";
476 return;
477 }
478
479 application_thread_ = env->NewGlobalRef(obj);
480 }
481
482 if (application_thread_ != NULL && last_process_state_id_ != NULL) {
483 int process_state = env->GetIntField(application_thread_, last_process_state_id_);
484 env->ExceptionClear();
485
486 care_about_pause_times_ = process_state_cares_about_pause_time_.find(process_state) !=
487 process_state_cares_about_pause_time_.end();
488
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700489 VLOG(heap) << "New process state " << process_state
490 << " care about pauses " << care_about_pause_times_;
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700491 }
Mathieu Chartier82353312013-07-18 10:47:51 -0700492}
493
Mathieu Chartier590fee92013-09-13 13:46:47 -0700494void Heap::AddSpace(space::Space* space) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700495 DCHECK(space != NULL);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700496 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
497 if (space->IsContinuousSpace()) {
498 DCHECK(!space->IsDiscontinuousSpace());
499 space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
500 // Continuous spaces don't necessarily have bitmaps.
501 accounting::SpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
502 accounting::SpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
503 if (live_bitmap != nullptr) {
504 DCHECK(mark_bitmap != nullptr);
505 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap);
506 mark_bitmap_->AddContinuousSpaceBitmap(mark_bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700507 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700508
509 continuous_spaces_.push_back(continuous_space);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700510 if (continuous_space->IsMallocSpace()) {
511 non_moving_space_ = continuous_space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700512 }
513
514 // Ensure that spaces remain sorted in increasing order of start address.
515 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(),
516 [](const space::ContinuousSpace* a, const space::ContinuousSpace* b) {
517 return a->Begin() < b->Begin();
518 });
519 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
520 // avoid redundant marking.
521 bool seen_zygote = false, seen_alloc = false;
522 for (const auto& space : continuous_spaces_) {
523 if (space->IsImageSpace()) {
524 CHECK(!seen_zygote);
525 CHECK(!seen_alloc);
526 } else if (space->IsZygoteSpace()) {
527 CHECK(!seen_alloc);
528 seen_zygote = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700529 } else if (space->IsMallocSpace()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700530 seen_alloc = true;
531 }
532 }
533 } else {
534 DCHECK(space->IsDiscontinuousSpace());
535 space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
536 DCHECK(discontinuous_space->GetLiveObjects() != nullptr);
537 live_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetLiveObjects());
538 DCHECK(discontinuous_space->GetMarkObjects() != nullptr);
539 mark_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetMarkObjects());
540 discontinuous_spaces_.push_back(discontinuous_space);
541 }
542 if (space->IsAllocSpace()) {
543 alloc_spaces_.push_back(space->AsAllocSpace());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700544 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800545}
546
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700547void Heap::RegisterGCAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700548 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700549 gc_memory_overhead_.fetch_add(bytes);
550 }
551}
552
553void Heap::RegisterGCDeAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700554 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700555 gc_memory_overhead_.fetch_sub(bytes);
556 }
557}
558
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700559void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700560 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700561 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700562 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800563
564 // Dump cumulative loggers for each GC type.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800565 uint64_t total_paused_time = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700566 for (const auto& collector : garbage_collectors_) {
Sameer Abu Asala8439542013-02-14 16:06:42 -0800567 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800568 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700569 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800570 const uint64_t total_ns = logger.GetTotalNs();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700571 const uint64_t total_pause_ns = collector->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800572 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
573 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
574 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Mathieu Chartierb2f99362013-11-20 17:26:00 -0800575 Histogram<uint64_t>::CumulativeData cumulative_data;
576 collector->GetPauseHistogram().CreateHistogram(&cumulative_data);
577 collector->GetPauseHistogram().PrintConfidenceIntervals(os, 0.99, cumulative_data);
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700578 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700579 << collector->GetName() << " freed: " << freed_objects
580 << " objects with total size " << PrettySize(freed_bytes) << "\n"
581 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
582 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800583 total_duration += total_ns;
584 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700585 }
586 }
587 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700588 size_t total_objects_allocated = GetObjectsAllocatedEver();
589 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700590 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700591 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700592 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
593 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700594 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700595 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700596 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700597 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700598 os << "Total number of allocations: " << total_objects_allocated << "\n";
599 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700600 if (kMeasureAllocationTime) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700601 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
602 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
603 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700604 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700605 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
606 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700607 os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700608}
609
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800610Heap::~Heap() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700611 VLOG(heap) << "Starting ~Heap()";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700612 STLDeleteElements(&garbage_collectors_);
613 // If we don't reset then the mark stack complains in its destructor.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700614 allocation_stack_->Reset();
615 live_stack_->Reset();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700616 STLDeleteValues(&mod_union_tables_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700617 STLDeleteElements(&continuous_spaces_);
618 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700619 delete gc_complete_lock_;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700620 VLOG(heap) << "Finished ~Heap()";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700621}
622
Ian Rogers1d54e732013-05-02 21:10:01 -0700623space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
624 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700625 for (const auto& space : continuous_spaces_) {
626 if (space->Contains(obj)) {
627 return space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700628 }
629 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700630 if (!fail_ok) {
631 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
632 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700633 return NULL;
634}
635
Ian Rogers1d54e732013-05-02 21:10:01 -0700636space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
637 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700638 for (const auto& space : discontinuous_spaces_) {
639 if (space->Contains(obj)) {
640 return space;
Ian Rogers1d54e732013-05-02 21:10:01 -0700641 }
642 }
643 if (!fail_ok) {
644 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
645 }
646 return NULL;
647}
648
649space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
650 space::Space* result = FindContinuousSpaceFromObject(obj, true);
651 if (result != NULL) {
652 return result;
653 }
654 return FindDiscontinuousSpaceFromObject(obj, true);
655}
656
Mathieu Chartier39e32612013-11-12 16:28:05 -0800657struct SoftReferenceArgs {
658 RootVisitor* is_marked_callback_;
659 RootVisitor* recursive_mark_callback_;
660 void* arg_;
661};
662
663mirror::Object* Heap::PreserveSoftReferenceCallback(mirror::Object* obj, void* arg) {
664 SoftReferenceArgs* args = reinterpret_cast<SoftReferenceArgs*>(arg);
665 // TODO: Not preserve all soft references.
666 return args->recursive_mark_callback_(obj, args->arg_);
667}
668
669// Process reference class instances and schedule finalizations.
670void Heap::ProcessReferences(TimingLogger& timings, bool clear_soft,
671 RootVisitor* is_marked_callback,
672 RootVisitor* recursive_mark_object_callback, void* arg) {
673 // Unless we are in the zygote or required to clear soft references with white references,
674 // preserve some white referents.
675 if (!clear_soft && !Runtime::Current()->IsZygote()) {
676 SoftReferenceArgs soft_reference_args;
677 soft_reference_args.is_marked_callback_ = is_marked_callback;
678 soft_reference_args.recursive_mark_callback_ = recursive_mark_object_callback;
679 soft_reference_args.arg_ = arg;
680 soft_reference_queue_.PreserveSomeSoftReferences(&PreserveSoftReferenceCallback,
681 &soft_reference_args);
682 }
683 timings.StartSplit("ProcessReferences");
684 // Clear all remaining soft and weak references with white referents.
685 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
686 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
687 timings.EndSplit();
688 // Preserve all white objects with finalize methods and schedule them for finalization.
689 timings.StartSplit("EnqueueFinalizerReferences");
690 finalizer_reference_queue_.EnqueueFinalizerReferences(cleared_references_, is_marked_callback,
691 recursive_mark_object_callback, arg);
692 timings.EndSplit();
693 timings.StartSplit("ProcessReferences");
694 // Clear all f-reachable soft and weak references with white referents.
695 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
696 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
697 // Clear all phantom references with white referents.
698 phantom_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
699 // At this point all reference queues other than the cleared references should be empty.
700 DCHECK(soft_reference_queue_.IsEmpty());
701 DCHECK(weak_reference_queue_.IsEmpty());
702 DCHECK(finalizer_reference_queue_.IsEmpty());
703 DCHECK(phantom_reference_queue_.IsEmpty());
704 timings.EndSplit();
705}
706
707bool Heap::IsEnqueued(mirror::Object* ref) const {
708 // Since the references are stored as cyclic lists it means that once enqueued, the pending next
709 // will always be non-null.
710 return ref->GetFieldObject<mirror::Object*>(GetReferencePendingNextOffset(), false) != nullptr;
711}
712
713bool Heap::IsEnqueuable(const mirror::Object* ref) const {
714 DCHECK(ref != nullptr);
715 const mirror::Object* queue =
716 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueOffset(), false);
717 const mirror::Object* queue_next =
718 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueNextOffset(), false);
719 return queue != nullptr && queue_next == nullptr;
720}
721
722// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
723// marked, put it on the appropriate list in the heap for later processing.
724void Heap::DelayReferenceReferent(mirror::Class* klass, mirror::Object* obj,
725 RootVisitor mark_visitor, void* arg) {
726 DCHECK(klass != nullptr);
727 DCHECK(klass->IsReferenceClass());
728 DCHECK(obj != nullptr);
729 mirror::Object* referent = GetReferenceReferent(obj);
730 if (referent != nullptr) {
731 mirror::Object* forward_address = mark_visitor(referent, arg);
732 // Null means that the object is not currently marked.
733 if (forward_address == nullptr) {
734 Thread* self = Thread::Current();
735 // TODO: Remove these locks, and use atomic stacks for storing references?
736 // We need to check that the references haven't already been enqueued since we can end up
737 // scanning the same reference multiple times due to dirty cards.
738 if (klass->IsSoftReferenceClass()) {
739 soft_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
740 } else if (klass->IsWeakReferenceClass()) {
741 weak_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
742 } else if (klass->IsFinalizerReferenceClass()) {
743 finalizer_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
744 } else if (klass->IsPhantomReferenceClass()) {
745 phantom_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
746 } else {
747 LOG(FATAL) << "Invalid reference type " << PrettyClass(klass) << " " << std::hex
748 << klass->GetAccessFlags();
749 }
750 } else if (referent != forward_address) {
751 // Referent is already marked and we need to update it.
752 SetReferenceReferent(obj, forward_address);
753 }
754 }
755}
756
Ian Rogers1d54e732013-05-02 21:10:01 -0700757space::ImageSpace* Heap::GetImageSpace() const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700758 for (const auto& space : continuous_spaces_) {
759 if (space->IsImageSpace()) {
760 return space->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700761 }
762 }
763 return NULL;
764}
765
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700766static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700767 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700768 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700769 size_t chunk_free_bytes = chunk_size - used_bytes;
770 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
771 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700772 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700773}
774
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700775void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, bool large_object_allocation) {
776 std::ostringstream oss;
777 int64_t total_bytes_free = GetFreeMemory();
778 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
779 << " free bytes";
780 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
781 if (!large_object_allocation && total_bytes_free >= byte_count) {
782 size_t max_contiguous_allocation = 0;
783 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700784 if (space->IsMallocSpace()) {
785 // To allow the Walk/InspectAll() to exclusively-lock the mutator
786 // lock, temporarily release the shared access to the mutator
787 // lock here by transitioning to the suspended state.
788 Locks::mutator_lock_->AssertSharedHeld(self);
789 self->TransitionFromRunnableToSuspended(kSuspended);
790 space->AsMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
791 self->TransitionFromSuspendedToRunnable();
792 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700793 }
794 }
795 oss << "; failed due to fragmentation (largest possible contiguous allocation "
796 << max_contiguous_allocation << " bytes)";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700797 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700798 self->ThrowOutOfMemoryError(oss.str().c_str());
799}
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700800
Mathieu Chartier590fee92013-09-13 13:46:47 -0700801void Heap::Trim() {
802 uint64_t start_ns = NanoTime();
803 // Trim the managed spaces.
804 uint64_t total_alloc_space_allocated = 0;
805 uint64_t total_alloc_space_size = 0;
806 uint64_t managed_reclaimed = 0;
807 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700808 if (space->IsMallocSpace() && !space->IsZygoteSpace()) {
809 gc::space::MallocSpace* alloc_space = space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700810 total_alloc_space_size += alloc_space->Size();
811 managed_reclaimed += alloc_space->Trim();
812 }
813 }
814 total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated() -
815 bump_pointer_space_->GetBytesAllocated();
816 const float managed_utilization = static_cast<float>(total_alloc_space_allocated) /
817 static_cast<float>(total_alloc_space_size);
818 uint64_t gc_heap_end_ns = NanoTime();
819 // Trim the native heap.
820 dlmalloc_trim(0);
821 size_t native_reclaimed = 0;
822 dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
823 uint64_t end_ns = NanoTime();
824 VLOG(heap) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
825 << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
826 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
827 << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
828 << "%.";
829}
830
831bool Heap::IsValidObjectAddress(const mirror::Object* obj) const {
832 // Note: we deliberately don't take the lock here, and mustn't test anything that would require
833 // taking the lock.
834 if (obj == nullptr) {
Elliott Hughes88c5c352012-03-15 18:49:48 -0700835 return true;
836 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700837 return IsAligned<kObjectAlignment>(obj) && IsHeapAddress(obj);
838}
839
840bool Heap::IsHeapAddress(const mirror::Object* obj) const {
841 if (kMovingCollector && bump_pointer_space_->HasAddress(obj)) {
842 return true;
Elliott Hughesa2501992011-08-26 19:39:54 -0700843 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700844 // TODO: This probably doesn't work for large objects.
845 return FindSpaceFromObject(obj, true) != nullptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700846}
847
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700848bool Heap::IsLiveObjectLocked(const mirror::Object* obj, bool search_allocation_stack,
849 bool search_live_stack, bool sorted) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700850 // Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700851 if (obj == nullptr || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700852 return false;
853 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700854 space::ContinuousSpace* c_space = FindContinuousSpaceFromObject(obj, true);
855 space::DiscontinuousSpace* d_space = NULL;
856 if (c_space != NULL) {
857 if (c_space->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700858 return true;
859 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700860 } else if (bump_pointer_space_->Contains(obj) || temp_space_->Contains(obj)) {
861 return true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700862 } else {
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700863 d_space = FindDiscontinuousSpaceFromObject(obj, true);
864 if (d_space != NULL) {
865 if (d_space->GetLiveObjects()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700866 return true;
867 }
868 }
869 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700870 // This is covering the allocation/live stack swapping that is done without mutators suspended.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700871 for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
872 if (i > 0) {
873 NanoSleep(MsToNs(10));
Ian Rogers1d54e732013-05-02 21:10:01 -0700874 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700875 if (search_allocation_stack) {
876 if (sorted) {
877 if (allocation_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
878 return true;
879 }
880 } else if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj))) {
881 return true;
882 }
883 }
884
885 if (search_live_stack) {
886 if (sorted) {
887 if (live_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
888 return true;
889 }
890 } else if (live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
891 return true;
892 }
893 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700894 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700895 // We need to check the bitmaps again since there is a race where we mark something as live and
896 // then clear the stack containing it.
897 if (c_space != NULL) {
898 if (c_space->GetLiveBitmap()->Test(obj)) {
899 return true;
900 }
901 } else {
902 d_space = FindDiscontinuousSpaceFromObject(obj, true);
903 if (d_space != NULL && d_space->GetLiveObjects()->Test(obj)) {
904 return true;
905 }
906 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700907 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700908}
909
Ian Rogers04d7aa92013-03-16 14:29:17 -0700910void Heap::VerifyObjectImpl(const mirror::Object* obj) {
911 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700912 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700913 return;
914 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700915 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700916}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700917
Mathieu Chartier590fee92013-09-13 13:46:47 -0700918void Heap::DumpSpaces(std::ostream& stream) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700919 for (const auto& space : continuous_spaces_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700920 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
921 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700922 stream << space << " " << *space << "\n";
923 if (live_bitmap != nullptr) {
924 stream << live_bitmap << " " << *live_bitmap << "\n";
925 }
926 if (mark_bitmap != nullptr) {
927 stream << mark_bitmap << " " << *mark_bitmap << "\n";
928 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700929 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700930 for (const auto& space : discontinuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700931 stream << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700932 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700933}
934
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800935void Heap::VerifyObjectBody(const mirror::Object* obj) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700936 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
937 // Ignore early dawn of the universe verifications.
938 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.load()) < 10 * KB)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800939 return;
940 }
941 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
942 mirror::Object::ClassOffset().Int32Value();
943 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
944 if (UNLIKELY(c == NULL)) {
945 LOG(FATAL) << "Null class in object: " << obj;
946 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
947 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
948 }
949 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
950 // Note: we don't use the accessors here as they have internal sanity checks
951 // that we don't want to run
952 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
953 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
954 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
955 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
956 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700957
Mathieu Chartier590fee92013-09-13 13:46:47 -0700958 if (verify_object_mode_ > kVerifyAllFast) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800959 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
960 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700961 if (!IsLiveObjectLocked(obj)) {
962 DumpSpaces();
963 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700964 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700965 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700966 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
967 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700968 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700969}
970
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800971void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700972 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700973 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700974}
975
976void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700977 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700978 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700979}
980
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700981void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700982 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700983 num_bytes_allocated_.fetch_sub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700984
985 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700986 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700987 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700988 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700989
990 // TODO: Do this concurrently.
991 RuntimeStats* global_stats = Runtime::Current()->GetStats();
992 global_stats->freed_objects += freed_objects;
993 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700994 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700995}
996
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800997mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator,
Mathieu Chartier720ef762013-08-17 14:46:54 -0700998 size_t alloc_size, size_t* bytes_allocated) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800999 mirror::Object* ptr = nullptr;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001000 // The allocation failed. If the GC is running, block until it completes, and then retry the
1001 // allocation.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001002 collector::GcType last_gc = WaitForGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -07001003 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001004 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001005 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001006 }
1007
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001008 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001009 for (collector::GcType gc_type : gc_plan_) {
1010 if (ptr != nullptr) {
1011 break;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001012 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001013 // Attempt to run the collector, if we succeed, re-try the allocation.
1014 if (CollectGarbageInternal(gc_type, kGcCauseForAlloc, false) != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001015 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001016 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001017 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001018 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001019 // Allocations have failed after GCs; this is an exceptional state.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001020 if (ptr == nullptr) {
1021 // Try harder, growing the heap if necessary.
1022 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001023 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001024 if (ptr == nullptr) {
1025 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
1026 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
1027 // VM spec requires that all SoftReferences have been collected and cleared before throwing
1028 // OOME.
1029 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
1030 << " allocation";
1031 // TODO: Run finalization, but this may cause more allocations to occur.
1032 // We don't need a WaitForGcToComplete here either.
1033 DCHECK(!gc_plan_.empty());
1034 CollectGarbageInternal(gc_plan_.back(), kGcCauseForAlloc, true);
1035 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
1036 if (ptr == nullptr) {
1037 ThrowOutOfMemoryError(self, alloc_size, false);
1038 }
1039 }
1040 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001041}
1042
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001043void Heap::SetTargetHeapUtilization(float target) {
1044 DCHECK_GT(target, 0.0f); // asserted in Java code
1045 DCHECK_LT(target, 1.0f);
1046 target_utilization_ = target;
1047}
1048
Ian Rogers1d54e732013-05-02 21:10:01 -07001049size_t Heap::GetObjectsAllocated() const {
1050 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001051 for (space::AllocSpace* space : alloc_spaces_) {
1052 total += space->GetObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001053 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001054 return total;
1055}
1056
Ian Rogers1d54e732013-05-02 21:10:01 -07001057size_t Heap::GetObjectsAllocatedEver() const {
1058 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001059 for (space::AllocSpace* space : alloc_spaces_) {
1060 total += space->GetTotalObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001061 }
1062 return total;
1063}
1064
1065size_t Heap::GetBytesAllocatedEver() const {
1066 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001067 for (space::AllocSpace* space : alloc_spaces_) {
1068 total += space->GetTotalBytesAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001069 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001070 return total;
1071}
1072
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001073class InstanceCounter {
1074 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001075 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001076 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001077 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001078 }
1079
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001080 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001081 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001082 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001083 if (use_is_assignable_from_) {
1084 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
1085 ++counts_[i];
1086 }
1087 } else {
1088 if (instance_class == classes_[i]) {
1089 ++counts_[i];
1090 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001091 }
1092 }
1093 }
1094
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001095 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001096 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001097 bool use_is_assignable_from_;
1098 uint64_t* const counts_;
1099
1100 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001101};
1102
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001103void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001104 uint64_t* counts) {
1105 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1106 // is empty, so the live bitmap is the only place we need to look.
1107 Thread* self = Thread::Current();
1108 self->TransitionFromRunnableToSuspended(kNative);
1109 CollectGarbage(false);
1110 self->TransitionFromSuspendedToRunnable();
1111
1112 InstanceCounter counter(classes, use_is_assignable_from, counts);
1113 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001114 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001115}
1116
Elliott Hughes3b78c942013-01-15 17:35:41 -08001117class InstanceCollector {
1118 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001119 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -08001120 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1121 : class_(c), max_count_(max_count), instances_(instances) {
1122 }
1123
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001124 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1125 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -08001126 if (instance_class == class_) {
1127 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001128 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001129 }
1130 }
1131 }
1132
1133 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001134 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001135 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001136 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001137
1138 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
1139};
1140
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001141void Heap::GetInstances(mirror::Class* c, int32_t max_count,
1142 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001143 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1144 // is empty, so the live bitmap is the only place we need to look.
1145 Thread* self = Thread::Current();
1146 self->TransitionFromRunnableToSuspended(kNative);
1147 CollectGarbage(false);
1148 self->TransitionFromSuspendedToRunnable();
1149
1150 InstanceCollector collector(c, max_count, instances);
1151 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1152 GetLiveBitmap()->Visit(collector);
1153}
1154
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001155class ReferringObjectsFinder {
1156 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001157 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1158 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001159 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1160 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1161 }
1162
1163 // For bitmap Visit.
1164 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1165 // annotalysis on visitors.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001166 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
1167 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(o), *this, true);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001168 }
1169
1170 // For MarkSweep::VisitObjectReferences.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001171 void operator()(mirror::Object* referrer, mirror::Object* object,
Brian Carlstromdf629502013-07-17 22:39:56 -07001172 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001173 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001174 referring_objects_.push_back(referrer);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001175 }
1176 }
1177
1178 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001179 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001180 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001181 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001182
1183 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1184};
1185
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001186void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1187 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001188 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1189 // is empty, so the live bitmap is the only place we need to look.
1190 Thread* self = Thread::Current();
1191 self->TransitionFromRunnableToSuspended(kNative);
1192 CollectGarbage(false);
1193 self->TransitionFromSuspendedToRunnable();
1194
1195 ReferringObjectsFinder finder(o, max_count, referring_objects);
1196 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1197 GetLiveBitmap()->Visit(finder);
1198}
1199
Ian Rogers30fab402012-01-23 15:43:46 -08001200void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001201 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1202 // last GC will not have necessarily been cleared.
Ian Rogers1d54e732013-05-02 21:10:01 -07001203 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001204}
1205
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001206void Heap::ChangeCollector(CollectorType collector_type) {
1207 switch (collector_type) {
1208 case kCollectorTypeSS: {
1209 ChangeAllocator(kAllocatorTypeBumpPointer);
1210 break;
1211 }
1212 case kCollectorTypeMS:
1213 // Fall-through.
1214 case kCollectorTypeCMS: {
1215 ChangeAllocator(kAllocatorTypeFreeList);
1216 break;
Mathieu Chartier7410f292013-11-24 13:17:35 -08001217 default:
1218 LOG(FATAL) << "Unimplemented";
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001219 }
1220 }
1221}
1222
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001223void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001224 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Ian Rogers81d425b2012-09-27 16:03:43 -07001225 Thread* self = Thread::Current();
1226 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001227 // Try to see if we have any Zygote spaces.
1228 if (have_zygote_space_) {
1229 return;
1230 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001231 VLOG(heap) << "Starting PreZygoteFork";
1232 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
1233 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
1234 // Trim the pages at the end of the non moving space.
1235 non_moving_space_->Trim();
1236 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
Mathieu Chartier50482232013-11-21 11:48:14 -08001237 // Change the allocator to the post zygote one.
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001238 ChangeCollector(collector_type_);
Mathieu Chartier50482232013-11-21 11:48:14 -08001239 // TODO: Delete bump_pointer_space_ and temp_pointer_space_?
Mathieu Chartier590fee92013-09-13 13:46:47 -07001240 if (semi_space_collector_ != nullptr) {
Mathieu Chartier50482232013-11-21 11:48:14 -08001241 // Create a new bump pointer space which we will compact into.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001242 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1243 non_moving_space_->Limit());
1244 // Compact the bump pointer space to a new zygote bump pointer space.
1245 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1246 Compact(&target_space, bump_pointer_space_);
1247 CHECK_EQ(temp_space_->GetBytesAllocated(), 0U);
1248 total_objects_freed_ever_ += semi_space_collector_->GetFreedObjects();
1249 total_bytes_freed_ever_ += semi_space_collector_->GetFreedBytes();
1250 // Update the end and write out image.
1251 non_moving_space_->SetEnd(target_space.End());
1252 non_moving_space_->SetLimit(target_space.Limit());
1253 accounting::SpaceBitmap* bitmap = non_moving_space_->GetLiveBitmap();
1254 // Record the allocations in the bitmap.
1255 VLOG(heap) << "Recording zygote allocations";
1256 mirror::Object* obj = reinterpret_cast<mirror::Object*>(target_space.Begin());
1257 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(target_space.End());
1258 while (obj < end) {
1259 bitmap->Set(obj);
1260 obj = space::BumpPointerSpace::GetNextObject(obj);
1261 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001262 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001263 // Turn the current alloc space into a zygote space and obtain the new alloc space composed of
1264 // the remaining available heap memory.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001265 space::MallocSpace* zygote_space = non_moving_space_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001266 non_moving_space_ = zygote_space->CreateZygoteSpace("alloc space");
1267 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -07001268 // Change the GC retention policy of the zygote space to only collect when full.
1269 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001270 AddSpace(non_moving_space_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001271 have_zygote_space_ = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001272 zygote_space->InvalidateAllocator();
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001273 // Create the zygote space mod union table.
1274 accounting::ModUnionTable* mod_union_table =
1275 new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);
1276 CHECK(mod_union_table != nullptr) << "Failed to create zygote space mod-union table";
1277 AddModUnionTable(mod_union_table);
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001278 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001279 for (const auto& collector : garbage_collectors_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001280 collector->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001281 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001282}
1283
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001284void Heap::FlushAllocStack() {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001285 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001286 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001287 allocation_stack_->Reset();
1288}
1289
Ian Rogers1d54e732013-05-02 21:10:01 -07001290void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1291 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001292 mirror::Object** limit = stack->End();
1293 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1294 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001295 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001296 if (LIKELY(bitmap->HasAddress(obj))) {
1297 bitmap->Set(obj);
1298 } else {
1299 large_objects->Set(obj);
1300 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001301 }
1302}
1303
Mathieu Chartier590fee92013-09-13 13:46:47 -07001304const char* PrettyCause(GcCause cause) {
1305 switch (cause) {
1306 case kGcCauseForAlloc: return "Alloc";
1307 case kGcCauseBackground: return "Background";
1308 case kGcCauseExplicit: return "Explicit";
1309 default:
1310 LOG(FATAL) << "Unreachable";
1311 }
1312 return "";
1313}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001314
Mathieu Chartier590fee92013-09-13 13:46:47 -07001315void Heap::SwapSemiSpaces() {
1316 // Swap the spaces so we allocate into the space which we just evacuated.
1317 std::swap(bump_pointer_space_, temp_space_);
1318}
1319
1320void Heap::Compact(space::ContinuousMemMapAllocSpace* target_space,
1321 space::ContinuousMemMapAllocSpace* source_space) {
1322 CHECK(kMovingCollector);
Mathieu Chartier50482232013-11-21 11:48:14 -08001323 CHECK_NE(target_space, source_space) << "In-place compaction currently unsupported";
Mathieu Chartier590fee92013-09-13 13:46:47 -07001324 if (target_space != source_space) {
1325 semi_space_collector_->SetFromSpace(source_space);
1326 semi_space_collector_->SetToSpace(target_space);
1327 semi_space_collector_->Run(false);
1328 }
1329}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001330
Ian Rogers1d54e732013-05-02 21:10:01 -07001331collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1332 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001333 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001334 Runtime* runtime = Runtime::Current();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001335 // If the heap can't run the GC, silently fail and return that no GC was run.
1336 switch (gc_type) {
1337 case collector::kGcTypeSticky: {
1338 const size_t alloc_space_size = non_moving_space_->Size();
1339 if (alloc_space_size < min_alloc_space_size_for_sticky_gc_ ||
1340 non_moving_space_->Capacity() - alloc_space_size < min_remaining_space_for_sticky_gc_) {
1341 return collector::kGcTypeNone;
1342 }
1343 break;
1344 }
1345 case collector::kGcTypePartial: {
1346 if (!have_zygote_space_) {
1347 return collector::kGcTypeNone;
1348 }
1349 break;
1350 }
1351 default: {
1352 // Other GC types don't have any special cases which makes them not runnable. The main case
1353 // here is full GC.
1354 }
1355 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001356 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001357 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers120f1c72012-09-28 17:17:10 -07001358 if (self->IsHandlingStackOverflow()) {
1359 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1360 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001361 {
1362 gc_complete_lock_->AssertNotHeld(self);
1363 MutexLock mu(self, *gc_complete_lock_);
1364 // Ensure there is only one GC at a time.
1365 WaitForGcToCompleteLocked(self);
1366 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1367 // Not doing at the moment to ensure soft references are cleared.
1368 // GC can be disabled if someone has a used GetPrimitiveArrayCritical.
1369 if (gc_disable_count_ != 0) {
1370 LOG(WARNING) << "Skipping GC due to disable count " << gc_disable_count_;
1371 return collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001372 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001373 is_gc_running_ = true;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001374 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001375 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
1376 ++runtime->GetStats()->gc_for_alloc_count;
1377 ++self->GetStats()->gc_for_alloc_count;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001378 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001379 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001380 uint64_t gc_start_size = GetBytesAllocated();
1381 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001382 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001383 // Back to back GCs can cause 0 ms of wait time in between GC invocations.
1384 if (LIKELY(ms_delta != 0)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001385 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001386 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1387 }
1388
Ian Rogers1d54e732013-05-02 21:10:01 -07001389 DCHECK_LT(gc_type, collector::kGcTypeMax);
1390 DCHECK_NE(gc_type, collector::kGcTypeNone);
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001391
Mathieu Chartier590fee92013-09-13 13:46:47 -07001392 collector::GarbageCollector* collector = nullptr;
Mathieu Chartier50482232013-11-21 11:48:14 -08001393 // TODO: Clean this up.
1394 if (current_allocator_ == kAllocatorTypeBumpPointer) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001395 gc_type = semi_space_collector_->GetGcType();
1396 CHECK_EQ(temp_space_->GetObjectsAllocated(), 0U);
1397 semi_space_collector_->SetFromSpace(bump_pointer_space_);
1398 semi_space_collector_->SetToSpace(temp_space_);
1399 mprotect(temp_space_->Begin(), temp_space_->Capacity(), PROT_READ | PROT_WRITE);
Mathieu Chartier50482232013-11-21 11:48:14 -08001400 collector = semi_space_collector_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001401 gc_type = collector::kGcTypeFull;
Mathieu Chartier50482232013-11-21 11:48:14 -08001402 } else if (current_allocator_ == kAllocatorTypeFreeList) {
1403 for (const auto& cur_collector : garbage_collectors_) {
1404 if (cur_collector->IsConcurrent() == concurrent_gc_ &&
1405 cur_collector->GetGcType() == gc_type) {
1406 collector = cur_collector;
1407 break;
1408 }
1409 }
1410 } else {
1411 LOG(FATAL) << "Invalid current allocator " << current_allocator_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001412 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001413 CHECK(collector != NULL)
1414 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1415 << " and type=" << gc_type;
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001416
Mathieu Chartier590fee92013-09-13 13:46:47 -07001417 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), collector->GetName()).c_str());
1418
1419 collector->Run(clear_soft_references);
Ian Rogers1d54e732013-05-02 21:10:01 -07001420 total_objects_freed_ever_ += collector->GetFreedObjects();
1421 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001422
Mathieu Chartier39e32612013-11-12 16:28:05 -08001423 // Enqueue cleared references.
1424 EnqueueClearedReferences();
1425
Mathieu Chartier590fee92013-09-13 13:46:47 -07001426 // Grow the heap so that we know when to perform the next GC.
1427 GrowForUtilization(gc_type, collector->GetDurationNs());
1428
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001429 if (care_about_pause_times_) {
1430 const size_t duration = collector->GetDurationNs();
1431 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1432 // GC for alloc pauses the allocating thread, so consider it as a pause.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001433 bool was_slow = duration > long_gc_log_threshold_ ||
1434 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001435 if (!was_slow) {
1436 for (uint64_t pause : pauses) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001437 was_slow = was_slow || pause > long_pause_log_threshold_;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001438 }
1439 }
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001440 if (was_slow) {
1441 const size_t percent_free = GetPercentFree();
1442 const size_t current_heap_size = GetBytesAllocated();
1443 const size_t total_memory = GetTotalMemory();
1444 std::ostringstream pause_string;
1445 for (size_t i = 0; i < pauses.size(); ++i) {
1446 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1447 << ((i != pauses.size() - 1) ? ", " : "");
1448 }
1449 LOG(INFO) << gc_cause << " " << collector->GetName()
1450 << " GC freed " << collector->GetFreedObjects() << "("
1451 << PrettySize(collector->GetFreedBytes()) << ") AllocSpace objects, "
1452 << collector->GetFreedLargeObjects() << "("
1453 << PrettySize(collector->GetFreedLargeObjectBytes()) << ") LOS objects, "
1454 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1455 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1456 << " total " << PrettyDuration((duration / 1000) * 1000);
1457 if (VLOG_IS_ON(heap)) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001458 LOG(INFO) << Dumpable<TimingLogger>(collector->GetTimings());
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001459 }
1460 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001461 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001462
Ian Rogers15bf2d32012-08-28 17:33:04 -07001463 {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001464 MutexLock mu(self, *gc_complete_lock_);
1465 is_gc_running_ = false;
1466 last_gc_type_ = gc_type;
1467 // Wake anyone who may have been waiting for the GC to complete.
1468 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001469 }
Mathieu Chartier0a9dc052013-07-25 11:01:28 -07001470
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001471 ATRACE_END();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001472
1473 // Inform DDMS that a GC completed.
Ian Rogers15bf2d32012-08-28 17:33:04 -07001474 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001475 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001476}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001477
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001478static mirror::Object* RootMatchesObjectVisitor(mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001479 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001480 if (root == obj) {
1481 LOG(INFO) << "Object " << obj << " is a root";
1482 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001483 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001484}
1485
1486class ScanVisitor {
1487 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001488 void operator()(const mirror::Object* obj) const {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001489 LOG(ERROR) << "Would have rescanned object " << obj;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001490 }
1491};
1492
Ian Rogers1d54e732013-05-02 21:10:01 -07001493// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001494class VerifyReferenceVisitor {
1495 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001496 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001498 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001499
1500 bool Failed() const {
1501 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001502 }
1503
1504 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001505 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001506 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1507 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001508 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001509 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001510 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1511 accounting::CardTable* card_table = heap_->GetCardTable();
1512 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1513 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001514 if (!failed_) {
1515 // Print message on only on first failure to prevent spam.
1516 LOG(ERROR) << "!!!!!!!!!!!!!!Heap corruption detected!!!!!!!!!!!!!!!!!!!";
1517 failed_ = true;
1518 }
1519 if (obj != nullptr) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001520 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001521 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset "
1522 << offset << "\n card value = " << static_cast<int>(*card_addr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001523 if (heap_->IsValidObjectAddress(obj->GetClass())) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001524 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1525 } else {
1526 LOG(ERROR) << "Object " << obj << " class(" << obj->GetClass() << ") not a heap address";
1527 }
1528
1529 // Attmept to find the class inside of the recently freed objects.
1530 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001531 if (ref_space != nullptr && ref_space->IsMallocSpace()) {
1532 space::MallocSpace* space = ref_space->AsMallocSpace();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001533 mirror::Class* ref_class = space->FindRecentFreedObject(ref);
1534 if (ref_class != nullptr) {
1535 LOG(ERROR) << "Reference " << ref << " found as a recently freed object with class "
1536 << PrettyClass(ref_class);
1537 } else {
1538 LOG(ERROR) << "Reference " << ref << " not found as a recently freed object";
1539 }
1540 }
1541
Mathieu Chartier590fee92013-09-13 13:46:47 -07001542 if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001543 ref->GetClass()->IsClass()) {
1544 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1545 } else {
1546 LOG(ERROR) << "Ref " << ref << " class(" << ref->GetClass()
1547 << ") is not a valid heap address";
1548 }
1549
Ian Rogers1d54e732013-05-02 21:10:01 -07001550 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1551 void* cover_begin = card_table->AddrFromCard(card_addr);
1552 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1553 accounting::CardTable::kCardSize);
1554 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1555 << "-" << cover_end;
1556 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001557
Ian Rogers1d54e732013-05-02 21:10:01 -07001558 // Print out how the object is live.
1559 if (bitmap != NULL && bitmap->Test(obj)) {
1560 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1561 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001562 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001563 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1564 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001565 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001566 LOG(ERROR) << "Object " << obj << " found in live stack";
1567 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001568 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1569 LOG(ERROR) << "Ref " << ref << " found in allocation stack";
1570 }
1571 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1572 LOG(ERROR) << "Ref " << ref << " found in live stack";
1573 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001574 // Attempt to see if the card table missed the reference.
1575 ScanVisitor scan_visitor;
1576 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1577 card_table->Scan(bitmap, byte_cover_begin,
Mathieu Chartier184e3222013-08-03 14:02:57 -07001578 byte_cover_begin + accounting::CardTable::kCardSize, scan_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -07001579
1580 // Search to see if any of the roots reference our object.
1581 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1582 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1583
1584 // Search to see if any of the roots reference our reference.
1585 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1586 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1587 } else {
1588 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001589 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001590 }
1591 }
1592
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001593 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001594 return heap_->IsLiveObjectLocked(obj, true, false, true);
Ian Rogers1d54e732013-05-02 21:10:01 -07001595 }
1596
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001597 static mirror::Object* VerifyRoots(mirror::Object* root, void* arg) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001598 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001599 (*visitor)(nullptr, root, MemberOffset(0), true);
1600 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001601 }
1602
1603 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001604 Heap* const heap_;
1605 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001606};
1607
Ian Rogers1d54e732013-05-02 21:10:01 -07001608// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001609class VerifyObjectVisitor {
1610 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001611 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001612
Mathieu Chartier590fee92013-09-13 13:46:47 -07001613 void operator()(mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001614 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001615 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1616 // be live or else how did we find it in the live bitmap?
1617 VerifyReferenceVisitor visitor(heap_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001618 // The class doesn't count as a reference but we should verify it anyways.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001619 collector::MarkSweep::VisitObjectReferences(obj, visitor, true);
1620 if (obj->GetClass()->IsReferenceClass()) {
1621 visitor(obj, heap_->GetReferenceReferent(obj), MemberOffset(0), false);
1622 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001623 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001624 }
1625
Mathieu Chartier590fee92013-09-13 13:46:47 -07001626 static void VisitCallback(mirror::Object* obj, void* arg)
1627 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1628 VerifyObjectVisitor* visitor = reinterpret_cast<VerifyObjectVisitor*>(arg);
1629 visitor->operator()(obj);
1630 }
1631
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001632 bool Failed() const {
1633 return failed_;
1634 }
1635
1636 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001637 Heap* const heap_;
1638 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001639};
1640
1641// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001642bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001643 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001644 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001645 allocation_stack_->Sort();
1646 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001647 VerifyObjectVisitor visitor(this);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001648 // Verify objects in the allocation stack since these will be objects which were:
1649 // 1. Allocated prior to the GC (pre GC verification).
1650 // 2. Allocated during the GC (pre sweep GC verification).
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001651 // We don't want to verify the objects in the live stack since they themselves may be
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001652 // pointing to dead objects if they are not reachable.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001653 VisitObjects(VerifyObjectVisitor::VisitCallback, &visitor);
1654 // Verify the roots:
1655 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001656 if (visitor.Failed()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001657 // Dump mod-union tables.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001658 for (const auto& table_pair : mod_union_tables_) {
1659 accounting::ModUnionTable* mod_union_table = table_pair.second;
1660 mod_union_table->Dump(LOG(ERROR) << mod_union_table->GetName() << ": ");
1661 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001662 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001663 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001664 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001665 return true;
1666}
1667
1668class VerifyReferenceCardVisitor {
1669 public:
1670 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1672 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001673 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001674 }
1675
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001676 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1677 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001678 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1679 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001680 // Filter out class references since changing an object's class does not mark the card as dirty.
1681 // Also handles large objects, since the only reference they hold is a class reference.
1682 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001683 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001684 // If the object is not dirty and it is referencing something in the live stack other than
1685 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001686 if (!card_table->AddrIsInCardTable(obj)) {
1687 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1688 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001689 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001690 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1691 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001692 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierf082d3c2013-07-29 17:04:07 -07001693 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(ref))) {
1694 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001695 LOG(ERROR) << "Object " << obj << " found in live stack";
1696 }
1697 if (heap_->GetLiveBitmap()->Test(obj)) {
1698 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1699 }
1700 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1701 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1702
1703 // Print which field of the object is dead.
1704 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001705 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001706 CHECK(klass != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001707 const mirror::ObjectArray<mirror::ArtField>* fields = is_static ? klass->GetSFields()
1708 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001709 CHECK(fields != NULL);
1710 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001711 const mirror::ArtField* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001712 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1713 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1714 << PrettyField(cur);
1715 break;
1716 }
1717 }
1718 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001719 const mirror::ObjectArray<mirror::Object>* object_array =
1720 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001721 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1722 if (object_array->Get(i) == ref) {
1723 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1724 }
1725 }
1726 }
1727
1728 *failed_ = true;
1729 }
1730 }
1731 }
1732 }
1733
1734 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001735 Heap* const heap_;
1736 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001737};
1738
1739class VerifyLiveStackReferences {
1740 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001741 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001742 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001743 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001744
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001745 void operator()(mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001746 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1747 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001748 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(obj), visitor, true);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001749 }
1750
1751 bool Failed() const {
1752 return failed_;
1753 }
1754
1755 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001756 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001757 bool failed_;
1758};
1759
1760bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001761 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001762
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001763 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001764 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001765 VerifyLiveStackReferences visitor(this);
1766 GetLiveBitmap()->Visit(visitor);
1767
1768 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001769 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001770 visitor(*it);
1771 }
1772
1773 if (visitor.Failed()) {
1774 DumpSpaces();
1775 return false;
1776 }
1777 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001778}
1779
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001780void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001781 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001782}
1783
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001784accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) {
1785 auto it = mod_union_tables_.find(space);
1786 if (it == mod_union_tables_.end()) {
1787 return nullptr;
1788 }
1789 return it->second;
1790}
1791
Ian Rogers5fe9af72013-11-14 00:17:20 -08001792void Heap::ProcessCards(TimingLogger& timings) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001793 // Clear cards and keep track of cards cleared in the mod-union table.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001794 for (const auto& space : continuous_spaces_) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001795 accounting::ModUnionTable* table = FindModUnionTableFromSpace(space);
1796 if (table != nullptr) {
1797 const char* name = space->IsZygoteSpace() ? "ZygoteModUnionClearCards" :
1798 "ImageModUnionClearCards";
Ian Rogers5fe9af72013-11-14 00:17:20 -08001799 TimingLogger::ScopedSplit split(name, &timings);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001800 table->ClearCards();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001801 } else if (space->GetType() != space::kSpaceTypeBumpPointerSpace) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001802 TimingLogger::ScopedSplit split("AllocSpaceClearCards", &timings);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001803 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1804 // were dirty before the GC started.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001805 // TODO: Don't need to use atomic.
1806 // The races are we either end up with: Aged card, unaged card. Since we have the checkpoint
1807 // roots and then we scan / update mod union tables after. We will always scan either card.//
1808 // If we end up with the non aged card, we scan it it in the pause.
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001809 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001810 }
1811 }
1812}
1813
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001814static mirror::Object* IdentityCallback(mirror::Object* obj, void*) {
1815 return obj;
1816}
1817
Ian Rogers1d54e732013-05-02 21:10:01 -07001818void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001819 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1820 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001821
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001822 if (verify_pre_gc_heap_) {
1823 thread_list->SuspendAll();
1824 {
1825 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1826 if (!VerifyHeapReferences()) {
1827 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1828 }
1829 }
1830 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001831 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001832
1833 // Check that all objects which reference things in the live stack are on dirty cards.
1834 if (verify_missing_card_marks_) {
1835 thread_list->SuspendAll();
1836 {
1837 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1838 SwapStacks();
1839 // Sort the live stack so that we can quickly binary search it later.
1840 if (!VerifyMissingCardMarks()) {
1841 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1842 }
1843 SwapStacks();
1844 }
1845 thread_list->ResumeAll();
1846 }
1847
1848 if (verify_mod_union_table_) {
1849 thread_list->SuspendAll();
1850 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001851 for (const auto& table_pair : mod_union_tables_) {
1852 accounting::ModUnionTable* mod_union_table = table_pair.second;
1853 mod_union_table->UpdateAndMarkReferences(IdentityCallback, nullptr);
1854 mod_union_table->Verify();
1855 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001856 thread_list->ResumeAll();
1857 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001858}
1859
Ian Rogers1d54e732013-05-02 21:10:01 -07001860void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001861 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1862 // reachable objects.
1863 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001864 Thread* self = Thread::Current();
1865 CHECK_NE(self->GetState(), kRunnable);
Ian Rogers1d54e732013-05-02 21:10:01 -07001866 {
1867 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1868 // Swapping bound bitmaps does nothing.
1869 gc->SwapBitmaps();
1870 if (!VerifyHeapReferences()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001871 LOG(FATAL) << "Pre sweeping " << gc->GetName() << " GC verification failed";
Ian Rogers1d54e732013-05-02 21:10:01 -07001872 }
1873 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001874 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001875 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001876}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001877
Ian Rogers1d54e732013-05-02 21:10:01 -07001878void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001879 if (verify_system_weaks_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001880 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001881 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001882 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001883 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001884 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001885}
1886
Mathieu Chartier590fee92013-09-13 13:46:47 -07001887collector::GcType Heap::WaitForGcToComplete(Thread* self) {
1888 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
1889 MutexLock mu(self, *gc_complete_lock_);
1890 return WaitForGcToCompleteLocked(self);
1891}
1892
1893collector::GcType Heap::WaitForGcToCompleteLocked(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001894 collector::GcType last_gc_type = collector::kGcTypeNone;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001895 uint64_t wait_start = NanoTime();
1896 while (is_gc_running_) {
1897 ATRACE_BEGIN("GC: Wait For Completion");
1898 // We must wait, change thread state then sleep on gc_complete_cond_;
1899 gc_complete_cond_->Wait(self);
1900 last_gc_type = last_gc_type_;
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001901 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001902 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001903 uint64_t wait_time = NanoTime() - wait_start;
1904 total_wait_time_ += wait_time;
1905 if (wait_time > long_pause_log_threshold_) {
1906 LOG(INFO) << "WaitForGcToComplete blocked for " << PrettyDuration(wait_time);
1907 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001908 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001909}
1910
Elliott Hughesc967f782012-04-16 10:23:15 -07001911void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001912 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001913 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001914 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001915}
1916
1917size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001918 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001919}
1920
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001921void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001922 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001923 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001924 << PrettySize(GetMaxMemory());
1925 max_allowed_footprint = GetMaxMemory();
1926 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001927 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001928}
1929
Mathieu Chartier590fee92013-09-13 13:46:47 -07001930bool Heap::IsMovableObject(const mirror::Object* obj) const {
1931 if (kMovingCollector) {
1932 DCHECK(!IsInTempSpace(obj));
1933 if (bump_pointer_space_->HasAddress(obj)) {
1934 return true;
1935 }
1936 }
1937 return false;
1938}
1939
1940bool Heap::IsInTempSpace(const mirror::Object* obj) const {
1941 if (temp_space_->HasAddress(obj) && !temp_space_->Contains(obj)) {
1942 return true;
1943 }
1944 return false;
1945}
1946
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001947void Heap::UpdateMaxNativeFootprint() {
1948 size_t native_size = native_bytes_allocated_;
1949 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
1950 size_t target_size = native_size / GetTargetHeapUtilization();
1951 if (target_size > native_size + max_free_) {
1952 target_size = native_size + max_free_;
1953 } else if (target_size < native_size + min_free_) {
1954 target_size = native_size + min_free_;
1955 }
1956 native_footprint_gc_watermark_ = target_size;
1957 native_footprint_limit_ = 2 * target_size - native_size;
1958}
1959
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001960void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001961 // We know what our utilization is at this moment.
1962 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001963 const size_t bytes_allocated = GetBytesAllocated();
1964 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001965 last_gc_time_ns_ = NanoTime();
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001966 size_t target_size;
1967 if (gc_type != collector::kGcTypeSticky) {
1968 // Grow the heap for non sticky GC.
1969 target_size = bytes_allocated / GetTargetHeapUtilization();
1970 if (target_size > bytes_allocated + max_free_) {
1971 target_size = bytes_allocated + max_free_;
1972 } else if (target_size < bytes_allocated + min_free_) {
1973 target_size = bytes_allocated + min_free_;
1974 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001975 native_need_to_run_finalization_ = true;
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001976 next_gc_type_ = collector::kGcTypeSticky;
1977 } else {
1978 // Based on how close the current heap size is to the target size, decide
1979 // whether or not to do a partial or sticky GC next.
1980 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1981 next_gc_type_ = collector::kGcTypeSticky;
1982 } else {
1983 next_gc_type_ = collector::kGcTypePartial;
1984 }
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001985 // If we have freed enough memory, shrink the heap back down.
1986 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1987 target_size = bytes_allocated + max_free_;
1988 } else {
1989 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1990 }
1991 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001992 if (!ignore_max_footprint_) {
1993 SetIdealFootprint(target_size);
Mathieu Chartier50482232013-11-21 11:48:14 -08001994 if (concurrent_gc_ && AllocatorHasConcurrentGC(current_allocator_)) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001995 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001996 // Calculate the estimated GC duration.
1997 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1998 // Estimate how many remaining bytes we will have when we need to start the next GC.
1999 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
2000 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
2001 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2002 // A never going to happen situation that from the estimated allocation rate we will exceed
2003 // the applications entire footprint with the given estimated allocation rate. Schedule
2004 // another GC straight away.
2005 concurrent_start_bytes_ = bytes_allocated;
2006 } else {
2007 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
2008 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
2009 // right away.
Mathieu Chartier50482232013-11-21 11:48:14 -08002010 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
2011 bytes_allocated);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002012 }
2013 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
2014 DCHECK_LE(max_allowed_footprint_, growth_limit_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08002015 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002016 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07002017}
2018
jeffhaoc1160702011-10-27 15:48:45 -07002019void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08002020 growth_limit_ = capacity_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002021 non_moving_space_->ClearGrowthLimit();
jeffhaoc1160702011-10-27 15:48:45 -07002022}
2023
Elliott Hughesadb460d2011-10-05 17:02:34 -07002024void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartier50482232013-11-21 11:48:14 -08002025 MemberOffset reference_queue_offset,
2026 MemberOffset reference_queueNext_offset,
2027 MemberOffset reference_pendingNext_offset,
2028 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002029 reference_referent_offset_ = reference_referent_offset;
2030 reference_queue_offset_ = reference_queue_offset;
2031 reference_queueNext_offset_ = reference_queueNext_offset;
2032 reference_pendingNext_offset_ = reference_pendingNext_offset;
2033 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
2034 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2035 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
2036 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
2037 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
2038 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
2039}
2040
Mathieu Chartier590fee92013-09-13 13:46:47 -07002041void Heap::SetReferenceReferent(mirror::Object* reference, mirror::Object* referent) {
2042 DCHECK(reference != NULL);
2043 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2044 reference->SetFieldObject(reference_referent_offset_, referent, true);
2045}
2046
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002047mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002048 DCHECK(reference != NULL);
2049 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002050 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07002051}
2052
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002053void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002054 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08002055 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002056 ArgArray arg_array(NULL, 0);
2057 arg_array.Append(reinterpret_cast<uint32_t>(object));
2058 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07002059 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002060}
2061
Mathieu Chartier39e32612013-11-12 16:28:05 -08002062void Heap::EnqueueClearedReferences() {
2063 if (!cleared_references_.IsEmpty()) {
Ian Rogers64b6d142012-10-29 16:34:15 -07002064 // When a runtime isn't started there are no reference queues to care about so ignore.
2065 if (LIKELY(Runtime::Current()->IsStarted())) {
2066 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08002067 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002068 ArgArray arg_array(NULL, 0);
Mathieu Chartier39e32612013-11-12 16:28:05 -08002069 arg_array.Append(reinterpret_cast<uint32_t>(cleared_references_.GetList()));
Jeff Hao5d917302013-02-27 17:57:33 -08002070 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07002071 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07002072 }
Mathieu Chartier39e32612013-11-12 16:28:05 -08002073 cleared_references_.Clear();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002074 }
2075}
2076
Ian Rogers1f539342012-10-03 21:09:42 -07002077void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07002078 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07002079 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08002080 DCHECK(concurrent_gc_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002081 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self) ||
2082 self->IsHandlingStackOverflow()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002083 return;
2084 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002085 // We already have a request pending, no reason to start more until we update
2086 // concurrent_start_bytes_.
2087 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers120f1c72012-09-28 17:17:10 -07002088 JNIEnv* env = self->GetJniEnv();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002089 DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2090 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002091 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2092 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002093 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002094}
2095
Ian Rogers81d425b2012-09-27 16:03:43 -07002096void Heap::ConcurrentGC(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002097 if (Runtime::Current()->IsShuttingDown(self)) {
2098 return;
Mathieu Chartier2542d662012-06-21 17:14:11 -07002099 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002100 // Wait for any GCs currently running to finish.
Mathieu Chartier590fee92013-09-13 13:46:47 -07002101 if (WaitForGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierf9ed0d32013-11-21 16:42:47 -08002102 // If the we can't run the GC type we wanted to run, find the next appropriate one and try that
2103 // instead. E.g. can't do partial, so do full instead.
2104 if (CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false) ==
2105 collector::kGcTypeNone) {
2106 for (collector::GcType gc_type : gc_plan_) {
2107 // Attempt to run the collector, if we succeed, we are done.
2108 if (gc_type > next_gc_type_ &&
2109 CollectGarbageInternal(gc_type, kGcCauseBackground, false) != collector::kGcTypeNone) {
2110 break;
2111 }
2112 }
2113 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07002114 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002115}
2116
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002117void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08002118 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
2119 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
2120 // a space it will hold its lock and can become a cause of jank.
2121 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
2122 // forking.
2123
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002124 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
2125 // because that only marks object heads, so a large array looks like lots of empty space. We
2126 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
2127 // to utilization (which is probably inversely proportional to how much benefit we can expect).
2128 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
2129 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08002130 uint64_t ms_time = MilliTime();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002131 // Don't bother trimming the alloc space if a heap trim occurred in the last two seconds.
2132 if (ms_time - last_trim_time_ms_ < 2 * 1000) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002133 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002134 }
Ian Rogers120f1c72012-09-28 17:17:10 -07002135
2136 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002137 Runtime* runtime = Runtime::Current();
2138 if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self)) {
2139 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
2140 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
2141 // as we don't hold the lock while requesting the trim).
2142 return;
Ian Rogerse1d490c2012-02-03 09:09:07 -08002143 }
Ian Rogers48931882013-01-22 14:35:16 -08002144
Ian Rogers1d54e732013-05-02 21:10:01 -07002145 last_trim_time_ms_ = ms_time;
Mathieu Chartierc39e3422013-08-07 16:41:36 -07002146 ListenForProcessStateChange();
2147
2148 // Trim only if we do not currently care about pause times.
2149 if (!care_about_pause_times_) {
2150 JNIEnv* env = self->GetJniEnv();
2151 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
2152 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
2153 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2154 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
2155 CHECK(!env->ExceptionCheck());
2156 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002157}
2158
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002159void Heap::RevokeThreadLocalBuffers(Thread* thread) {
2160 non_moving_space_->RevokeThreadLocalBuffers(thread);
2161}
2162
2163void Heap::RevokeAllThreadLocalBuffers() {
2164 non_moving_space_->RevokeAllThreadLocalBuffers();
2165}
2166
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002167bool Heap::IsGCRequestPending() const {
2168 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
2169}
2170
Mathieu Chartier590fee92013-09-13 13:46:47 -07002171void Heap::RunFinalization(JNIEnv* env) {
2172 // Can't do this in WellKnownClasses::Init since System is not properly set up at that point.
2173 if (WellKnownClasses::java_lang_System_runFinalization == nullptr) {
2174 CHECK(WellKnownClasses::java_lang_System != nullptr);
2175 WellKnownClasses::java_lang_System_runFinalization =
2176 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
2177 CHECK(WellKnownClasses::java_lang_System_runFinalization != nullptr);
2178 }
2179 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
2180 WellKnownClasses::java_lang_System_runFinalization);
2181}
2182
Ian Rogers1eb512d2013-10-18 15:42:20 -07002183void Heap::RegisterNativeAllocation(JNIEnv* env, int bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002184 Thread* self = ThreadForEnv(env);
2185 if (native_need_to_run_finalization_) {
2186 RunFinalization(env);
2187 UpdateMaxNativeFootprint();
2188 native_need_to_run_finalization_ = false;
2189 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002190 // Total number of native bytes allocated.
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002191 native_bytes_allocated_.fetch_add(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002192 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002193 collector::GcType gc_type = have_zygote_space_ ? collector::kGcTypePartial :
2194 collector::kGcTypeFull;
2195
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002196 // The second watermark is higher than the gc watermark. If you hit this it means you are
2197 // allocating native objects faster than the GC can keep up with.
2198 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002199 if (WaitForGcToComplete(self) != collector::kGcTypeNone) {
2200 // Just finished a GC, attempt to run finalizers.
2201 RunFinalization(env);
2202 CHECK(!env->ExceptionCheck());
2203 }
2204 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
2205 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002206 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002207 RunFinalization(env);
2208 native_need_to_run_finalization_ = false;
2209 CHECK(!env->ExceptionCheck());
2210 }
2211 // We have just run finalizers, update the native watermark since it is very likely that
2212 // finalizers released native managed allocations.
2213 UpdateMaxNativeFootprint();
2214 } else if (!IsGCRequestPending()) {
Mathieu Chartier50482232013-11-21 11:48:14 -08002215 if (concurrent_gc_ && AllocatorHasConcurrentGC(current_allocator_)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002216 RequestConcurrentGC(self);
2217 } else {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002218 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002219 }
2220 }
2221 }
2222}
2223
Ian Rogers1eb512d2013-10-18 15:42:20 -07002224void Heap::RegisterNativeFree(JNIEnv* env, int bytes) {
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002225 int expected_size, new_size;
2226 do {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002227 expected_size = native_bytes_allocated_.load();
2228 new_size = expected_size - bytes;
2229 if (UNLIKELY(new_size < 0)) {
2230 ScopedObjectAccess soa(env);
2231 env->ThrowNew(WellKnownClasses::java_lang_RuntimeException,
2232 StringPrintf("Attempted to free %d native bytes with only %d native bytes "
2233 "registered as allocated", bytes, expected_size).c_str());
2234 break;
2235 }
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002236 } while (!native_bytes_allocated_.compare_and_swap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002237}
2238
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002239int64_t Heap::GetTotalMemory() const {
2240 int64_t ret = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002241 for (const auto& space : continuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002242 // Currently don't include the image space.
2243 if (!space->IsImageSpace()) {
2244 ret += space->Size();
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002245 }
2246 }
Mathieu Chartier02e25112013-08-14 16:14:24 -07002247 for (const auto& space : discontinuous_spaces_) {
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002248 if (space->IsLargeObjectSpace()) {
2249 ret += space->AsLargeObjectSpace()->GetBytesAllocated();
2250 }
2251 }
2252 return ret;
2253}
2254
Mathieu Chartier11409ae2013-09-23 11:49:36 -07002255void Heap::AddModUnionTable(accounting::ModUnionTable* mod_union_table) {
2256 DCHECK(mod_union_table != nullptr);
2257 mod_union_tables_.Put(mod_union_table->GetSpace(), mod_union_table);
2258}
2259
Ian Rogers1d54e732013-05-02 21:10:01 -07002260} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07002261} // namespace art