blob: d8902f09664df664dd973dae9450bff8b5d87dc0 [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 Chartier50482232013-11-21 11:48:14 -080075static constexpr AllocatorType kDefaultPreZygoteAllocator = kAllocatorTypeFreeList;
Mathieu Chartier0051be62012-10-12 17:47:11 -070076
Mathieu Chartier0051be62012-10-12 17:47:11 -070077Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070078 double target_utilization, size_t capacity, const std::string& image_file_name,
Mathieu Chartier0de9f732013-11-22 17:58:48 -080079 CollectorType collector_type, size_t parallel_gc_threads, size_t conc_gc_threads,
Mathieu Chartier2775ee42013-08-20 17:43:47 -070080 bool low_memory_mode, size_t long_pause_log_threshold, size_t long_gc_log_threshold,
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -080081 bool ignore_max_footprint)
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080082 : non_moving_space_(nullptr),
Mathieu Chartier0de9f732013-11-22 17:58:48 -080083 concurrent_gc_(collector_type == gc::kCollectorTypeCMS),
84 collector_type_(collector_type),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070085 parallel_gc_threads_(parallel_gc_threads),
86 conc_gc_threads_(conc_gc_threads),
Mathieu Chartiere0a53e92013-08-05 10:17:40 -070087 low_memory_mode_(low_memory_mode),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070088 long_pause_log_threshold_(long_pause_log_threshold),
89 long_gc_log_threshold_(long_gc_log_threshold),
90 ignore_max_footprint_(ignore_max_footprint),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070091 have_zygote_space_(false),
Mathieu Chartier39e32612013-11-12 16:28:05 -080092 soft_reference_queue_(this),
93 weak_reference_queue_(this),
94 finalizer_reference_queue_(this),
95 phantom_reference_queue_(this),
96 cleared_references_(this),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080097 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -070098 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -070099 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800100 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700101 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700102 max_allowed_footprint_(initial_size),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700103 native_footprint_gc_watermark_(initial_size),
104 native_footprint_limit_(2 * initial_size),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700105 native_need_to_run_finalization_(false),
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700106 activity_thread_class_(NULL),
107 application_thread_class_(NULL),
108 activity_thread_(NULL),
109 application_thread_(NULL),
110 last_process_state_id_(NULL),
111 // Initially care about pauses in case we never get notified of process states, or if the JNI
112 // code becomes broken.
113 care_about_pause_times_(true),
Mathieu Chartier720ef762013-08-17 14:46:54 -0700114 concurrent_start_bytes_(concurrent_gc_ ? initial_size - kMinConcurrentRemainingBytes
115 : std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -0700116 total_bytes_freed_ever_(0),
117 total_objects_freed_ever_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800118 num_bytes_allocated_(0),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700119 native_bytes_allocated_(0),
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700120 gc_memory_overhead_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700121 verify_missing_card_marks_(false),
122 verify_system_weaks_(false),
123 verify_pre_gc_heap_(false),
124 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700125 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700126 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700127 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700128 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800129 allocation_rate_(0),
Mathieu Chartier0418ae22013-07-31 13:35:46 -0700130 /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
131 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
132 * verification is enabled, we limit the size of allocation stacks to speed up their
133 * searching.
134 */
135 max_allocation_stack_size_(kGCALotMode ? kGcAlotInterval
Mathieu Chartier590fee92013-09-13 13:46:47 -0700136 : (kDesiredHeapVerification > kVerifyAllFast) ? KB : MB),
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800137 current_allocator_(kMovingCollector ? kAllocatorTypeBumpPointer : kAllocatorTypeFreeList),
138 current_non_moving_allocator_(kAllocatorTypeFreeList),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700139 bump_pointer_space_(nullptr),
140 temp_space_(nullptr),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800141 reference_referent_offset_(0),
142 reference_queue_offset_(0),
143 reference_queueNext_offset_(0),
144 reference_pendingNext_offset_(0),
145 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700146 min_free_(min_free),
147 max_free_(max_free),
148 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700149 total_wait_time_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700150 total_allocation_time_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700151 verify_object_mode_(kHeapVerificationNotPermitted),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700152 gc_disable_count_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700153 running_on_valgrind_(RUNNING_ON_VALGRIND) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800154 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800155 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700156 }
Mathieu Chartier50482232013-11-21 11:48:14 -0800157 // If we aren't the zygote, switch to the default non zygote allocator. This may update the
158 // entrypoints.
159 if (!Runtime::Current()->IsZygote()) {
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800160 ChangeCollector(collector_type_);
Mathieu Chartier50482232013-11-21 11:48:14 -0800161 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700162 live_bitmap_.reset(new accounting::HeapBitmap(this));
163 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Ian Rogers30fab402012-01-23 15:43:46 -0800164 // Requested begin for the alloc space, to follow the mapped image and oat files
Mathieu Chartier50482232013-11-21 11:48:14 -0800165 byte* requested_alloc_space_begin = nullptr;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800166 if (!image_file_name.empty()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700167 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name.c_str());
Mathieu Chartier50482232013-11-21 11:48:14 -0800168 CHECK(image_space != nullptr) << "Failed to create space for " << image_file_name;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700169 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800170 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
171 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800172 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
173 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700174 if (oat_file_end_addr > requested_alloc_space_begin) {
Mathieu Chartier50482232013-11-21 11:48:14 -0800175 requested_alloc_space_begin = AlignUp(oat_file_end_addr, kPageSize);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700176 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700177 }
178
Mathieu Chartier590fee92013-09-13 13:46:47 -0700179 const char* name = Runtime::Current()->IsZygote() ? "zygote space" : "alloc space";
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700180 if (!kUseRosAlloc) {
181 non_moving_space_ = space::DlMallocSpace::Create(name, initial_size, growth_limit, capacity,
182 requested_alloc_space_begin);
183 } else {
184 non_moving_space_ = space::RosAllocSpace::Create(name, initial_size, growth_limit, capacity,
185 requested_alloc_space_begin);
186 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700187 if (kMovingCollector) {
188 // TODO: Place bump-pointer spaces somewhere to minimize size of card table.
189 // TODO: Having 3+ spaces as big as the large heap size can cause virtual memory fragmentation
190 // issues.
191 const size_t bump_pointer_space_size = std::min(non_moving_space_->Capacity(), 128 * MB);
192 bump_pointer_space_ = space::BumpPointerSpace::Create("Bump pointer space",
193 bump_pointer_space_size, nullptr);
194 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space";
195 AddSpace(bump_pointer_space_);
196 temp_space_ = space::BumpPointerSpace::Create("Bump pointer space 2", bump_pointer_space_size,
197 nullptr);
198 CHECK(temp_space_ != nullptr) << "Failed to create bump pointer space";
199 AddSpace(temp_space_);
200 }
201
202 CHECK(non_moving_space_ != NULL) << "Failed to create non-moving space";
203 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
204 AddSpace(non_moving_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700205
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700206 // Allocate the large object space.
207 const bool kUseFreeListSpaceForLOS = false;
208 if (kUseFreeListSpaceForLOS) {
209 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
210 } else {
211 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
212 }
213 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700214 AddSpace(large_object_space_);
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700215
Ian Rogers1d54e732013-05-02 21:10:01 -0700216 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
Mathieu Chartier590fee92013-09-13 13:46:47 -0700217 CHECK(!continuous_spaces_.empty());
218 // Relies on the spaces being sorted.
Ian Rogers1d54e732013-05-02 21:10:01 -0700219 byte* heap_begin = continuous_spaces_.front()->Begin();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700220 byte* heap_end = continuous_spaces_.back()->Limit();
221 size_t heap_capacity = heap_end - heap_begin;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700222
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800223 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700224 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700225 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700226
Mathieu Chartier590fee92013-09-13 13:46:47 -0700227 // Card cache for now since it makes it easier for us to update the references to the copying
228 // spaces.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700229 accounting::ModUnionTable* mod_union_table =
Mathieu Chartier590fee92013-09-13 13:46:47 -0700230 new accounting::ModUnionTableCardCache("Image mod-union table", this, GetImageSpace());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700231 CHECK(mod_union_table != nullptr) << "Failed to create image mod-union table";
232 AddModUnionTable(mod_union_table);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700233
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700234 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700235 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700236
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800237 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700238 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700239 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
240 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
241 max_allocation_stack_size_));
242 live_stack_.reset(accounting::ObjectStack::Create("live stack",
243 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700244
Mathieu Chartier65db8802012-11-20 12:36:46 -0800245 // It's still too early to take a lock because there are no threads yet, but we can create locks
246 // now. We don't create it earlier to make it clear that you can't use locks during heap
247 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700248 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700249 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
250 *gc_complete_lock_));
Ian Rogers1d54e732013-05-02 21:10:01 -0700251 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800252 last_gc_size_ = GetBytesAllocated();
253
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700254 if (ignore_max_footprint_) {
255 SetIdealFootprint(std::numeric_limits<size_t>::max());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700256 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700257 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700258 CHECK_NE(max_allowed_footprint_, 0U);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700259
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800260 // Create our garbage collectors.
Mathieu Chartier50482232013-11-21 11:48:14 -0800261 for (size_t i = 0; i < 2; ++i) {
262 const bool concurrent = i != 0;
263 garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent));
264 garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
265 garbage_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
266 }
267 gc_plan_.push_back(collector::kGcTypeSticky);
268 gc_plan_.push_back(collector::kGcTypePartial);
269 gc_plan_.push_back(collector::kGcTypeFull);
270 if (kMovingCollector) {
271 // TODO: Clean this up.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700272 semi_space_collector_ = new collector::SemiSpace(this);
273 garbage_collectors_.push_back(semi_space_collector_);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700274 }
275
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700276 if (running_on_valgrind_) {
Ian Rogersfa824272013-11-05 16:12:57 -0800277 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700278 }
279
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800280 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800281 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700282 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700283}
284
Mathieu Chartier50482232013-11-21 11:48:14 -0800285void Heap::ChangeAllocator(AllocatorType allocator) {
286 DCHECK_NE(allocator, kAllocatorTypeLOS);
287 if (current_allocator_ != allocator) {
288 current_allocator_ = allocator;
289 SetQuickAllocEntryPointsAllocator(current_allocator_);
290 Runtime::Current()->GetInstrumentation()->ResetQuickAllocEntryPoints();
291 }
292}
293
Mathieu Chartier590fee92013-09-13 13:46:47 -0700294bool Heap::IsCompilingBoot() const {
295 for (const auto& space : continuous_spaces_) {
296 if (space->IsImageSpace()) {
297 return false;
298 } else if (space->IsZygoteSpace()) {
299 return false;
300 }
301 }
302 return true;
303}
304
305bool Heap::HasImageSpace() const {
306 for (const auto& space : continuous_spaces_) {
307 if (space->IsImageSpace()) {
308 return true;
309 }
310 }
311 return false;
312}
313
314void Heap::IncrementDisableGC(Thread* self) {
315 // Need to do this holding the lock to prevent races where the GC is about to run / running when
316 // we attempt to disable it.
317 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
318 MutexLock mu(self, *gc_complete_lock_);
319 WaitForGcToCompleteLocked(self);
320 ++gc_disable_count_;
321}
322
323void Heap::DecrementDisableGC(Thread* self) {
324 MutexLock mu(self, *gc_complete_lock_);
325 CHECK_GE(gc_disable_count_, 0U);
326 --gc_disable_count_;
327}
328
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700329void Heap::CreateThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700330 const size_t num_threads = std::max(parallel_gc_threads_, conc_gc_threads_);
331 if (num_threads != 0) {
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800332 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700333 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700334}
335
Mathieu Chartier590fee92013-09-13 13:46:47 -0700336void Heap::VisitObjects(ObjectVisitorCallback callback, void* arg) {
337 // Visit objects in bump pointer space.
338 Thread* self = Thread::Current();
339 // TODO: Use reference block.
340 std::vector<SirtRef<mirror::Object>*> saved_refs;
341 if (bump_pointer_space_ != nullptr) {
342 // Need to put all these in sirts since the callback may trigger a GC. TODO: Use a better data
343 // structure.
344 mirror::Object* obj = reinterpret_cast<mirror::Object*>(bump_pointer_space_->Begin());
345 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(
346 bump_pointer_space_->End());
347 while (obj < end) {
348 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
349 obj = space::BumpPointerSpace::GetNextObject(obj);
350 }
351 }
352 // TODO: Switch to standard begin and end to use ranged a based loop.
353 for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End();
354 it < end; ++it) {
355 mirror::Object* obj = *it;
356 // Objects in the allocation stack might be in a movable space.
357 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
358 }
359 GetLiveBitmap()->Walk(callback, arg);
360 for (const auto& ref : saved_refs) {
361 callback(ref->get(), arg);
362 }
363 // Need to free the sirts in reverse order they were allocated.
364 for (size_t i = saved_refs.size(); i != 0; --i) {
365 delete saved_refs[i - 1];
366 }
367}
368
369void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) {
370 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(), stack);
371}
372
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700373void Heap::DeleteThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700374 thread_pool_.reset(nullptr);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700375}
376
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700377static bool ReadStaticInt(JNIEnvExt* env, jclass clz, const char* name, int* out_value) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700378 DCHECK(out_value != NULL);
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700379 jfieldID field = env->GetStaticFieldID(clz, name, "I");
380 if (field == NULL) {
381 env->ExceptionClear();
382 return false;
383 }
384 *out_value = env->GetStaticIntField(clz, field);
385 return true;
386}
387
388void Heap::ListenForProcessStateChange() {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700389 VLOG(heap) << "Heap notified of process state change";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700390
391 Thread* self = Thread::Current();
392 JNIEnvExt* env = self->GetJniEnv();
393
394 if (!have_zygote_space_) {
395 return;
396 }
397
398 if (activity_thread_class_ == NULL) {
399 jclass clz = env->FindClass("android/app/ActivityThread");
400 if (clz == NULL) {
401 env->ExceptionClear();
402 LOG(WARNING) << "Could not find activity thread class in process state change";
403 return;
404 }
405 activity_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
406 }
407
408 if (activity_thread_class_ != NULL && activity_thread_ == NULL) {
409 jmethodID current_activity_method = env->GetStaticMethodID(activity_thread_class_,
410 "currentActivityThread",
411 "()Landroid/app/ActivityThread;");
412 if (current_activity_method == NULL) {
413 env->ExceptionClear();
414 LOG(WARNING) << "Could not get method for currentActivityThread";
415 return;
416 }
417
418 jobject obj = env->CallStaticObjectMethod(activity_thread_class_, current_activity_method);
419 if (obj == NULL) {
420 env->ExceptionClear();
421 LOG(WARNING) << "Could not get current activity";
422 return;
423 }
424 activity_thread_ = env->NewGlobalRef(obj);
425 }
426
427 if (process_state_cares_about_pause_time_.empty()) {
428 // Just attempt to do this the first time.
429 jclass clz = env->FindClass("android/app/ActivityManager");
430 if (clz == NULL) {
431 LOG(WARNING) << "Activity manager class is null";
432 return;
433 }
434 ScopedLocalRef<jclass> activity_manager(env, clz);
435 std::vector<const char*> care_about_pauses;
436 care_about_pauses.push_back("PROCESS_STATE_TOP");
437 care_about_pauses.push_back("PROCESS_STATE_IMPORTANT_BACKGROUND");
438 // Attempt to read the constants and classify them as whether or not we care about pause times.
439 for (size_t i = 0; i < care_about_pauses.size(); ++i) {
440 int process_state = 0;
441 if (ReadStaticInt(env, activity_manager.get(), care_about_pauses[i], &process_state)) {
442 process_state_cares_about_pause_time_.insert(process_state);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700443 VLOG(heap) << "Adding process state " << process_state
444 << " to set of states which care about pause time";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700445 }
446 }
447 }
448
449 if (application_thread_class_ == NULL) {
450 jclass clz = env->FindClass("android/app/ActivityThread$ApplicationThread");
451 if (clz == NULL) {
452 env->ExceptionClear();
453 LOG(WARNING) << "Could not get application thread class";
454 return;
455 }
456 application_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
457 last_process_state_id_ = env->GetFieldID(application_thread_class_, "mLastProcessState", "I");
458 if (last_process_state_id_ == NULL) {
459 env->ExceptionClear();
460 LOG(WARNING) << "Could not get last process state member";
461 return;
462 }
463 }
464
465 if (application_thread_class_ != NULL && application_thread_ == NULL) {
466 jmethodID get_application_thread =
467 env->GetMethodID(activity_thread_class_, "getApplicationThread",
468 "()Landroid/app/ActivityThread$ApplicationThread;");
469 if (get_application_thread == NULL) {
470 LOG(WARNING) << "Could not get method ID for get application thread";
471 return;
472 }
473
474 jobject obj = env->CallObjectMethod(activity_thread_, get_application_thread);
475 if (obj == NULL) {
476 LOG(WARNING) << "Could not get application thread";
477 return;
478 }
479
480 application_thread_ = env->NewGlobalRef(obj);
481 }
482
483 if (application_thread_ != NULL && last_process_state_id_ != NULL) {
484 int process_state = env->GetIntField(application_thread_, last_process_state_id_);
485 env->ExceptionClear();
486
487 care_about_pause_times_ = process_state_cares_about_pause_time_.find(process_state) !=
488 process_state_cares_about_pause_time_.end();
489
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700490 VLOG(heap) << "New process state " << process_state
491 << " care about pauses " << care_about_pause_times_;
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700492 }
Mathieu Chartier82353312013-07-18 10:47:51 -0700493}
494
Mathieu Chartier590fee92013-09-13 13:46:47 -0700495void Heap::AddSpace(space::Space* space) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700496 DCHECK(space != NULL);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700497 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
498 if (space->IsContinuousSpace()) {
499 DCHECK(!space->IsDiscontinuousSpace());
500 space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
501 // Continuous spaces don't necessarily have bitmaps.
502 accounting::SpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
503 accounting::SpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
504 if (live_bitmap != nullptr) {
505 DCHECK(mark_bitmap != nullptr);
506 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap);
507 mark_bitmap_->AddContinuousSpaceBitmap(mark_bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700508 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700509
510 continuous_spaces_.push_back(continuous_space);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700511 if (continuous_space->IsMallocSpace()) {
512 non_moving_space_ = continuous_space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700513 }
514
515 // Ensure that spaces remain sorted in increasing order of start address.
516 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(),
517 [](const space::ContinuousSpace* a, const space::ContinuousSpace* b) {
518 return a->Begin() < b->Begin();
519 });
520 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
521 // avoid redundant marking.
522 bool seen_zygote = false, seen_alloc = false;
523 for (const auto& space : continuous_spaces_) {
524 if (space->IsImageSpace()) {
525 CHECK(!seen_zygote);
526 CHECK(!seen_alloc);
527 } else if (space->IsZygoteSpace()) {
528 CHECK(!seen_alloc);
529 seen_zygote = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700530 } else if (space->IsMallocSpace()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700531 seen_alloc = true;
532 }
533 }
534 } else {
535 DCHECK(space->IsDiscontinuousSpace());
536 space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
537 DCHECK(discontinuous_space->GetLiveObjects() != nullptr);
538 live_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetLiveObjects());
539 DCHECK(discontinuous_space->GetMarkObjects() != nullptr);
540 mark_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetMarkObjects());
541 discontinuous_spaces_.push_back(discontinuous_space);
542 }
543 if (space->IsAllocSpace()) {
544 alloc_spaces_.push_back(space->AsAllocSpace());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700545 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800546}
547
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700548void Heap::RegisterGCAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700549 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700550 gc_memory_overhead_.fetch_add(bytes);
551 }
552}
553
554void Heap::RegisterGCDeAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700555 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700556 gc_memory_overhead_.fetch_sub(bytes);
557 }
558}
559
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700560void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700561 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700562 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700563 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800564
565 // Dump cumulative loggers for each GC type.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800566 uint64_t total_paused_time = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700567 for (const auto& collector : garbage_collectors_) {
Sameer Abu Asala8439542013-02-14 16:06:42 -0800568 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800569 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700570 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800571 const uint64_t total_ns = logger.GetTotalNs();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700572 const uint64_t total_pause_ns = collector->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800573 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
574 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
575 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Mathieu Chartierb2f99362013-11-20 17:26:00 -0800576 Histogram<uint64_t>::CumulativeData cumulative_data;
577 collector->GetPauseHistogram().CreateHistogram(&cumulative_data);
578 collector->GetPauseHistogram().PrintConfidenceIntervals(os, 0.99, cumulative_data);
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700579 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700580 << collector->GetName() << " freed: " << freed_objects
581 << " objects with total size " << PrettySize(freed_bytes) << "\n"
582 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
583 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800584 total_duration += total_ns;
585 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700586 }
587 }
588 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700589 size_t total_objects_allocated = GetObjectsAllocatedEver();
590 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700591 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700592 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700593 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
594 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700595 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700596 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700597 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700598 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700599 os << "Total number of allocations: " << total_objects_allocated << "\n";
600 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700601 if (kMeasureAllocationTime) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700602 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
603 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
604 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700605 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700606 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
607 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700608 os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700609}
610
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800611Heap::~Heap() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700612 VLOG(heap) << "Starting ~Heap()";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700613 STLDeleteElements(&garbage_collectors_);
614 // If we don't reset then the mark stack complains in its destructor.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700615 allocation_stack_->Reset();
616 live_stack_->Reset();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700617 STLDeleteValues(&mod_union_tables_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700618 STLDeleteElements(&continuous_spaces_);
619 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700620 delete gc_complete_lock_;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700621 VLOG(heap) << "Finished ~Heap()";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700622}
623
Ian Rogers1d54e732013-05-02 21:10:01 -0700624space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
625 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700626 for (const auto& space : continuous_spaces_) {
627 if (space->Contains(obj)) {
628 return space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700629 }
630 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700631 if (!fail_ok) {
632 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
633 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700634 return NULL;
635}
636
Ian Rogers1d54e732013-05-02 21:10:01 -0700637space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
638 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700639 for (const auto& space : discontinuous_spaces_) {
640 if (space->Contains(obj)) {
641 return space;
Ian Rogers1d54e732013-05-02 21:10:01 -0700642 }
643 }
644 if (!fail_ok) {
645 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
646 }
647 return NULL;
648}
649
650space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
651 space::Space* result = FindContinuousSpaceFromObject(obj, true);
652 if (result != NULL) {
653 return result;
654 }
655 return FindDiscontinuousSpaceFromObject(obj, true);
656}
657
Mathieu Chartier39e32612013-11-12 16:28:05 -0800658struct SoftReferenceArgs {
659 RootVisitor* is_marked_callback_;
660 RootVisitor* recursive_mark_callback_;
661 void* arg_;
662};
663
664mirror::Object* Heap::PreserveSoftReferenceCallback(mirror::Object* obj, void* arg) {
665 SoftReferenceArgs* args = reinterpret_cast<SoftReferenceArgs*>(arg);
666 // TODO: Not preserve all soft references.
667 return args->recursive_mark_callback_(obj, args->arg_);
668}
669
670// Process reference class instances and schedule finalizations.
671void Heap::ProcessReferences(TimingLogger& timings, bool clear_soft,
672 RootVisitor* is_marked_callback,
673 RootVisitor* recursive_mark_object_callback, void* arg) {
674 // Unless we are in the zygote or required to clear soft references with white references,
675 // preserve some white referents.
676 if (!clear_soft && !Runtime::Current()->IsZygote()) {
677 SoftReferenceArgs soft_reference_args;
678 soft_reference_args.is_marked_callback_ = is_marked_callback;
679 soft_reference_args.recursive_mark_callback_ = recursive_mark_object_callback;
680 soft_reference_args.arg_ = arg;
681 soft_reference_queue_.PreserveSomeSoftReferences(&PreserveSoftReferenceCallback,
682 &soft_reference_args);
683 }
684 timings.StartSplit("ProcessReferences");
685 // Clear all remaining soft and weak references with white referents.
686 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
687 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
688 timings.EndSplit();
689 // Preserve all white objects with finalize methods and schedule them for finalization.
690 timings.StartSplit("EnqueueFinalizerReferences");
691 finalizer_reference_queue_.EnqueueFinalizerReferences(cleared_references_, is_marked_callback,
692 recursive_mark_object_callback, arg);
693 timings.EndSplit();
694 timings.StartSplit("ProcessReferences");
695 // Clear all f-reachable soft and weak references with white referents.
696 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
697 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
698 // Clear all phantom references with white referents.
699 phantom_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
700 // At this point all reference queues other than the cleared references should be empty.
701 DCHECK(soft_reference_queue_.IsEmpty());
702 DCHECK(weak_reference_queue_.IsEmpty());
703 DCHECK(finalizer_reference_queue_.IsEmpty());
704 DCHECK(phantom_reference_queue_.IsEmpty());
705 timings.EndSplit();
706}
707
708bool Heap::IsEnqueued(mirror::Object* ref) const {
709 // Since the references are stored as cyclic lists it means that once enqueued, the pending next
710 // will always be non-null.
711 return ref->GetFieldObject<mirror::Object*>(GetReferencePendingNextOffset(), false) != nullptr;
712}
713
714bool Heap::IsEnqueuable(const mirror::Object* ref) const {
715 DCHECK(ref != nullptr);
716 const mirror::Object* queue =
717 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueOffset(), false);
718 const mirror::Object* queue_next =
719 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueNextOffset(), false);
720 return queue != nullptr && queue_next == nullptr;
721}
722
723// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
724// marked, put it on the appropriate list in the heap for later processing.
725void Heap::DelayReferenceReferent(mirror::Class* klass, mirror::Object* obj,
726 RootVisitor mark_visitor, void* arg) {
727 DCHECK(klass != nullptr);
728 DCHECK(klass->IsReferenceClass());
729 DCHECK(obj != nullptr);
730 mirror::Object* referent = GetReferenceReferent(obj);
731 if (referent != nullptr) {
732 mirror::Object* forward_address = mark_visitor(referent, arg);
733 // Null means that the object is not currently marked.
734 if (forward_address == nullptr) {
735 Thread* self = Thread::Current();
736 // TODO: Remove these locks, and use atomic stacks for storing references?
737 // We need to check that the references haven't already been enqueued since we can end up
738 // scanning the same reference multiple times due to dirty cards.
739 if (klass->IsSoftReferenceClass()) {
740 soft_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
741 } else if (klass->IsWeakReferenceClass()) {
742 weak_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
743 } else if (klass->IsFinalizerReferenceClass()) {
744 finalizer_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
745 } else if (klass->IsPhantomReferenceClass()) {
746 phantom_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
747 } else {
748 LOG(FATAL) << "Invalid reference type " << PrettyClass(klass) << " " << std::hex
749 << klass->GetAccessFlags();
750 }
751 } else if (referent != forward_address) {
752 // Referent is already marked and we need to update it.
753 SetReferenceReferent(obj, forward_address);
754 }
755 }
756}
757
Ian Rogers1d54e732013-05-02 21:10:01 -0700758space::ImageSpace* Heap::GetImageSpace() const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700759 for (const auto& space : continuous_spaces_) {
760 if (space->IsImageSpace()) {
761 return space->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700762 }
763 }
764 return NULL;
765}
766
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700767static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700768 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700769 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700770 size_t chunk_free_bytes = chunk_size - used_bytes;
771 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
772 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700773 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700774}
775
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700776void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, bool large_object_allocation) {
777 std::ostringstream oss;
778 int64_t total_bytes_free = GetFreeMemory();
779 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
780 << " free bytes";
781 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
782 if (!large_object_allocation && total_bytes_free >= byte_count) {
783 size_t max_contiguous_allocation = 0;
784 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700785 if (space->IsMallocSpace()) {
786 // To allow the Walk/InspectAll() to exclusively-lock the mutator
787 // lock, temporarily release the shared access to the mutator
788 // lock here by transitioning to the suspended state.
789 Locks::mutator_lock_->AssertSharedHeld(self);
790 self->TransitionFromRunnableToSuspended(kSuspended);
791 space->AsMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
792 self->TransitionFromSuspendedToRunnable();
793 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700794 }
795 }
796 oss << "; failed due to fragmentation (largest possible contiguous allocation "
797 << max_contiguous_allocation << " bytes)";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700798 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700799 self->ThrowOutOfMemoryError(oss.str().c_str());
800}
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700801
Mathieu Chartier590fee92013-09-13 13:46:47 -0700802void Heap::Trim() {
803 uint64_t start_ns = NanoTime();
804 // Trim the managed spaces.
805 uint64_t total_alloc_space_allocated = 0;
806 uint64_t total_alloc_space_size = 0;
807 uint64_t managed_reclaimed = 0;
808 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700809 if (space->IsMallocSpace() && !space->IsZygoteSpace()) {
810 gc::space::MallocSpace* alloc_space = space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700811 total_alloc_space_size += alloc_space->Size();
812 managed_reclaimed += alloc_space->Trim();
813 }
814 }
815 total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated() -
816 bump_pointer_space_->GetBytesAllocated();
817 const float managed_utilization = static_cast<float>(total_alloc_space_allocated) /
818 static_cast<float>(total_alloc_space_size);
819 uint64_t gc_heap_end_ns = NanoTime();
820 // Trim the native heap.
821 dlmalloc_trim(0);
822 size_t native_reclaimed = 0;
823 dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
824 uint64_t end_ns = NanoTime();
825 VLOG(heap) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
826 << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
827 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
828 << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
829 << "%.";
830}
831
832bool Heap::IsValidObjectAddress(const mirror::Object* obj) const {
833 // Note: we deliberately don't take the lock here, and mustn't test anything that would require
834 // taking the lock.
835 if (obj == nullptr) {
Elliott Hughes88c5c352012-03-15 18:49:48 -0700836 return true;
837 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700838 return IsAligned<kObjectAlignment>(obj) && IsHeapAddress(obj);
839}
840
841bool Heap::IsHeapAddress(const mirror::Object* obj) const {
842 if (kMovingCollector && bump_pointer_space_->HasAddress(obj)) {
843 return true;
Elliott Hughesa2501992011-08-26 19:39:54 -0700844 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700845 // TODO: This probably doesn't work for large objects.
846 return FindSpaceFromObject(obj, true) != nullptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700847}
848
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700849bool Heap::IsLiveObjectLocked(const mirror::Object* obj, bool search_allocation_stack,
850 bool search_live_stack, bool sorted) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700851 // Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700852 if (obj == nullptr || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700853 return false;
854 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700855 space::ContinuousSpace* c_space = FindContinuousSpaceFromObject(obj, true);
856 space::DiscontinuousSpace* d_space = NULL;
857 if (c_space != NULL) {
858 if (c_space->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700859 return true;
860 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700861 } else if (bump_pointer_space_->Contains(obj) || temp_space_->Contains(obj)) {
862 return true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700863 } else {
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700864 d_space = FindDiscontinuousSpaceFromObject(obj, true);
865 if (d_space != NULL) {
866 if (d_space->GetLiveObjects()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700867 return true;
868 }
869 }
870 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700871 // This is covering the allocation/live stack swapping that is done without mutators suspended.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700872 for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
873 if (i > 0) {
874 NanoSleep(MsToNs(10));
Ian Rogers1d54e732013-05-02 21:10:01 -0700875 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700876 if (search_allocation_stack) {
877 if (sorted) {
878 if (allocation_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
879 return true;
880 }
881 } else if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj))) {
882 return true;
883 }
884 }
885
886 if (search_live_stack) {
887 if (sorted) {
888 if (live_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
889 return true;
890 }
891 } else if (live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
892 return true;
893 }
894 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700895 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700896 // We need to check the bitmaps again since there is a race where we mark something as live and
897 // then clear the stack containing it.
898 if (c_space != NULL) {
899 if (c_space->GetLiveBitmap()->Test(obj)) {
900 return true;
901 }
902 } else {
903 d_space = FindDiscontinuousSpaceFromObject(obj, true);
904 if (d_space != NULL && d_space->GetLiveObjects()->Test(obj)) {
905 return true;
906 }
907 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700908 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700909}
910
Ian Rogers04d7aa92013-03-16 14:29:17 -0700911void Heap::VerifyObjectImpl(const mirror::Object* obj) {
912 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700913 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700914 return;
915 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700916 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700917}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700918
Mathieu Chartier590fee92013-09-13 13:46:47 -0700919void Heap::DumpSpaces(std::ostream& stream) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700920 for (const auto& space : continuous_spaces_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700921 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
922 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700923 stream << space << " " << *space << "\n";
924 if (live_bitmap != nullptr) {
925 stream << live_bitmap << " " << *live_bitmap << "\n";
926 }
927 if (mark_bitmap != nullptr) {
928 stream << mark_bitmap << " " << *mark_bitmap << "\n";
929 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700930 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700931 for (const auto& space : discontinuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700932 stream << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700933 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700934}
935
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800936void Heap::VerifyObjectBody(const mirror::Object* obj) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700937 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
938 // Ignore early dawn of the universe verifications.
939 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.load()) < 10 * KB)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800940 return;
941 }
942 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
943 mirror::Object::ClassOffset().Int32Value();
944 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
945 if (UNLIKELY(c == NULL)) {
946 LOG(FATAL) << "Null class in object: " << obj;
947 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
948 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
949 }
950 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
951 // Note: we don't use the accessors here as they have internal sanity checks
952 // that we don't want to run
953 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
954 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
955 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
956 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
957 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700958
Mathieu Chartier590fee92013-09-13 13:46:47 -0700959 if (verify_object_mode_ > kVerifyAllFast) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800960 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
961 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700962 if (!IsLiveObjectLocked(obj)) {
963 DumpSpaces();
964 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700965 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700966 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700967 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
968 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700969 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700970}
971
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800972void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700973 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700974 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700975}
976
977void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700978 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700979 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700980}
981
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700982void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700983 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700984 num_bytes_allocated_.fetch_sub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700985
986 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700987 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700988 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700989 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700990
991 // TODO: Do this concurrently.
992 RuntimeStats* global_stats = Runtime::Current()->GetStats();
993 global_stats->freed_objects += freed_objects;
994 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700995 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700996}
997
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800998mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator,
Mathieu Chartier720ef762013-08-17 14:46:54 -0700999 size_t alloc_size, size_t* bytes_allocated) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001000 mirror::Object* ptr = nullptr;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001001 // The allocation failed. If the GC is running, block until it completes, and then retry the
1002 // allocation.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001003 collector::GcType last_gc = WaitForGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -07001004 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001005 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001006 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001007 }
1008
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001009 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001010 for (collector::GcType gc_type : gc_plan_) {
1011 if (ptr != nullptr) {
1012 break;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001013 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001014 // Attempt to run the collector, if we succeed, re-try the allocation.
1015 if (CollectGarbageInternal(gc_type, kGcCauseForAlloc, false) != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001016 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001017 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001018 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001019 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001020 // Allocations have failed after GCs; this is an exceptional state.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001021 if (ptr == nullptr) {
1022 // Try harder, growing the heap if necessary.
1023 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001024 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001025 if (ptr == nullptr) {
1026 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
1027 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
1028 // VM spec requires that all SoftReferences have been collected and cleared before throwing
1029 // OOME.
1030 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
1031 << " allocation";
1032 // TODO: Run finalization, but this may cause more allocations to occur.
1033 // We don't need a WaitForGcToComplete here either.
1034 DCHECK(!gc_plan_.empty());
1035 CollectGarbageInternal(gc_plan_.back(), kGcCauseForAlloc, true);
1036 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
1037 if (ptr == nullptr) {
1038 ThrowOutOfMemoryError(self, alloc_size, false);
1039 }
1040 }
1041 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001042}
1043
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001044void Heap::SetTargetHeapUtilization(float target) {
1045 DCHECK_GT(target, 0.0f); // asserted in Java code
1046 DCHECK_LT(target, 1.0f);
1047 target_utilization_ = target;
1048}
1049
Ian Rogers1d54e732013-05-02 21:10:01 -07001050size_t Heap::GetObjectsAllocated() const {
1051 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001052 for (space::AllocSpace* space : alloc_spaces_) {
1053 total += space->GetObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001054 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001055 return total;
1056}
1057
Ian Rogers1d54e732013-05-02 21:10:01 -07001058size_t Heap::GetObjectsAllocatedEver() const {
1059 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001060 for (space::AllocSpace* space : alloc_spaces_) {
1061 total += space->GetTotalObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001062 }
1063 return total;
1064}
1065
1066size_t Heap::GetBytesAllocatedEver() const {
1067 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001068 for (space::AllocSpace* space : alloc_spaces_) {
1069 total += space->GetTotalBytesAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001070 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001071 return total;
1072}
1073
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001074class InstanceCounter {
1075 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001076 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001078 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001079 }
1080
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001081 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001082 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001083 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001084 if (use_is_assignable_from_) {
1085 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
1086 ++counts_[i];
1087 }
1088 } else {
1089 if (instance_class == classes_[i]) {
1090 ++counts_[i];
1091 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001092 }
1093 }
1094 }
1095
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001096 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001097 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001098 bool use_is_assignable_from_;
1099 uint64_t* const counts_;
1100
1101 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001102};
1103
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001104void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001105 uint64_t* counts) {
1106 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1107 // is empty, so the live bitmap is the only place we need to look.
1108 Thread* self = Thread::Current();
1109 self->TransitionFromRunnableToSuspended(kNative);
1110 CollectGarbage(false);
1111 self->TransitionFromSuspendedToRunnable();
1112
1113 InstanceCounter counter(classes, use_is_assignable_from, counts);
1114 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001115 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001116}
1117
Elliott Hughes3b78c942013-01-15 17:35:41 -08001118class InstanceCollector {
1119 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001120 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -08001121 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1122 : class_(c), max_count_(max_count), instances_(instances) {
1123 }
1124
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001125 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1126 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -08001127 if (instance_class == class_) {
1128 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001129 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001130 }
1131 }
1132 }
1133
1134 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001135 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001136 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001137 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001138
1139 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
1140};
1141
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001142void Heap::GetInstances(mirror::Class* c, int32_t max_count,
1143 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001144 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1145 // is empty, so the live bitmap is the only place we need to look.
1146 Thread* self = Thread::Current();
1147 self->TransitionFromRunnableToSuspended(kNative);
1148 CollectGarbage(false);
1149 self->TransitionFromSuspendedToRunnable();
1150
1151 InstanceCollector collector(c, max_count, instances);
1152 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1153 GetLiveBitmap()->Visit(collector);
1154}
1155
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001156class ReferringObjectsFinder {
1157 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001158 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1159 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001160 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1161 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1162 }
1163
1164 // For bitmap Visit.
1165 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1166 // annotalysis on visitors.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001167 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
1168 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(o), *this, true);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001169 }
1170
1171 // For MarkSweep::VisitObjectReferences.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001172 void operator()(mirror::Object* referrer, mirror::Object* object,
Brian Carlstromdf629502013-07-17 22:39:56 -07001173 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001174 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001175 referring_objects_.push_back(referrer);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001176 }
1177 }
1178
1179 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001180 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001181 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001182 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001183
1184 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1185};
1186
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001187void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1188 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001189 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1190 // is empty, so the live bitmap is the only place we need to look.
1191 Thread* self = Thread::Current();
1192 self->TransitionFromRunnableToSuspended(kNative);
1193 CollectGarbage(false);
1194 self->TransitionFromSuspendedToRunnable();
1195
1196 ReferringObjectsFinder finder(o, max_count, referring_objects);
1197 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1198 GetLiveBitmap()->Visit(finder);
1199}
1200
Ian Rogers30fab402012-01-23 15:43:46 -08001201void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001202 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1203 // last GC will not have necessarily been cleared.
Ian Rogers1d54e732013-05-02 21:10:01 -07001204 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001205}
1206
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001207void Heap::ChangeCollector(CollectorType collector_type) {
1208 switch (collector_type) {
1209 case kCollectorTypeSS: {
1210 ChangeAllocator(kAllocatorTypeBumpPointer);
1211 break;
1212 }
1213 case kCollectorTypeMS:
1214 // Fall-through.
1215 case kCollectorTypeCMS: {
1216 ChangeAllocator(kAllocatorTypeFreeList);
1217 break;
1218 }
1219 }
1220}
1221
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001222void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001223 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Ian Rogers81d425b2012-09-27 16:03:43 -07001224 Thread* self = Thread::Current();
1225 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001226 // Try to see if we have any Zygote spaces.
1227 if (have_zygote_space_) {
1228 return;
1229 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001230 VLOG(heap) << "Starting PreZygoteFork";
1231 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
1232 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
1233 // Trim the pages at the end of the non moving space.
1234 non_moving_space_->Trim();
1235 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
Mathieu Chartier50482232013-11-21 11:48:14 -08001236 // Change the allocator to the post zygote one.
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001237 ChangeCollector(collector_type_);
Mathieu Chartier50482232013-11-21 11:48:14 -08001238 // TODO: Delete bump_pointer_space_ and temp_pointer_space_?
Mathieu Chartier590fee92013-09-13 13:46:47 -07001239 if (semi_space_collector_ != nullptr) {
Mathieu Chartier50482232013-11-21 11:48:14 -08001240 // Create a new bump pointer space which we will compact into.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001241 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1242 non_moving_space_->Limit());
1243 // Compact the bump pointer space to a new zygote bump pointer space.
1244 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1245 Compact(&target_space, bump_pointer_space_);
1246 CHECK_EQ(temp_space_->GetBytesAllocated(), 0U);
1247 total_objects_freed_ever_ += semi_space_collector_->GetFreedObjects();
1248 total_bytes_freed_ever_ += semi_space_collector_->GetFreedBytes();
1249 // Update the end and write out image.
1250 non_moving_space_->SetEnd(target_space.End());
1251 non_moving_space_->SetLimit(target_space.Limit());
1252 accounting::SpaceBitmap* bitmap = non_moving_space_->GetLiveBitmap();
1253 // Record the allocations in the bitmap.
1254 VLOG(heap) << "Recording zygote allocations";
1255 mirror::Object* obj = reinterpret_cast<mirror::Object*>(target_space.Begin());
1256 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(target_space.End());
1257 while (obj < end) {
1258 bitmap->Set(obj);
1259 obj = space::BumpPointerSpace::GetNextObject(obj);
1260 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001261 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001262 // Turn the current alloc space into a zygote space and obtain the new alloc space composed of
1263 // the remaining available heap memory.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001264 space::MallocSpace* zygote_space = non_moving_space_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001265 non_moving_space_ = zygote_space->CreateZygoteSpace("alloc space");
1266 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -07001267 // Change the GC retention policy of the zygote space to only collect when full.
1268 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001269 AddSpace(non_moving_space_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001270 have_zygote_space_ = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001271 zygote_space->InvalidateAllocator();
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001272 // Create the zygote space mod union table.
1273 accounting::ModUnionTable* mod_union_table =
1274 new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);
1275 CHECK(mod_union_table != nullptr) << "Failed to create zygote space mod-union table";
1276 AddModUnionTable(mod_union_table);
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001277 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001278 for (const auto& collector : garbage_collectors_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001279 collector->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001280 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001281}
1282
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001283void Heap::FlushAllocStack() {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001284 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001285 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001286 allocation_stack_->Reset();
1287}
1288
Ian Rogers1d54e732013-05-02 21:10:01 -07001289void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1290 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001291 mirror::Object** limit = stack->End();
1292 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1293 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001294 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001295 if (LIKELY(bitmap->HasAddress(obj))) {
1296 bitmap->Set(obj);
1297 } else {
1298 large_objects->Set(obj);
1299 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001300 }
1301}
1302
Mathieu Chartier590fee92013-09-13 13:46:47 -07001303const char* PrettyCause(GcCause cause) {
1304 switch (cause) {
1305 case kGcCauseForAlloc: return "Alloc";
1306 case kGcCauseBackground: return "Background";
1307 case kGcCauseExplicit: return "Explicit";
1308 default:
1309 LOG(FATAL) << "Unreachable";
1310 }
1311 return "";
1312}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001313
Mathieu Chartier590fee92013-09-13 13:46:47 -07001314void Heap::SwapSemiSpaces() {
1315 // Swap the spaces so we allocate into the space which we just evacuated.
1316 std::swap(bump_pointer_space_, temp_space_);
1317}
1318
1319void Heap::Compact(space::ContinuousMemMapAllocSpace* target_space,
1320 space::ContinuousMemMapAllocSpace* source_space) {
1321 CHECK(kMovingCollector);
Mathieu Chartier50482232013-11-21 11:48:14 -08001322 CHECK_NE(target_space, source_space) << "In-place compaction currently unsupported";
Mathieu Chartier590fee92013-09-13 13:46:47 -07001323 if (target_space != source_space) {
1324 semi_space_collector_->SetFromSpace(source_space);
1325 semi_space_collector_->SetToSpace(target_space);
1326 semi_space_collector_->Run(false);
1327 }
1328}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001329
Ian Rogers1d54e732013-05-02 21:10:01 -07001330collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1331 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001332 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001333 Runtime* runtime = Runtime::Current();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001334 // If the heap can't run the GC, silently fail and return that no GC was run.
1335 switch (gc_type) {
1336 case collector::kGcTypeSticky: {
1337 const size_t alloc_space_size = non_moving_space_->Size();
1338 if (alloc_space_size < min_alloc_space_size_for_sticky_gc_ ||
1339 non_moving_space_->Capacity() - alloc_space_size < min_remaining_space_for_sticky_gc_) {
1340 return collector::kGcTypeNone;
1341 }
1342 break;
1343 }
1344 case collector::kGcTypePartial: {
1345 if (!have_zygote_space_) {
1346 return collector::kGcTypeNone;
1347 }
1348 break;
1349 }
1350 default: {
1351 // Other GC types don't have any special cases which makes them not runnable. The main case
1352 // here is full GC.
1353 }
1354 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001355 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001356 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers120f1c72012-09-28 17:17:10 -07001357 if (self->IsHandlingStackOverflow()) {
1358 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1359 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001360 {
1361 gc_complete_lock_->AssertNotHeld(self);
1362 MutexLock mu(self, *gc_complete_lock_);
1363 // Ensure there is only one GC at a time.
1364 WaitForGcToCompleteLocked(self);
1365 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1366 // Not doing at the moment to ensure soft references are cleared.
1367 // GC can be disabled if someone has a used GetPrimitiveArrayCritical.
1368 if (gc_disable_count_ != 0) {
1369 LOG(WARNING) << "Skipping GC due to disable count " << gc_disable_count_;
1370 return collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001371 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001372 is_gc_running_ = true;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001373 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001374 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
1375 ++runtime->GetStats()->gc_for_alloc_count;
1376 ++self->GetStats()->gc_for_alloc_count;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001377 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001378 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001379 uint64_t gc_start_size = GetBytesAllocated();
1380 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001381 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001382 // Back to back GCs can cause 0 ms of wait time in between GC invocations.
1383 if (LIKELY(ms_delta != 0)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001384 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001385 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1386 }
1387
Ian Rogers1d54e732013-05-02 21:10:01 -07001388 DCHECK_LT(gc_type, collector::kGcTypeMax);
1389 DCHECK_NE(gc_type, collector::kGcTypeNone);
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001390
Mathieu Chartier590fee92013-09-13 13:46:47 -07001391 collector::GarbageCollector* collector = nullptr;
Mathieu Chartier50482232013-11-21 11:48:14 -08001392 // TODO: Clean this up.
1393 if (current_allocator_ == kAllocatorTypeBumpPointer) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001394 gc_type = semi_space_collector_->GetGcType();
1395 CHECK_EQ(temp_space_->GetObjectsAllocated(), 0U);
1396 semi_space_collector_->SetFromSpace(bump_pointer_space_);
1397 semi_space_collector_->SetToSpace(temp_space_);
1398 mprotect(temp_space_->Begin(), temp_space_->Capacity(), PROT_READ | PROT_WRITE);
Mathieu Chartier50482232013-11-21 11:48:14 -08001399 collector = semi_space_collector_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001400 gc_type = collector::kGcTypeFull;
Mathieu Chartier50482232013-11-21 11:48:14 -08001401 } else if (current_allocator_ == kAllocatorTypeFreeList) {
1402 for (const auto& cur_collector : garbage_collectors_) {
1403 if (cur_collector->IsConcurrent() == concurrent_gc_ &&
1404 cur_collector->GetGcType() == gc_type) {
1405 collector = cur_collector;
1406 break;
1407 }
1408 }
1409 } else {
1410 LOG(FATAL) << "Invalid current allocator " << current_allocator_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001411 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001412 CHECK(collector != NULL)
1413 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1414 << " and type=" << gc_type;
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001415
Mathieu Chartier590fee92013-09-13 13:46:47 -07001416 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), collector->GetName()).c_str());
1417
1418 collector->Run(clear_soft_references);
Ian Rogers1d54e732013-05-02 21:10:01 -07001419 total_objects_freed_ever_ += collector->GetFreedObjects();
1420 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001421
Mathieu Chartier39e32612013-11-12 16:28:05 -08001422 // Enqueue cleared references.
1423 EnqueueClearedReferences();
1424
Mathieu Chartier590fee92013-09-13 13:46:47 -07001425 // Grow the heap so that we know when to perform the next GC.
1426 GrowForUtilization(gc_type, collector->GetDurationNs());
1427
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001428 if (care_about_pause_times_) {
1429 const size_t duration = collector->GetDurationNs();
1430 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1431 // GC for alloc pauses the allocating thread, so consider it as a pause.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001432 bool was_slow = duration > long_gc_log_threshold_ ||
1433 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001434 if (!was_slow) {
1435 for (uint64_t pause : pauses) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001436 was_slow = was_slow || pause > long_pause_log_threshold_;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001437 }
1438 }
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001439 if (was_slow) {
1440 const size_t percent_free = GetPercentFree();
1441 const size_t current_heap_size = GetBytesAllocated();
1442 const size_t total_memory = GetTotalMemory();
1443 std::ostringstream pause_string;
1444 for (size_t i = 0; i < pauses.size(); ++i) {
1445 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1446 << ((i != pauses.size() - 1) ? ", " : "");
1447 }
1448 LOG(INFO) << gc_cause << " " << collector->GetName()
1449 << " GC freed " << collector->GetFreedObjects() << "("
1450 << PrettySize(collector->GetFreedBytes()) << ") AllocSpace objects, "
1451 << collector->GetFreedLargeObjects() << "("
1452 << PrettySize(collector->GetFreedLargeObjectBytes()) << ") LOS objects, "
1453 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1454 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1455 << " total " << PrettyDuration((duration / 1000) * 1000);
1456 if (VLOG_IS_ON(heap)) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001457 LOG(INFO) << Dumpable<TimingLogger>(collector->GetTimings());
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001458 }
1459 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001460 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001461
Ian Rogers15bf2d32012-08-28 17:33:04 -07001462 {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001463 MutexLock mu(self, *gc_complete_lock_);
1464 is_gc_running_ = false;
1465 last_gc_type_ = gc_type;
1466 // Wake anyone who may have been waiting for the GC to complete.
1467 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001468 }
Mathieu Chartier0a9dc052013-07-25 11:01:28 -07001469
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001470 ATRACE_END();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001471
1472 // Inform DDMS that a GC completed.
Ian Rogers15bf2d32012-08-28 17:33:04 -07001473 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001474 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001475}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001476
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001477static mirror::Object* RootMatchesObjectVisitor(mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001478 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001479 if (root == obj) {
1480 LOG(INFO) << "Object " << obj << " is a root";
1481 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001482 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001483}
1484
1485class ScanVisitor {
1486 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001487 void operator()(const mirror::Object* obj) const {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001488 LOG(ERROR) << "Would have rescanned object " << obj;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001489 }
1490};
1491
Ian Rogers1d54e732013-05-02 21:10:01 -07001492// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001493class VerifyReferenceVisitor {
1494 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001495 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001497 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001498
1499 bool Failed() const {
1500 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001501 }
1502
1503 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001504 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001505 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1506 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001507 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001508 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001509 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1510 accounting::CardTable* card_table = heap_->GetCardTable();
1511 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1512 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001513 if (!failed_) {
1514 // Print message on only on first failure to prevent spam.
1515 LOG(ERROR) << "!!!!!!!!!!!!!!Heap corruption detected!!!!!!!!!!!!!!!!!!!";
1516 failed_ = true;
1517 }
1518 if (obj != nullptr) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001519 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001520 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset "
1521 << offset << "\n card value = " << static_cast<int>(*card_addr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001522 if (heap_->IsValidObjectAddress(obj->GetClass())) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001523 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1524 } else {
1525 LOG(ERROR) << "Object " << obj << " class(" << obj->GetClass() << ") not a heap address";
1526 }
1527
1528 // Attmept to find the class inside of the recently freed objects.
1529 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001530 if (ref_space != nullptr && ref_space->IsMallocSpace()) {
1531 space::MallocSpace* space = ref_space->AsMallocSpace();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001532 mirror::Class* ref_class = space->FindRecentFreedObject(ref);
1533 if (ref_class != nullptr) {
1534 LOG(ERROR) << "Reference " << ref << " found as a recently freed object with class "
1535 << PrettyClass(ref_class);
1536 } else {
1537 LOG(ERROR) << "Reference " << ref << " not found as a recently freed object";
1538 }
1539 }
1540
Mathieu Chartier590fee92013-09-13 13:46:47 -07001541 if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001542 ref->GetClass()->IsClass()) {
1543 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1544 } else {
1545 LOG(ERROR) << "Ref " << ref << " class(" << ref->GetClass()
1546 << ") is not a valid heap address";
1547 }
1548
Ian Rogers1d54e732013-05-02 21:10:01 -07001549 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1550 void* cover_begin = card_table->AddrFromCard(card_addr);
1551 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1552 accounting::CardTable::kCardSize);
1553 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1554 << "-" << cover_end;
1555 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001556
Ian Rogers1d54e732013-05-02 21:10:01 -07001557 // Print out how the object is live.
1558 if (bitmap != NULL && bitmap->Test(obj)) {
1559 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1560 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001561 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001562 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1563 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001564 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001565 LOG(ERROR) << "Object " << obj << " found in live stack";
1566 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001567 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1568 LOG(ERROR) << "Ref " << ref << " found in allocation stack";
1569 }
1570 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1571 LOG(ERROR) << "Ref " << ref << " found in live stack";
1572 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001573 // Attempt to see if the card table missed the reference.
1574 ScanVisitor scan_visitor;
1575 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1576 card_table->Scan(bitmap, byte_cover_begin,
Mathieu Chartier184e3222013-08-03 14:02:57 -07001577 byte_cover_begin + accounting::CardTable::kCardSize, scan_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -07001578
1579 // Search to see if any of the roots reference our object.
1580 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1581 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1582
1583 // Search to see if any of the roots reference our reference.
1584 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1585 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1586 } else {
1587 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001588 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001589 }
1590 }
1591
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001592 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001593 return heap_->IsLiveObjectLocked(obj, true, false, true);
Ian Rogers1d54e732013-05-02 21:10:01 -07001594 }
1595
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001596 static mirror::Object* VerifyRoots(mirror::Object* root, void* arg) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001597 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001598 (*visitor)(nullptr, root, MemberOffset(0), true);
1599 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001600 }
1601
1602 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001603 Heap* const heap_;
1604 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001605};
1606
Ian Rogers1d54e732013-05-02 21:10:01 -07001607// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001608class VerifyObjectVisitor {
1609 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001610 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001611
Mathieu Chartier590fee92013-09-13 13:46:47 -07001612 void operator()(mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001613 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001614 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1615 // be live or else how did we find it in the live bitmap?
1616 VerifyReferenceVisitor visitor(heap_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001617 // The class doesn't count as a reference but we should verify it anyways.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001618 collector::MarkSweep::VisitObjectReferences(obj, visitor, true);
1619 if (obj->GetClass()->IsReferenceClass()) {
1620 visitor(obj, heap_->GetReferenceReferent(obj), MemberOffset(0), false);
1621 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001622 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001623 }
1624
Mathieu Chartier590fee92013-09-13 13:46:47 -07001625 static void VisitCallback(mirror::Object* obj, void* arg)
1626 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1627 VerifyObjectVisitor* visitor = reinterpret_cast<VerifyObjectVisitor*>(arg);
1628 visitor->operator()(obj);
1629 }
1630
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001631 bool Failed() const {
1632 return failed_;
1633 }
1634
1635 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001636 Heap* const heap_;
1637 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001638};
1639
1640// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001641bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001642 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001643 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001644 allocation_stack_->Sort();
1645 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001646 VerifyObjectVisitor visitor(this);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001647 // Verify objects in the allocation stack since these will be objects which were:
1648 // 1. Allocated prior to the GC (pre GC verification).
1649 // 2. Allocated during the GC (pre sweep GC verification).
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001650 // We don't want to verify the objects in the live stack since they themselves may be
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001651 // pointing to dead objects if they are not reachable.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001652 VisitObjects(VerifyObjectVisitor::VisitCallback, &visitor);
1653 // Verify the roots:
1654 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001655 if (visitor.Failed()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001656 // Dump mod-union tables.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001657 for (const auto& table_pair : mod_union_tables_) {
1658 accounting::ModUnionTable* mod_union_table = table_pair.second;
1659 mod_union_table->Dump(LOG(ERROR) << mod_union_table->GetName() << ": ");
1660 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001661 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001662 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001663 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001664 return true;
1665}
1666
1667class VerifyReferenceCardVisitor {
1668 public:
1669 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1670 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1671 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001672 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001673 }
1674
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001675 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1676 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001677 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1678 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001679 // Filter out class references since changing an object's class does not mark the card as dirty.
1680 // Also handles large objects, since the only reference they hold is a class reference.
1681 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001682 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001683 // If the object is not dirty and it is referencing something in the live stack other than
1684 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001685 if (!card_table->AddrIsInCardTable(obj)) {
1686 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1687 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001688 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001689 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1690 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001691 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierf082d3c2013-07-29 17:04:07 -07001692 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(ref))) {
1693 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001694 LOG(ERROR) << "Object " << obj << " found in live stack";
1695 }
1696 if (heap_->GetLiveBitmap()->Test(obj)) {
1697 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1698 }
1699 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1700 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1701
1702 // Print which field of the object is dead.
1703 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001704 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001705 CHECK(klass != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001706 const mirror::ObjectArray<mirror::ArtField>* fields = is_static ? klass->GetSFields()
1707 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001708 CHECK(fields != NULL);
1709 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001710 const mirror::ArtField* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001711 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1712 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1713 << PrettyField(cur);
1714 break;
1715 }
1716 }
1717 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001718 const mirror::ObjectArray<mirror::Object>* object_array =
1719 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001720 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1721 if (object_array->Get(i) == ref) {
1722 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1723 }
1724 }
1725 }
1726
1727 *failed_ = true;
1728 }
1729 }
1730 }
1731 }
1732
1733 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001734 Heap* const heap_;
1735 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001736};
1737
1738class VerifyLiveStackReferences {
1739 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001740 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001741 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001742 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001743
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001744 void operator()(mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001745 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1746 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001747 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(obj), visitor, true);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001748 }
1749
1750 bool Failed() const {
1751 return failed_;
1752 }
1753
1754 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001755 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001756 bool failed_;
1757};
1758
1759bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001760 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001761
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001762 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001763 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001764 VerifyLiveStackReferences visitor(this);
1765 GetLiveBitmap()->Visit(visitor);
1766
1767 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001768 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001769 visitor(*it);
1770 }
1771
1772 if (visitor.Failed()) {
1773 DumpSpaces();
1774 return false;
1775 }
1776 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001777}
1778
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001779void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001780 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001781}
1782
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001783accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) {
1784 auto it = mod_union_tables_.find(space);
1785 if (it == mod_union_tables_.end()) {
1786 return nullptr;
1787 }
1788 return it->second;
1789}
1790
Ian Rogers5fe9af72013-11-14 00:17:20 -08001791void Heap::ProcessCards(TimingLogger& timings) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001792 // Clear cards and keep track of cards cleared in the mod-union table.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001793 for (const auto& space : continuous_spaces_) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001794 accounting::ModUnionTable* table = FindModUnionTableFromSpace(space);
1795 if (table != nullptr) {
1796 const char* name = space->IsZygoteSpace() ? "ZygoteModUnionClearCards" :
1797 "ImageModUnionClearCards";
Ian Rogers5fe9af72013-11-14 00:17:20 -08001798 TimingLogger::ScopedSplit split(name, &timings);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001799 table->ClearCards();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001800 } else if (space->GetType() != space::kSpaceTypeBumpPointerSpace) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001801 TimingLogger::ScopedSplit split("AllocSpaceClearCards", &timings);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001802 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1803 // were dirty before the GC started.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001804 // TODO: Don't need to use atomic.
1805 // The races are we either end up with: Aged card, unaged card. Since we have the checkpoint
1806 // roots and then we scan / update mod union tables after. We will always scan either card.//
1807 // If we end up with the non aged card, we scan it it in the pause.
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001808 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001809 }
1810 }
1811}
1812
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001813static mirror::Object* IdentityCallback(mirror::Object* obj, void*) {
1814 return obj;
1815}
1816
Ian Rogers1d54e732013-05-02 21:10:01 -07001817void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001818 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1819 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001820
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001821 if (verify_pre_gc_heap_) {
1822 thread_list->SuspendAll();
1823 {
1824 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1825 if (!VerifyHeapReferences()) {
1826 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1827 }
1828 }
1829 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001830 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001831
1832 // Check that all objects which reference things in the live stack are on dirty cards.
1833 if (verify_missing_card_marks_) {
1834 thread_list->SuspendAll();
1835 {
1836 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1837 SwapStacks();
1838 // Sort the live stack so that we can quickly binary search it later.
1839 if (!VerifyMissingCardMarks()) {
1840 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1841 }
1842 SwapStacks();
1843 }
1844 thread_list->ResumeAll();
1845 }
1846
1847 if (verify_mod_union_table_) {
1848 thread_list->SuspendAll();
1849 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001850 for (const auto& table_pair : mod_union_tables_) {
1851 accounting::ModUnionTable* mod_union_table = table_pair.second;
1852 mod_union_table->UpdateAndMarkReferences(IdentityCallback, nullptr);
1853 mod_union_table->Verify();
1854 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001855 thread_list->ResumeAll();
1856 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001857}
1858
Ian Rogers1d54e732013-05-02 21:10:01 -07001859void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001860 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1861 // reachable objects.
1862 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001863 Thread* self = Thread::Current();
1864 CHECK_NE(self->GetState(), kRunnable);
Ian Rogers1d54e732013-05-02 21:10:01 -07001865 {
1866 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1867 // Swapping bound bitmaps does nothing.
1868 gc->SwapBitmaps();
1869 if (!VerifyHeapReferences()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001870 LOG(FATAL) << "Pre sweeping " << gc->GetName() << " GC verification failed";
Ian Rogers1d54e732013-05-02 21:10:01 -07001871 }
1872 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001873 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001874 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001875}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001876
Ian Rogers1d54e732013-05-02 21:10:01 -07001877void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001878 if (verify_system_weaks_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001879 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001880 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001881 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001882 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001883 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001884}
1885
Mathieu Chartier590fee92013-09-13 13:46:47 -07001886collector::GcType Heap::WaitForGcToComplete(Thread* self) {
1887 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
1888 MutexLock mu(self, *gc_complete_lock_);
1889 return WaitForGcToCompleteLocked(self);
1890}
1891
1892collector::GcType Heap::WaitForGcToCompleteLocked(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001893 collector::GcType last_gc_type = collector::kGcTypeNone;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001894 uint64_t wait_start = NanoTime();
1895 while (is_gc_running_) {
1896 ATRACE_BEGIN("GC: Wait For Completion");
1897 // We must wait, change thread state then sleep on gc_complete_cond_;
1898 gc_complete_cond_->Wait(self);
1899 last_gc_type = last_gc_type_;
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001900 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001901 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001902 uint64_t wait_time = NanoTime() - wait_start;
1903 total_wait_time_ += wait_time;
1904 if (wait_time > long_pause_log_threshold_) {
1905 LOG(INFO) << "WaitForGcToComplete blocked for " << PrettyDuration(wait_time);
1906 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001907 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001908}
1909
Elliott Hughesc967f782012-04-16 10:23:15 -07001910void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001911 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001912 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001913 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001914}
1915
1916size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001917 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001918}
1919
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001920void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001921 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001922 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001923 << PrettySize(GetMaxMemory());
1924 max_allowed_footprint = GetMaxMemory();
1925 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001926 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001927}
1928
Mathieu Chartier590fee92013-09-13 13:46:47 -07001929bool Heap::IsMovableObject(const mirror::Object* obj) const {
1930 if (kMovingCollector) {
1931 DCHECK(!IsInTempSpace(obj));
1932 if (bump_pointer_space_->HasAddress(obj)) {
1933 return true;
1934 }
1935 }
1936 return false;
1937}
1938
1939bool Heap::IsInTempSpace(const mirror::Object* obj) const {
1940 if (temp_space_->HasAddress(obj) && !temp_space_->Contains(obj)) {
1941 return true;
1942 }
1943 return false;
1944}
1945
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001946void Heap::UpdateMaxNativeFootprint() {
1947 size_t native_size = native_bytes_allocated_;
1948 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
1949 size_t target_size = native_size / GetTargetHeapUtilization();
1950 if (target_size > native_size + max_free_) {
1951 target_size = native_size + max_free_;
1952 } else if (target_size < native_size + min_free_) {
1953 target_size = native_size + min_free_;
1954 }
1955 native_footprint_gc_watermark_ = target_size;
1956 native_footprint_limit_ = 2 * target_size - native_size;
1957}
1958
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001959void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001960 // We know what our utilization is at this moment.
1961 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001962 const size_t bytes_allocated = GetBytesAllocated();
1963 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001964 last_gc_time_ns_ = NanoTime();
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001965 size_t target_size;
1966 if (gc_type != collector::kGcTypeSticky) {
1967 // Grow the heap for non sticky GC.
1968 target_size = bytes_allocated / GetTargetHeapUtilization();
1969 if (target_size > bytes_allocated + max_free_) {
1970 target_size = bytes_allocated + max_free_;
1971 } else if (target_size < bytes_allocated + min_free_) {
1972 target_size = bytes_allocated + min_free_;
1973 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001974 native_need_to_run_finalization_ = true;
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001975 next_gc_type_ = collector::kGcTypeSticky;
1976 } else {
1977 // Based on how close the current heap size is to the target size, decide
1978 // whether or not to do a partial or sticky GC next.
1979 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1980 next_gc_type_ = collector::kGcTypeSticky;
1981 } else {
1982 next_gc_type_ = collector::kGcTypePartial;
1983 }
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001984 // If we have freed enough memory, shrink the heap back down.
1985 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1986 target_size = bytes_allocated + max_free_;
1987 } else {
1988 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1989 }
1990 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001991 if (!ignore_max_footprint_) {
1992 SetIdealFootprint(target_size);
Mathieu Chartier50482232013-11-21 11:48:14 -08001993 if (concurrent_gc_ && AllocatorHasConcurrentGC(current_allocator_)) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001994 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001995 // Calculate the estimated GC duration.
1996 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1997 // Estimate how many remaining bytes we will have when we need to start the next GC.
1998 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
1999 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
2000 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2001 // A never going to happen situation that from the estimated allocation rate we will exceed
2002 // the applications entire footprint with the given estimated allocation rate. Schedule
2003 // another GC straight away.
2004 concurrent_start_bytes_ = bytes_allocated;
2005 } else {
2006 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
2007 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
2008 // right away.
Mathieu Chartier50482232013-11-21 11:48:14 -08002009 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
2010 bytes_allocated);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002011 }
2012 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
2013 DCHECK_LE(max_allowed_footprint_, growth_limit_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08002014 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002015 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07002016}
2017
jeffhaoc1160702011-10-27 15:48:45 -07002018void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08002019 growth_limit_ = capacity_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002020 non_moving_space_->ClearGrowthLimit();
jeffhaoc1160702011-10-27 15:48:45 -07002021}
2022
Elliott Hughesadb460d2011-10-05 17:02:34 -07002023void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartier50482232013-11-21 11:48:14 -08002024 MemberOffset reference_queue_offset,
2025 MemberOffset reference_queueNext_offset,
2026 MemberOffset reference_pendingNext_offset,
2027 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002028 reference_referent_offset_ = reference_referent_offset;
2029 reference_queue_offset_ = reference_queue_offset;
2030 reference_queueNext_offset_ = reference_queueNext_offset;
2031 reference_pendingNext_offset_ = reference_pendingNext_offset;
2032 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
2033 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2034 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
2035 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
2036 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
2037 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
2038}
2039
Mathieu Chartier590fee92013-09-13 13:46:47 -07002040void Heap::SetReferenceReferent(mirror::Object* reference, mirror::Object* referent) {
2041 DCHECK(reference != NULL);
2042 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2043 reference->SetFieldObject(reference_referent_offset_, referent, true);
2044}
2045
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002046mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002047 DCHECK(reference != NULL);
2048 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002049 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07002050}
2051
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002052void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002053 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08002054 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002055 ArgArray arg_array(NULL, 0);
2056 arg_array.Append(reinterpret_cast<uint32_t>(object));
2057 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07002058 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002059}
2060
Mathieu Chartier39e32612013-11-12 16:28:05 -08002061void Heap::EnqueueClearedReferences() {
2062 if (!cleared_references_.IsEmpty()) {
Ian Rogers64b6d142012-10-29 16:34:15 -07002063 // When a runtime isn't started there are no reference queues to care about so ignore.
2064 if (LIKELY(Runtime::Current()->IsStarted())) {
2065 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08002066 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002067 ArgArray arg_array(NULL, 0);
Mathieu Chartier39e32612013-11-12 16:28:05 -08002068 arg_array.Append(reinterpret_cast<uint32_t>(cleared_references_.GetList()));
Jeff Hao5d917302013-02-27 17:57:33 -08002069 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07002070 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07002071 }
Mathieu Chartier39e32612013-11-12 16:28:05 -08002072 cleared_references_.Clear();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002073 }
2074}
2075
Ian Rogers1f539342012-10-03 21:09:42 -07002076void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07002077 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07002078 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08002079 DCHECK(concurrent_gc_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002080 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self) ||
2081 self->IsHandlingStackOverflow()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002082 return;
2083 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002084 // We already have a request pending, no reason to start more until we update
2085 // concurrent_start_bytes_.
2086 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers120f1c72012-09-28 17:17:10 -07002087 JNIEnv* env = self->GetJniEnv();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002088 DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2089 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002090 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2091 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002092 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002093}
2094
Ian Rogers81d425b2012-09-27 16:03:43 -07002095void Heap::ConcurrentGC(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002096 if (Runtime::Current()->IsShuttingDown(self)) {
2097 return;
Mathieu Chartier2542d662012-06-21 17:14:11 -07002098 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002099 // Wait for any GCs currently running to finish.
Mathieu Chartier590fee92013-09-13 13:46:47 -07002100 if (WaitForGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierf9ed0d32013-11-21 16:42:47 -08002101 // If the we can't run the GC type we wanted to run, find the next appropriate one and try that
2102 // instead. E.g. can't do partial, so do full instead.
2103 if (CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false) ==
2104 collector::kGcTypeNone) {
2105 for (collector::GcType gc_type : gc_plan_) {
2106 // Attempt to run the collector, if we succeed, we are done.
2107 if (gc_type > next_gc_type_ &&
2108 CollectGarbageInternal(gc_type, kGcCauseBackground, false) != collector::kGcTypeNone) {
2109 break;
2110 }
2111 }
2112 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07002113 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002114}
2115
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002116void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08002117 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
2118 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
2119 // a space it will hold its lock and can become a cause of jank.
2120 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
2121 // forking.
2122
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002123 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
2124 // because that only marks object heads, so a large array looks like lots of empty space. We
2125 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
2126 // to utilization (which is probably inversely proportional to how much benefit we can expect).
2127 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
2128 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08002129 uint64_t ms_time = MilliTime();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002130 // Don't bother trimming the alloc space if a heap trim occurred in the last two seconds.
2131 if (ms_time - last_trim_time_ms_ < 2 * 1000) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002132 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002133 }
Ian Rogers120f1c72012-09-28 17:17:10 -07002134
2135 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002136 Runtime* runtime = Runtime::Current();
2137 if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self)) {
2138 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
2139 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
2140 // as we don't hold the lock while requesting the trim).
2141 return;
Ian Rogerse1d490c2012-02-03 09:09:07 -08002142 }
Ian Rogers48931882013-01-22 14:35:16 -08002143
Ian Rogers1d54e732013-05-02 21:10:01 -07002144 last_trim_time_ms_ = ms_time;
Mathieu Chartierc39e3422013-08-07 16:41:36 -07002145 ListenForProcessStateChange();
2146
2147 // Trim only if we do not currently care about pause times.
2148 if (!care_about_pause_times_) {
2149 JNIEnv* env = self->GetJniEnv();
2150 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
2151 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
2152 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2153 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
2154 CHECK(!env->ExceptionCheck());
2155 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002156}
2157
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002158void Heap::RevokeThreadLocalBuffers(Thread* thread) {
2159 non_moving_space_->RevokeThreadLocalBuffers(thread);
2160}
2161
2162void Heap::RevokeAllThreadLocalBuffers() {
2163 non_moving_space_->RevokeAllThreadLocalBuffers();
2164}
2165
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002166bool Heap::IsGCRequestPending() const {
2167 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
2168}
2169
Mathieu Chartier590fee92013-09-13 13:46:47 -07002170void Heap::RunFinalization(JNIEnv* env) {
2171 // Can't do this in WellKnownClasses::Init since System is not properly set up at that point.
2172 if (WellKnownClasses::java_lang_System_runFinalization == nullptr) {
2173 CHECK(WellKnownClasses::java_lang_System != nullptr);
2174 WellKnownClasses::java_lang_System_runFinalization =
2175 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
2176 CHECK(WellKnownClasses::java_lang_System_runFinalization != nullptr);
2177 }
2178 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
2179 WellKnownClasses::java_lang_System_runFinalization);
2180}
2181
Ian Rogers1eb512d2013-10-18 15:42:20 -07002182void Heap::RegisterNativeAllocation(JNIEnv* env, int bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002183 Thread* self = ThreadForEnv(env);
2184 if (native_need_to_run_finalization_) {
2185 RunFinalization(env);
2186 UpdateMaxNativeFootprint();
2187 native_need_to_run_finalization_ = false;
2188 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002189 // Total number of native bytes allocated.
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002190 native_bytes_allocated_.fetch_add(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002191 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002192 collector::GcType gc_type = have_zygote_space_ ? collector::kGcTypePartial :
2193 collector::kGcTypeFull;
2194
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002195 // The second watermark is higher than the gc watermark. If you hit this it means you are
2196 // allocating native objects faster than the GC can keep up with.
2197 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002198 if (WaitForGcToComplete(self) != collector::kGcTypeNone) {
2199 // Just finished a GC, attempt to run finalizers.
2200 RunFinalization(env);
2201 CHECK(!env->ExceptionCheck());
2202 }
2203 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
2204 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002205 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002206 RunFinalization(env);
2207 native_need_to_run_finalization_ = false;
2208 CHECK(!env->ExceptionCheck());
2209 }
2210 // We have just run finalizers, update the native watermark since it is very likely that
2211 // finalizers released native managed allocations.
2212 UpdateMaxNativeFootprint();
2213 } else if (!IsGCRequestPending()) {
Mathieu Chartier50482232013-11-21 11:48:14 -08002214 if (concurrent_gc_ && AllocatorHasConcurrentGC(current_allocator_)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002215 RequestConcurrentGC(self);
2216 } else {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002217 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002218 }
2219 }
2220 }
2221}
2222
Ian Rogers1eb512d2013-10-18 15:42:20 -07002223void Heap::RegisterNativeFree(JNIEnv* env, int bytes) {
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002224 int expected_size, new_size;
2225 do {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002226 expected_size = native_bytes_allocated_.load();
2227 new_size = expected_size - bytes;
2228 if (UNLIKELY(new_size < 0)) {
2229 ScopedObjectAccess soa(env);
2230 env->ThrowNew(WellKnownClasses::java_lang_RuntimeException,
2231 StringPrintf("Attempted to free %d native bytes with only %d native bytes "
2232 "registered as allocated", bytes, expected_size).c_str());
2233 break;
2234 }
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002235 } while (!native_bytes_allocated_.compare_and_swap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002236}
2237
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002238int64_t Heap::GetTotalMemory() const {
2239 int64_t ret = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002240 for (const auto& space : continuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002241 // Currently don't include the image space.
2242 if (!space->IsImageSpace()) {
2243 ret += space->Size();
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002244 }
2245 }
Mathieu Chartier02e25112013-08-14 16:14:24 -07002246 for (const auto& space : discontinuous_spaces_) {
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002247 if (space->IsLargeObjectSpace()) {
2248 ret += space->AsLargeObjectSpace()->GetBytesAllocated();
2249 }
2250 }
2251 return ret;
2252}
2253
Mathieu Chartier11409ae2013-09-23 11:49:36 -07002254void Heap::AddModUnionTable(accounting::ModUnionTable* mod_union_table) {
2255 DCHECK(mod_union_table != nullptr);
2256 mod_union_tables_.Put(mod_union_table->GetSpace(), mod_union_table);
2257}
2258
Ian Rogers1d54e732013-05-02 21:10:01 -07002259} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07002260} // namespace art