blob: 1cff719e65233337de97d2b3ff3617294adfee55 [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 Chartier7664f5c2012-06-08 18:15:32 -070057#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070058#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070059#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070060#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070061#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070062#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070063
64namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070065namespace gc {
Carl Shapiro69759ea2011-07-21 18:13:35 -070066
Mathieu Chartier720ef762013-08-17 14:46:54 -070067static constexpr bool kGCALotMode = false;
68static constexpr size_t kGcAlotInterval = KB;
69static constexpr bool kDumpGcPerformanceOnShutdown = false;
Ian Rogers1d54e732013-05-02 21:10:01 -070070// Minimum amount of remaining bytes before a concurrent GC is triggered.
Mathieu Chartier720ef762013-08-17 14:46:54 -070071static constexpr size_t kMinConcurrentRemainingBytes = 128 * KB;
Mathieu Chartier0051be62012-10-12 17:47:11 -070072
Mathieu Chartier0051be62012-10-12 17:47:11 -070073Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070074 double target_utilization, size_t capacity, const std::string& image_file_name,
Mathieu Chartier2775ee42013-08-20 17:43:47 -070075 bool concurrent_gc, size_t parallel_gc_threads, size_t conc_gc_threads,
76 bool low_memory_mode, size_t long_pause_log_threshold, size_t long_gc_log_threshold,
77 bool ignore_max_footprint)
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080078 : non_moving_space_(nullptr),
Mathieu Chartier590fee92013-09-13 13:46:47 -070079 concurrent_gc_(!kMovingCollector && concurrent_gc),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070080 parallel_gc_threads_(parallel_gc_threads),
81 conc_gc_threads_(conc_gc_threads),
Mathieu Chartiere0a53e92013-08-05 10:17:40 -070082 low_memory_mode_(low_memory_mode),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070083 long_pause_log_threshold_(long_pause_log_threshold),
84 long_gc_log_threshold_(long_gc_log_threshold),
85 ignore_max_footprint_(ignore_max_footprint),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070086 have_zygote_space_(false),
Mathieu Chartier39e32612013-11-12 16:28:05 -080087 soft_reference_queue_(this),
88 weak_reference_queue_(this),
89 finalizer_reference_queue_(this),
90 phantom_reference_queue_(this),
91 cleared_references_(this),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080092 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -070093 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -070094 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -080095 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -070096 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -070097 max_allowed_footprint_(initial_size),
Mathieu Chartier987ccff2013-07-08 11:05:21 -070098 native_footprint_gc_watermark_(initial_size),
99 native_footprint_limit_(2 * initial_size),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700100 native_need_to_run_finalization_(false),
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700101 activity_thread_class_(NULL),
102 application_thread_class_(NULL),
103 activity_thread_(NULL),
104 application_thread_(NULL),
105 last_process_state_id_(NULL),
106 // Initially care about pauses in case we never get notified of process states, or if the JNI
107 // code becomes broken.
108 care_about_pause_times_(true),
Mathieu Chartier720ef762013-08-17 14:46:54 -0700109 concurrent_start_bytes_(concurrent_gc_ ? initial_size - kMinConcurrentRemainingBytes
110 : std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -0700111 total_bytes_freed_ever_(0),
112 total_objects_freed_ever_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800113 num_bytes_allocated_(0),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700114 native_bytes_allocated_(0),
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700115 gc_memory_overhead_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700116 verify_missing_card_marks_(false),
117 verify_system_weaks_(false),
118 verify_pre_gc_heap_(false),
119 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700120 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700121 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700122 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700123 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800124 allocation_rate_(0),
Mathieu Chartier0418ae22013-07-31 13:35:46 -0700125 /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
126 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
127 * verification is enabled, we limit the size of allocation stacks to speed up their
128 * searching.
129 */
130 max_allocation_stack_size_(kGCALotMode ? kGcAlotInterval
Mathieu Chartier590fee92013-09-13 13:46:47 -0700131 : (kDesiredHeapVerification > kVerifyAllFast) ? KB : MB),
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800132 current_allocator_(kMovingCollector ? kAllocatorTypeBumpPointer : kAllocatorTypeFreeList),
133 current_non_moving_allocator_(kAllocatorTypeFreeList),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700134 bump_pointer_space_(nullptr),
135 temp_space_(nullptr),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800136 reference_referent_offset_(0),
137 reference_queue_offset_(0),
138 reference_queueNext_offset_(0),
139 reference_pendingNext_offset_(0),
140 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700141 min_free_(min_free),
142 max_free_(max_free),
143 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700144 total_wait_time_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700145 total_allocation_time_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700146 verify_object_mode_(kHeapVerificationNotPermitted),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700147 gc_disable_count_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700148 running_on_valgrind_(RUNNING_ON_VALGRIND) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800149 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800150 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700151 }
152
Ian Rogers1d54e732013-05-02 21:10:01 -0700153 live_bitmap_.reset(new accounting::HeapBitmap(this));
154 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700155
Ian Rogers30fab402012-01-23 15:43:46 -0800156 // Requested begin for the alloc space, to follow the mapped image and oat files
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700157 byte* requested_alloc_space_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800158 if (!image_file_name.empty()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700159 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name.c_str());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700160 CHECK(image_space != NULL) << "Failed to create space for " << image_file_name;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700161 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800162 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
163 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800164 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
165 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700166 if (oat_file_end_addr > requested_alloc_space_begin) {
167 requested_alloc_space_begin =
168 reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr),
169 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700170 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700171 }
172
Mathieu Chartier590fee92013-09-13 13:46:47 -0700173 const char* name = Runtime::Current()->IsZygote() ? "zygote space" : "alloc space";
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700174 if (!kUseRosAlloc) {
175 non_moving_space_ = space::DlMallocSpace::Create(name, initial_size, growth_limit, capacity,
176 requested_alloc_space_begin);
177 } else {
178 non_moving_space_ = space::RosAllocSpace::Create(name, initial_size, growth_limit, capacity,
179 requested_alloc_space_begin);
180 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700181 if (kMovingCollector) {
182 // TODO: Place bump-pointer spaces somewhere to minimize size of card table.
183 // TODO: Having 3+ spaces as big as the large heap size can cause virtual memory fragmentation
184 // issues.
185 const size_t bump_pointer_space_size = std::min(non_moving_space_->Capacity(), 128 * MB);
186 bump_pointer_space_ = space::BumpPointerSpace::Create("Bump pointer space",
187 bump_pointer_space_size, nullptr);
188 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space";
189 AddSpace(bump_pointer_space_);
190 temp_space_ = space::BumpPointerSpace::Create("Bump pointer space 2", bump_pointer_space_size,
191 nullptr);
192 CHECK(temp_space_ != nullptr) << "Failed to create bump pointer space";
193 AddSpace(temp_space_);
194 }
195
196 CHECK(non_moving_space_ != NULL) << "Failed to create non-moving space";
197 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
198 AddSpace(non_moving_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700199
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700200 // Allocate the large object space.
201 const bool kUseFreeListSpaceForLOS = false;
202 if (kUseFreeListSpaceForLOS) {
203 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
204 } else {
205 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
206 }
207 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700208 AddSpace(large_object_space_);
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700209
Ian Rogers1d54e732013-05-02 21:10:01 -0700210 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
Mathieu Chartier590fee92013-09-13 13:46:47 -0700211 CHECK(!continuous_spaces_.empty());
212 // Relies on the spaces being sorted.
Ian Rogers1d54e732013-05-02 21:10:01 -0700213 byte* heap_begin = continuous_spaces_.front()->Begin();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700214 byte* heap_end = continuous_spaces_.back()->Limit();
215 size_t heap_capacity = heap_end - heap_begin;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700216
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800217 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700218 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700219 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700220
Mathieu Chartier590fee92013-09-13 13:46:47 -0700221 // Card cache for now since it makes it easier for us to update the references to the copying
222 // spaces.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700223 accounting::ModUnionTable* mod_union_table =
Mathieu Chartier590fee92013-09-13 13:46:47 -0700224 new accounting::ModUnionTableCardCache("Image mod-union table", this, GetImageSpace());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700225 CHECK(mod_union_table != nullptr) << "Failed to create image mod-union table";
226 AddModUnionTable(mod_union_table);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700227
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700228 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700229 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700230
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800231 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700232 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700233 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
234 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
235 max_allocation_stack_size_));
236 live_stack_.reset(accounting::ObjectStack::Create("live stack",
237 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700238
Mathieu Chartier65db8802012-11-20 12:36:46 -0800239 // It's still too early to take a lock because there are no threads yet, but we can create locks
240 // now. We don't create it earlier to make it clear that you can't use locks during heap
241 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700242 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700243 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
244 *gc_complete_lock_));
Ian Rogers1d54e732013-05-02 21:10:01 -0700245 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800246 last_gc_size_ = GetBytesAllocated();
247
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700248 if (ignore_max_footprint_) {
249 SetIdealFootprint(std::numeric_limits<size_t>::max());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700250 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700251 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700252 CHECK_NE(max_allowed_footprint_, 0U);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700253
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800254 // Create our garbage collectors.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700255 if (!kMovingCollector) {
256 for (size_t i = 0; i < 2; ++i) {
257 const bool concurrent = i != 0;
258 garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent));
259 garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
260 garbage_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
261 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800262 gc_plan_.push_back(collector::kGcTypeSticky);
263 gc_plan_.push_back(collector::kGcTypePartial);
264 gc_plan_.push_back(collector::kGcTypeFull);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700265 } else {
266 semi_space_collector_ = new collector::SemiSpace(this);
267 garbage_collectors_.push_back(semi_space_collector_);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800268 gc_plan_.push_back(collector::kGcTypeFull);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700269 }
270
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700271 if (running_on_valgrind_) {
Ian Rogersfa824272013-11-05 16:12:57 -0800272 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700273 }
274
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800275 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800276 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700277 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700278}
279
Mathieu Chartier590fee92013-09-13 13:46:47 -0700280bool Heap::IsCompilingBoot() const {
281 for (const auto& space : continuous_spaces_) {
282 if (space->IsImageSpace()) {
283 return false;
284 } else if (space->IsZygoteSpace()) {
285 return false;
286 }
287 }
288 return true;
289}
290
291bool Heap::HasImageSpace() const {
292 for (const auto& space : continuous_spaces_) {
293 if (space->IsImageSpace()) {
294 return true;
295 }
296 }
297 return false;
298}
299
300void Heap::IncrementDisableGC(Thread* self) {
301 // Need to do this holding the lock to prevent races where the GC is about to run / running when
302 // we attempt to disable it.
303 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
304 MutexLock mu(self, *gc_complete_lock_);
305 WaitForGcToCompleteLocked(self);
306 ++gc_disable_count_;
307}
308
309void Heap::DecrementDisableGC(Thread* self) {
310 MutexLock mu(self, *gc_complete_lock_);
311 CHECK_GE(gc_disable_count_, 0U);
312 --gc_disable_count_;
313}
314
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700315void Heap::CreateThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700316 const size_t num_threads = std::max(parallel_gc_threads_, conc_gc_threads_);
317 if (num_threads != 0) {
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800318 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700319 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700320}
321
Mathieu Chartier590fee92013-09-13 13:46:47 -0700322void Heap::VisitObjects(ObjectVisitorCallback callback, void* arg) {
323 // Visit objects in bump pointer space.
324 Thread* self = Thread::Current();
325 // TODO: Use reference block.
326 std::vector<SirtRef<mirror::Object>*> saved_refs;
327 if (bump_pointer_space_ != nullptr) {
328 // Need to put all these in sirts since the callback may trigger a GC. TODO: Use a better data
329 // structure.
330 mirror::Object* obj = reinterpret_cast<mirror::Object*>(bump_pointer_space_->Begin());
331 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(
332 bump_pointer_space_->End());
333 while (obj < end) {
334 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
335 obj = space::BumpPointerSpace::GetNextObject(obj);
336 }
337 }
338 // TODO: Switch to standard begin and end to use ranged a based loop.
339 for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End();
340 it < end; ++it) {
341 mirror::Object* obj = *it;
342 // Objects in the allocation stack might be in a movable space.
343 saved_refs.push_back(new SirtRef<mirror::Object>(self, obj));
344 }
345 GetLiveBitmap()->Walk(callback, arg);
346 for (const auto& ref : saved_refs) {
347 callback(ref->get(), arg);
348 }
349 // Need to free the sirts in reverse order they were allocated.
350 for (size_t i = saved_refs.size(); i != 0; --i) {
351 delete saved_refs[i - 1];
352 }
353}
354
355void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) {
356 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(), stack);
357}
358
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700359void Heap::DeleteThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700360 thread_pool_.reset(nullptr);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700361}
362
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700363static bool ReadStaticInt(JNIEnvExt* env, jclass clz, const char* name, int* out_value) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700364 DCHECK(out_value != NULL);
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700365 jfieldID field = env->GetStaticFieldID(clz, name, "I");
366 if (field == NULL) {
367 env->ExceptionClear();
368 return false;
369 }
370 *out_value = env->GetStaticIntField(clz, field);
371 return true;
372}
373
374void Heap::ListenForProcessStateChange() {
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700375 VLOG(heap) << "Heap notified of process state change";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700376
377 Thread* self = Thread::Current();
378 JNIEnvExt* env = self->GetJniEnv();
379
380 if (!have_zygote_space_) {
381 return;
382 }
383
384 if (activity_thread_class_ == NULL) {
385 jclass clz = env->FindClass("android/app/ActivityThread");
386 if (clz == NULL) {
387 env->ExceptionClear();
388 LOG(WARNING) << "Could not find activity thread class in process state change";
389 return;
390 }
391 activity_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
392 }
393
394 if (activity_thread_class_ != NULL && activity_thread_ == NULL) {
395 jmethodID current_activity_method = env->GetStaticMethodID(activity_thread_class_,
396 "currentActivityThread",
397 "()Landroid/app/ActivityThread;");
398 if (current_activity_method == NULL) {
399 env->ExceptionClear();
400 LOG(WARNING) << "Could not get method for currentActivityThread";
401 return;
402 }
403
404 jobject obj = env->CallStaticObjectMethod(activity_thread_class_, current_activity_method);
405 if (obj == NULL) {
406 env->ExceptionClear();
407 LOG(WARNING) << "Could not get current activity";
408 return;
409 }
410 activity_thread_ = env->NewGlobalRef(obj);
411 }
412
413 if (process_state_cares_about_pause_time_.empty()) {
414 // Just attempt to do this the first time.
415 jclass clz = env->FindClass("android/app/ActivityManager");
416 if (clz == NULL) {
417 LOG(WARNING) << "Activity manager class is null";
418 return;
419 }
420 ScopedLocalRef<jclass> activity_manager(env, clz);
421 std::vector<const char*> care_about_pauses;
422 care_about_pauses.push_back("PROCESS_STATE_TOP");
423 care_about_pauses.push_back("PROCESS_STATE_IMPORTANT_BACKGROUND");
424 // Attempt to read the constants and classify them as whether or not we care about pause times.
425 for (size_t i = 0; i < care_about_pauses.size(); ++i) {
426 int process_state = 0;
427 if (ReadStaticInt(env, activity_manager.get(), care_about_pauses[i], &process_state)) {
428 process_state_cares_about_pause_time_.insert(process_state);
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700429 VLOG(heap) << "Adding process state " << process_state
430 << " to set of states which care about pause time";
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700431 }
432 }
433 }
434
435 if (application_thread_class_ == NULL) {
436 jclass clz = env->FindClass("android/app/ActivityThread$ApplicationThread");
437 if (clz == NULL) {
438 env->ExceptionClear();
439 LOG(WARNING) << "Could not get application thread class";
440 return;
441 }
442 application_thread_class_ = reinterpret_cast<jclass>(env->NewGlobalRef(clz));
443 last_process_state_id_ = env->GetFieldID(application_thread_class_, "mLastProcessState", "I");
444 if (last_process_state_id_ == NULL) {
445 env->ExceptionClear();
446 LOG(WARNING) << "Could not get last process state member";
447 return;
448 }
449 }
450
451 if (application_thread_class_ != NULL && application_thread_ == NULL) {
452 jmethodID get_application_thread =
453 env->GetMethodID(activity_thread_class_, "getApplicationThread",
454 "()Landroid/app/ActivityThread$ApplicationThread;");
455 if (get_application_thread == NULL) {
456 LOG(WARNING) << "Could not get method ID for get application thread";
457 return;
458 }
459
460 jobject obj = env->CallObjectMethod(activity_thread_, get_application_thread);
461 if (obj == NULL) {
462 LOG(WARNING) << "Could not get application thread";
463 return;
464 }
465
466 application_thread_ = env->NewGlobalRef(obj);
467 }
468
469 if (application_thread_ != NULL && last_process_state_id_ != NULL) {
470 int process_state = env->GetIntField(application_thread_, last_process_state_id_);
471 env->ExceptionClear();
472
473 care_about_pause_times_ = process_state_cares_about_pause_time_.find(process_state) !=
474 process_state_cares_about_pause_time_.end();
475
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700476 VLOG(heap) << "New process state " << process_state
477 << " care about pauses " << care_about_pause_times_;
Mathieu Chartierc39e3422013-08-07 16:41:36 -0700478 }
Mathieu Chartier82353312013-07-18 10:47:51 -0700479}
480
Mathieu Chartier590fee92013-09-13 13:46:47 -0700481void Heap::AddSpace(space::Space* space) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700482 DCHECK(space != NULL);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700483 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
484 if (space->IsContinuousSpace()) {
485 DCHECK(!space->IsDiscontinuousSpace());
486 space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
487 // Continuous spaces don't necessarily have bitmaps.
488 accounting::SpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
489 accounting::SpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
490 if (live_bitmap != nullptr) {
491 DCHECK(mark_bitmap != nullptr);
492 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap);
493 mark_bitmap_->AddContinuousSpaceBitmap(mark_bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700494 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700495
496 continuous_spaces_.push_back(continuous_space);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700497 if (continuous_space->IsMallocSpace()) {
498 non_moving_space_ = continuous_space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700499 }
500
501 // Ensure that spaces remain sorted in increasing order of start address.
502 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(),
503 [](const space::ContinuousSpace* a, const space::ContinuousSpace* b) {
504 return a->Begin() < b->Begin();
505 });
506 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
507 // avoid redundant marking.
508 bool seen_zygote = false, seen_alloc = false;
509 for (const auto& space : continuous_spaces_) {
510 if (space->IsImageSpace()) {
511 CHECK(!seen_zygote);
512 CHECK(!seen_alloc);
513 } else if (space->IsZygoteSpace()) {
514 CHECK(!seen_alloc);
515 seen_zygote = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700516 } else if (space->IsMallocSpace()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700517 seen_alloc = true;
518 }
519 }
520 } else {
521 DCHECK(space->IsDiscontinuousSpace());
522 space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
523 DCHECK(discontinuous_space->GetLiveObjects() != nullptr);
524 live_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetLiveObjects());
525 DCHECK(discontinuous_space->GetMarkObjects() != nullptr);
526 mark_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetMarkObjects());
527 discontinuous_spaces_.push_back(discontinuous_space);
528 }
529 if (space->IsAllocSpace()) {
530 alloc_spaces_.push_back(space->AsAllocSpace());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700531 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800532}
533
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700534void Heap::RegisterGCAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700535 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700536 gc_memory_overhead_.fetch_add(bytes);
537 }
538}
539
540void Heap::RegisterGCDeAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700541 if (this != nullptr) {
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700542 gc_memory_overhead_.fetch_sub(bytes);
543 }
544}
545
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700546void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700547 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700548 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700549 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800550
551 // Dump cumulative loggers for each GC type.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800552 uint64_t total_paused_time = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700553 for (const auto& collector : garbage_collectors_) {
Sameer Abu Asala8439542013-02-14 16:06:42 -0800554 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800555 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700556 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800557 const uint64_t total_ns = logger.GetTotalNs();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700558 const uint64_t total_pause_ns = collector->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800559 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
560 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
561 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Mathieu Chartierb2f99362013-11-20 17:26:00 -0800562 Histogram<uint64_t>::CumulativeData cumulative_data;
563 collector->GetPauseHistogram().CreateHistogram(&cumulative_data);
564 collector->GetPauseHistogram().PrintConfidenceIntervals(os, 0.99, cumulative_data);
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700565 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700566 << collector->GetName() << " freed: " << freed_objects
567 << " objects with total size " << PrettySize(freed_bytes) << "\n"
568 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
569 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800570 total_duration += total_ns;
571 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700572 }
573 }
574 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700575 size_t total_objects_allocated = GetObjectsAllocatedEver();
576 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700577 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700578 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700579 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
580 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700581 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700582 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700583 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700584 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700585 os << "Total number of allocations: " << total_objects_allocated << "\n";
586 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700587 if (kMeasureAllocationTime) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700588 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
589 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
590 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700591 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700592 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
593 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700594 os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700595}
596
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800597Heap::~Heap() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700598 VLOG(heap) << "Starting ~Heap()";
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700599 if (kDumpGcPerformanceOnShutdown) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700600 DumpGcPerformanceInfo(LOG(INFO));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700601 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700602 STLDeleteElements(&garbage_collectors_);
603 // If we don't reset then the mark stack complains in its destructor.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700604 allocation_stack_->Reset();
605 live_stack_->Reset();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700606 STLDeleteValues(&mod_union_tables_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700607 STLDeleteElements(&continuous_spaces_);
608 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700609 delete gc_complete_lock_;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700610 VLOG(heap) << "Finished ~Heap()";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700611}
612
Ian Rogers1d54e732013-05-02 21:10:01 -0700613space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
614 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700615 for (const auto& space : continuous_spaces_) {
616 if (space->Contains(obj)) {
617 return space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700618 }
619 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700620 if (!fail_ok) {
621 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
622 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700623 return NULL;
624}
625
Ian Rogers1d54e732013-05-02 21:10:01 -0700626space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
627 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700628 for (const auto& space : discontinuous_spaces_) {
629 if (space->Contains(obj)) {
630 return space;
Ian Rogers1d54e732013-05-02 21:10:01 -0700631 }
632 }
633 if (!fail_ok) {
634 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
635 }
636 return NULL;
637}
638
639space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
640 space::Space* result = FindContinuousSpaceFromObject(obj, true);
641 if (result != NULL) {
642 return result;
643 }
644 return FindDiscontinuousSpaceFromObject(obj, true);
645}
646
Mathieu Chartier39e32612013-11-12 16:28:05 -0800647struct SoftReferenceArgs {
648 RootVisitor* is_marked_callback_;
649 RootVisitor* recursive_mark_callback_;
650 void* arg_;
651};
652
653mirror::Object* Heap::PreserveSoftReferenceCallback(mirror::Object* obj, void* arg) {
654 SoftReferenceArgs* args = reinterpret_cast<SoftReferenceArgs*>(arg);
655 // TODO: Not preserve all soft references.
656 return args->recursive_mark_callback_(obj, args->arg_);
657}
658
659// Process reference class instances and schedule finalizations.
660void Heap::ProcessReferences(TimingLogger& timings, bool clear_soft,
661 RootVisitor* is_marked_callback,
662 RootVisitor* recursive_mark_object_callback, void* arg) {
663 // Unless we are in the zygote or required to clear soft references with white references,
664 // preserve some white referents.
665 if (!clear_soft && !Runtime::Current()->IsZygote()) {
666 SoftReferenceArgs soft_reference_args;
667 soft_reference_args.is_marked_callback_ = is_marked_callback;
668 soft_reference_args.recursive_mark_callback_ = recursive_mark_object_callback;
669 soft_reference_args.arg_ = arg;
670 soft_reference_queue_.PreserveSomeSoftReferences(&PreserveSoftReferenceCallback,
671 &soft_reference_args);
672 }
673 timings.StartSplit("ProcessReferences");
674 // Clear all remaining soft and weak references with white referents.
675 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
676 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
677 timings.EndSplit();
678 // Preserve all white objects with finalize methods and schedule them for finalization.
679 timings.StartSplit("EnqueueFinalizerReferences");
680 finalizer_reference_queue_.EnqueueFinalizerReferences(cleared_references_, is_marked_callback,
681 recursive_mark_object_callback, arg);
682 timings.EndSplit();
683 timings.StartSplit("ProcessReferences");
684 // Clear all f-reachable soft and weak references with white referents.
685 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
686 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
687 // Clear all phantom references with white referents.
688 phantom_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
689 // At this point all reference queues other than the cleared references should be empty.
690 DCHECK(soft_reference_queue_.IsEmpty());
691 DCHECK(weak_reference_queue_.IsEmpty());
692 DCHECK(finalizer_reference_queue_.IsEmpty());
693 DCHECK(phantom_reference_queue_.IsEmpty());
694 timings.EndSplit();
695}
696
697bool Heap::IsEnqueued(mirror::Object* ref) const {
698 // Since the references are stored as cyclic lists it means that once enqueued, the pending next
699 // will always be non-null.
700 return ref->GetFieldObject<mirror::Object*>(GetReferencePendingNextOffset(), false) != nullptr;
701}
702
703bool Heap::IsEnqueuable(const mirror::Object* ref) const {
704 DCHECK(ref != nullptr);
705 const mirror::Object* queue =
706 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueOffset(), false);
707 const mirror::Object* queue_next =
708 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueNextOffset(), false);
709 return queue != nullptr && queue_next == nullptr;
710}
711
712// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
713// marked, put it on the appropriate list in the heap for later processing.
714void Heap::DelayReferenceReferent(mirror::Class* klass, mirror::Object* obj,
715 RootVisitor mark_visitor, void* arg) {
716 DCHECK(klass != nullptr);
717 DCHECK(klass->IsReferenceClass());
718 DCHECK(obj != nullptr);
719 mirror::Object* referent = GetReferenceReferent(obj);
720 if (referent != nullptr) {
721 mirror::Object* forward_address = mark_visitor(referent, arg);
722 // Null means that the object is not currently marked.
723 if (forward_address == nullptr) {
724 Thread* self = Thread::Current();
725 // TODO: Remove these locks, and use atomic stacks for storing references?
726 // We need to check that the references haven't already been enqueued since we can end up
727 // scanning the same reference multiple times due to dirty cards.
728 if (klass->IsSoftReferenceClass()) {
729 soft_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
730 } else if (klass->IsWeakReferenceClass()) {
731 weak_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
732 } else if (klass->IsFinalizerReferenceClass()) {
733 finalizer_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
734 } else if (klass->IsPhantomReferenceClass()) {
735 phantom_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
736 } else {
737 LOG(FATAL) << "Invalid reference type " << PrettyClass(klass) << " " << std::hex
738 << klass->GetAccessFlags();
739 }
740 } else if (referent != forward_address) {
741 // Referent is already marked and we need to update it.
742 SetReferenceReferent(obj, forward_address);
743 }
744 }
745}
746
Ian Rogers1d54e732013-05-02 21:10:01 -0700747space::ImageSpace* Heap::GetImageSpace() const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700748 for (const auto& space : continuous_spaces_) {
749 if (space->IsImageSpace()) {
750 return space->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700751 }
752 }
753 return NULL;
754}
755
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700756static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700757 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700758 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700759 size_t chunk_free_bytes = chunk_size - used_bytes;
760 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
761 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700762 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700763}
764
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700765void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, bool large_object_allocation) {
766 std::ostringstream oss;
767 int64_t total_bytes_free = GetFreeMemory();
768 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
769 << " free bytes";
770 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
771 if (!large_object_allocation && total_bytes_free >= byte_count) {
772 size_t max_contiguous_allocation = 0;
773 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700774 if (space->IsMallocSpace()) {
775 // To allow the Walk/InspectAll() to exclusively-lock the mutator
776 // lock, temporarily release the shared access to the mutator
777 // lock here by transitioning to the suspended state.
778 Locks::mutator_lock_->AssertSharedHeld(self);
779 self->TransitionFromRunnableToSuspended(kSuspended);
780 space->AsMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
781 self->TransitionFromSuspendedToRunnable();
782 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700783 }
784 }
785 oss << "; failed due to fragmentation (largest possible contiguous allocation "
786 << max_contiguous_allocation << " bytes)";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700787 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700788 self->ThrowOutOfMemoryError(oss.str().c_str());
789}
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700790
Mathieu Chartier590fee92013-09-13 13:46:47 -0700791void Heap::Trim() {
792 uint64_t start_ns = NanoTime();
793 // Trim the managed spaces.
794 uint64_t total_alloc_space_allocated = 0;
795 uint64_t total_alloc_space_size = 0;
796 uint64_t managed_reclaimed = 0;
797 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700798 if (space->IsMallocSpace() && !space->IsZygoteSpace()) {
799 gc::space::MallocSpace* alloc_space = space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700800 total_alloc_space_size += alloc_space->Size();
801 managed_reclaimed += alloc_space->Trim();
802 }
803 }
804 total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated() -
805 bump_pointer_space_->GetBytesAllocated();
806 const float managed_utilization = static_cast<float>(total_alloc_space_allocated) /
807 static_cast<float>(total_alloc_space_size);
808 uint64_t gc_heap_end_ns = NanoTime();
809 // Trim the native heap.
810 dlmalloc_trim(0);
811 size_t native_reclaimed = 0;
812 dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
813 uint64_t end_ns = NanoTime();
814 VLOG(heap) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
815 << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
816 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
817 << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
818 << "%.";
819}
820
821bool Heap::IsValidObjectAddress(const mirror::Object* obj) const {
822 // Note: we deliberately don't take the lock here, and mustn't test anything that would require
823 // taking the lock.
824 if (obj == nullptr) {
Elliott Hughes88c5c352012-03-15 18:49:48 -0700825 return true;
826 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700827 return IsAligned<kObjectAlignment>(obj) && IsHeapAddress(obj);
828}
829
830bool Heap::IsHeapAddress(const mirror::Object* obj) const {
831 if (kMovingCollector && bump_pointer_space_->HasAddress(obj)) {
832 return true;
Elliott Hughesa2501992011-08-26 19:39:54 -0700833 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700834 // TODO: This probably doesn't work for large objects.
835 return FindSpaceFromObject(obj, true) != nullptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700836}
837
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700838bool Heap::IsLiveObjectLocked(const mirror::Object* obj, bool search_allocation_stack,
839 bool search_live_stack, bool sorted) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700840 // Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700841 if (obj == nullptr || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700842 return false;
843 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700844 space::ContinuousSpace* c_space = FindContinuousSpaceFromObject(obj, true);
845 space::DiscontinuousSpace* d_space = NULL;
846 if (c_space != NULL) {
847 if (c_space->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700848 return true;
849 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700850 } else if (bump_pointer_space_->Contains(obj) || temp_space_->Contains(obj)) {
851 return true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700852 } else {
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700853 d_space = FindDiscontinuousSpaceFromObject(obj, true);
854 if (d_space != NULL) {
855 if (d_space->GetLiveObjects()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700856 return true;
857 }
858 }
859 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700860 // This is covering the allocation/live stack swapping that is done without mutators suspended.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700861 for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
862 if (i > 0) {
863 NanoSleep(MsToNs(10));
Ian Rogers1d54e732013-05-02 21:10:01 -0700864 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700865 if (search_allocation_stack) {
866 if (sorted) {
867 if (allocation_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
868 return true;
869 }
870 } else if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj))) {
871 return true;
872 }
873 }
874
875 if (search_live_stack) {
876 if (sorted) {
877 if (live_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
878 return true;
879 }
880 } else if (live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
881 return true;
882 }
883 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700884 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700885 // We need to check the bitmaps again since there is a race where we mark something as live and
886 // then clear the stack containing it.
887 if (c_space != NULL) {
888 if (c_space->GetLiveBitmap()->Test(obj)) {
889 return true;
890 }
891 } else {
892 d_space = FindDiscontinuousSpaceFromObject(obj, true);
893 if (d_space != NULL && d_space->GetLiveObjects()->Test(obj)) {
894 return true;
895 }
896 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700897 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700898}
899
Ian Rogers04d7aa92013-03-16 14:29:17 -0700900void Heap::VerifyObjectImpl(const mirror::Object* obj) {
901 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700902 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700903 return;
904 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700905 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700906}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700907
Mathieu Chartier590fee92013-09-13 13:46:47 -0700908void Heap::DumpSpaces(std::ostream& stream) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700909 for (const auto& space : continuous_spaces_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700910 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
911 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700912 stream << space << " " << *space << "\n";
913 if (live_bitmap != nullptr) {
914 stream << live_bitmap << " " << *live_bitmap << "\n";
915 }
916 if (mark_bitmap != nullptr) {
917 stream << mark_bitmap << " " << *mark_bitmap << "\n";
918 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700919 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700920 for (const auto& space : discontinuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700921 stream << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700922 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700923}
924
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800925void Heap::VerifyObjectBody(const mirror::Object* obj) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700926 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
927 // Ignore early dawn of the universe verifications.
928 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.load()) < 10 * KB)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800929 return;
930 }
931 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
932 mirror::Object::ClassOffset().Int32Value();
933 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
934 if (UNLIKELY(c == NULL)) {
935 LOG(FATAL) << "Null class in object: " << obj;
936 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
937 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
938 }
939 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
940 // Note: we don't use the accessors here as they have internal sanity checks
941 // that we don't want to run
942 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
943 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
944 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
945 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
946 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700947
Mathieu Chartier590fee92013-09-13 13:46:47 -0700948 if (verify_object_mode_ > kVerifyAllFast) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800949 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
950 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700951 if (!IsLiveObjectLocked(obj)) {
952 DumpSpaces();
953 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700954 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700955 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700956 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
957 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700958 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700959}
960
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800961void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700962 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700963 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700964}
965
966void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700967 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700968 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700969}
970
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700971void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700972 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -0700973 num_bytes_allocated_.fetch_sub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700974
975 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700976 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700977 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700978 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700979
980 // TODO: Do this concurrently.
981 RuntimeStats* global_stats = Runtime::Current()->GetStats();
982 global_stats->freed_objects += freed_objects;
983 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700984 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700985}
986
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800987mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator,
Mathieu Chartier720ef762013-08-17 14:46:54 -0700988 size_t alloc_size, size_t* bytes_allocated) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800989 mirror::Object* ptr = nullptr;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700990 // The allocation failed. If the GC is running, block until it completes, and then retry the
991 // allocation.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700992 collector::GcType last_gc = WaitForGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700993 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700994 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800995 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700996 }
997
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700998 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800999 for (collector::GcType gc_type : gc_plan_) {
1000 if (ptr != nullptr) {
1001 break;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001002 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001003 // Attempt to run the collector, if we succeed, re-try the allocation.
1004 if (CollectGarbageInternal(gc_type, kGcCauseForAlloc, false) != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001005 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001006 ptr = TryToAllocate<true>(self, allocator, alloc_size, false, bytes_allocated);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001007 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001008 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001009 // Allocations have failed after GCs; this is an exceptional state.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001010 if (ptr == nullptr) {
1011 // Try harder, growing the heap if necessary.
1012 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001013 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001014 if (ptr == nullptr) {
1015 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
1016 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
1017 // VM spec requires that all SoftReferences have been collected and cleared before throwing
1018 // OOME.
1019 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
1020 << " allocation";
1021 // TODO: Run finalization, but this may cause more allocations to occur.
1022 // We don't need a WaitForGcToComplete here either.
1023 DCHECK(!gc_plan_.empty());
1024 CollectGarbageInternal(gc_plan_.back(), kGcCauseForAlloc, true);
1025 ptr = TryToAllocate<true>(self, allocator, alloc_size, true, bytes_allocated);
1026 if (ptr == nullptr) {
1027 ThrowOutOfMemoryError(self, alloc_size, false);
1028 }
1029 }
1030 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001031}
1032
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001033void Heap::SetTargetHeapUtilization(float target) {
1034 DCHECK_GT(target, 0.0f); // asserted in Java code
1035 DCHECK_LT(target, 1.0f);
1036 target_utilization_ = target;
1037}
1038
Ian Rogers1d54e732013-05-02 21:10:01 -07001039size_t Heap::GetObjectsAllocated() const {
1040 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001041 for (space::AllocSpace* space : alloc_spaces_) {
1042 total += space->GetObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001043 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001044 return total;
1045}
1046
Ian Rogers1d54e732013-05-02 21:10:01 -07001047size_t Heap::GetObjectsAllocatedEver() const {
1048 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001049 for (space::AllocSpace* space : alloc_spaces_) {
1050 total += space->GetTotalObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001051 }
1052 return total;
1053}
1054
1055size_t Heap::GetBytesAllocatedEver() const {
1056 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001057 for (space::AllocSpace* space : alloc_spaces_) {
1058 total += space->GetTotalBytesAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001059 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001060 return total;
1061}
1062
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001063class InstanceCounter {
1064 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001065 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001066 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001067 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001068 }
1069
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001070 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001071 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001072 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001073 if (use_is_assignable_from_) {
1074 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
1075 ++counts_[i];
1076 }
1077 } else {
1078 if (instance_class == classes_[i]) {
1079 ++counts_[i];
1080 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001081 }
1082 }
1083 }
1084
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001085 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001086 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001087 bool use_is_assignable_from_;
1088 uint64_t* const counts_;
1089
1090 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001091};
1092
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001093void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001094 uint64_t* counts) {
1095 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1096 // is empty, so the live bitmap is the only place we need to look.
1097 Thread* self = Thread::Current();
1098 self->TransitionFromRunnableToSuspended(kNative);
1099 CollectGarbage(false);
1100 self->TransitionFromSuspendedToRunnable();
1101
1102 InstanceCounter counter(classes, use_is_assignable_from, counts);
1103 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001104 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001105}
1106
Elliott Hughes3b78c942013-01-15 17:35:41 -08001107class InstanceCollector {
1108 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001109 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -08001110 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1111 : class_(c), max_count_(max_count), instances_(instances) {
1112 }
1113
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001114 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1115 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -08001116 if (instance_class == class_) {
1117 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001118 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001119 }
1120 }
1121 }
1122
1123 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001124 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001125 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001126 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001127
1128 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
1129};
1130
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001131void Heap::GetInstances(mirror::Class* c, int32_t max_count,
1132 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001133 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1134 // is empty, so the live bitmap is the only place we need to look.
1135 Thread* self = Thread::Current();
1136 self->TransitionFromRunnableToSuspended(kNative);
1137 CollectGarbage(false);
1138 self->TransitionFromSuspendedToRunnable();
1139
1140 InstanceCollector collector(c, max_count, instances);
1141 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1142 GetLiveBitmap()->Visit(collector);
1143}
1144
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001145class ReferringObjectsFinder {
1146 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001147 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1148 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001149 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1150 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1151 }
1152
1153 // For bitmap Visit.
1154 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1155 // annotalysis on visitors.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001156 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
1157 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(o), *this, true);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001158 }
1159
1160 // For MarkSweep::VisitObjectReferences.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001161 void operator()(mirror::Object* referrer, mirror::Object* object,
Brian Carlstromdf629502013-07-17 22:39:56 -07001162 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001163 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001164 referring_objects_.push_back(referrer);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001165 }
1166 }
1167
1168 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001169 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001170 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001171 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001172
1173 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1174};
1175
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001176void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1177 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001178 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1179 // is empty, so the live bitmap is the only place we need to look.
1180 Thread* self = Thread::Current();
1181 self->TransitionFromRunnableToSuspended(kNative);
1182 CollectGarbage(false);
1183 self->TransitionFromSuspendedToRunnable();
1184
1185 ReferringObjectsFinder finder(o, max_count, referring_objects);
1186 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1187 GetLiveBitmap()->Visit(finder);
1188}
1189
Ian Rogers30fab402012-01-23 15:43:46 -08001190void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001191 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1192 // last GC will not have necessarily been cleared.
Ian Rogers1d54e732013-05-02 21:10:01 -07001193 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001194}
1195
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001196void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001197 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Ian Rogers81d425b2012-09-27 16:03:43 -07001198 Thread* self = Thread::Current();
1199 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001200 // Try to see if we have any Zygote spaces.
1201 if (have_zygote_space_) {
1202 return;
1203 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001204 VLOG(heap) << "Starting PreZygoteFork";
1205 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
1206 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
1207 // Trim the pages at the end of the non moving space.
1208 non_moving_space_->Trim();
1209 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1210 // Create a new bump pointer space which we will compact into.
1211 if (semi_space_collector_ != nullptr) {
1212 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1213 non_moving_space_->Limit());
1214 // Compact the bump pointer space to a new zygote bump pointer space.
1215 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1216 Compact(&target_space, bump_pointer_space_);
1217 CHECK_EQ(temp_space_->GetBytesAllocated(), 0U);
1218 total_objects_freed_ever_ += semi_space_collector_->GetFreedObjects();
1219 total_bytes_freed_ever_ += semi_space_collector_->GetFreedBytes();
1220 // Update the end and write out image.
1221 non_moving_space_->SetEnd(target_space.End());
1222 non_moving_space_->SetLimit(target_space.Limit());
1223 accounting::SpaceBitmap* bitmap = non_moving_space_->GetLiveBitmap();
1224 // Record the allocations in the bitmap.
1225 VLOG(heap) << "Recording zygote allocations";
1226 mirror::Object* obj = reinterpret_cast<mirror::Object*>(target_space.Begin());
1227 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(target_space.End());
1228 while (obj < end) {
1229 bitmap->Set(obj);
1230 obj = space::BumpPointerSpace::GetNextObject(obj);
1231 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001232 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001233 // Turn the current alloc space into a zygote space and obtain the new alloc space composed of
1234 // the remaining available heap memory.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001235 space::MallocSpace* zygote_space = non_moving_space_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001236 non_moving_space_ = zygote_space->CreateZygoteSpace("alloc space");
1237 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -07001238 // Change the GC retention policy of the zygote space to only collect when full.
1239 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001240 AddSpace(non_moving_space_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001241 have_zygote_space_ = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001242 zygote_space->InvalidateAllocator();
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001243 // Create the zygote space mod union table.
1244 accounting::ModUnionTable* mod_union_table =
1245 new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);
1246 CHECK(mod_union_table != nullptr) << "Failed to create zygote space mod-union table";
1247 AddModUnionTable(mod_union_table);
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001248 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001249 for (const auto& collector : garbage_collectors_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001250 collector->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001251 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001252}
1253
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001254void Heap::FlushAllocStack() {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001255 MarkAllocStack(non_moving_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001256 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001257 allocation_stack_->Reset();
1258}
1259
Ian Rogers1d54e732013-05-02 21:10:01 -07001260void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1261 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001262 mirror::Object** limit = stack->End();
1263 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1264 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001265 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001266 if (LIKELY(bitmap->HasAddress(obj))) {
1267 bitmap->Set(obj);
1268 } else {
1269 large_objects->Set(obj);
1270 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001271 }
1272}
1273
Mathieu Chartier590fee92013-09-13 13:46:47 -07001274const char* PrettyCause(GcCause cause) {
1275 switch (cause) {
1276 case kGcCauseForAlloc: return "Alloc";
1277 case kGcCauseBackground: return "Background";
1278 case kGcCauseExplicit: return "Explicit";
1279 default:
1280 LOG(FATAL) << "Unreachable";
1281 }
1282 return "";
1283}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001284
Mathieu Chartier590fee92013-09-13 13:46:47 -07001285void Heap::SwapSemiSpaces() {
1286 // Swap the spaces so we allocate into the space which we just evacuated.
1287 std::swap(bump_pointer_space_, temp_space_);
1288}
1289
1290void Heap::Compact(space::ContinuousMemMapAllocSpace* target_space,
1291 space::ContinuousMemMapAllocSpace* source_space) {
1292 CHECK(kMovingCollector);
1293 CHECK_NE(target_space, source_space) << "In-place compaction unsupported";
1294 if (target_space != source_space) {
1295 semi_space_collector_->SetFromSpace(source_space);
1296 semi_space_collector_->SetToSpace(target_space);
1297 semi_space_collector_->Run(false);
1298 }
1299}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001300
Ian Rogers1d54e732013-05-02 21:10:01 -07001301collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1302 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001303 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001304 Runtime* runtime = Runtime::Current();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001305 // If the heap can't run the GC, silently fail and return that no GC was run.
1306 switch (gc_type) {
1307 case collector::kGcTypeSticky: {
1308 const size_t alloc_space_size = non_moving_space_->Size();
1309 if (alloc_space_size < min_alloc_space_size_for_sticky_gc_ ||
1310 non_moving_space_->Capacity() - alloc_space_size < min_remaining_space_for_sticky_gc_) {
1311 return collector::kGcTypeNone;
1312 }
1313 break;
1314 }
1315 case collector::kGcTypePartial: {
1316 if (!have_zygote_space_) {
1317 return collector::kGcTypeNone;
1318 }
1319 break;
1320 }
1321 default: {
1322 // Other GC types don't have any special cases which makes them not runnable. The main case
1323 // here is full GC.
1324 }
1325 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001326 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001327 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers120f1c72012-09-28 17:17:10 -07001328 if (self->IsHandlingStackOverflow()) {
1329 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1330 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001331 {
1332 gc_complete_lock_->AssertNotHeld(self);
1333 MutexLock mu(self, *gc_complete_lock_);
1334 // Ensure there is only one GC at a time.
1335 WaitForGcToCompleteLocked(self);
1336 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1337 // Not doing at the moment to ensure soft references are cleared.
1338 // GC can be disabled if someone has a used GetPrimitiveArrayCritical.
1339 if (gc_disable_count_ != 0) {
1340 LOG(WARNING) << "Skipping GC due to disable count " << gc_disable_count_;
1341 return collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001342 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001343 is_gc_running_ = true;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001344 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001345 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
1346 ++runtime->GetStats()->gc_for_alloc_count;
1347 ++self->GetStats()->gc_for_alloc_count;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001348 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001349 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001350 uint64_t gc_start_size = GetBytesAllocated();
1351 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001352 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001353 // Back to back GCs can cause 0 ms of wait time in between GC invocations.
1354 if (LIKELY(ms_delta != 0)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001355 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001356 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1357 }
1358
Ian Rogers1d54e732013-05-02 21:10:01 -07001359 DCHECK_LT(gc_type, collector::kGcTypeMax);
1360 DCHECK_NE(gc_type, collector::kGcTypeNone);
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001361
Mathieu Chartier590fee92013-09-13 13:46:47 -07001362 collector::GarbageCollector* collector = nullptr;
1363 if (kMovingCollector) {
1364 gc_type = semi_space_collector_->GetGcType();
1365 CHECK_EQ(temp_space_->GetObjectsAllocated(), 0U);
1366 semi_space_collector_->SetFromSpace(bump_pointer_space_);
1367 semi_space_collector_->SetToSpace(temp_space_);
1368 mprotect(temp_space_->Begin(), temp_space_->Capacity(), PROT_READ | PROT_WRITE);
1369 }
1370 for (const auto& cur_collector : garbage_collectors_) {
1371 if (cur_collector->IsConcurrent() == concurrent_gc_ &&
1372 cur_collector->GetGcType() == gc_type) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001373 collector = cur_collector;
1374 break;
1375 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001376 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001377 if (kMovingCollector) {
1378 gc_type = collector::kGcTypeFull;
1379 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001380 CHECK(collector != NULL)
1381 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1382 << " and type=" << gc_type;
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001383
Mathieu Chartier590fee92013-09-13 13:46:47 -07001384 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), collector->GetName()).c_str());
1385
1386 collector->Run(clear_soft_references);
Ian Rogers1d54e732013-05-02 21:10:01 -07001387 total_objects_freed_ever_ += collector->GetFreedObjects();
1388 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001389
Mathieu Chartier39e32612013-11-12 16:28:05 -08001390 // Enqueue cleared references.
1391 EnqueueClearedReferences();
1392
Mathieu Chartier590fee92013-09-13 13:46:47 -07001393 // Grow the heap so that we know when to perform the next GC.
1394 GrowForUtilization(gc_type, collector->GetDurationNs());
1395
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001396 if (care_about_pause_times_) {
1397 const size_t duration = collector->GetDurationNs();
1398 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1399 // GC for alloc pauses the allocating thread, so consider it as a pause.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001400 bool was_slow = duration > long_gc_log_threshold_ ||
1401 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001402 if (!was_slow) {
1403 for (uint64_t pause : pauses) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001404 was_slow = was_slow || pause > long_pause_log_threshold_;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001405 }
1406 }
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001407 if (was_slow) {
1408 const size_t percent_free = GetPercentFree();
1409 const size_t current_heap_size = GetBytesAllocated();
1410 const size_t total_memory = GetTotalMemory();
1411 std::ostringstream pause_string;
1412 for (size_t i = 0; i < pauses.size(); ++i) {
1413 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1414 << ((i != pauses.size() - 1) ? ", " : "");
1415 }
1416 LOG(INFO) << gc_cause << " " << collector->GetName()
1417 << " GC freed " << collector->GetFreedObjects() << "("
1418 << PrettySize(collector->GetFreedBytes()) << ") AllocSpace objects, "
1419 << collector->GetFreedLargeObjects() << "("
1420 << PrettySize(collector->GetFreedLargeObjectBytes()) << ") LOS objects, "
1421 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1422 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1423 << " total " << PrettyDuration((duration / 1000) * 1000);
1424 if (VLOG_IS_ON(heap)) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001425 LOG(INFO) << Dumpable<TimingLogger>(collector->GetTimings());
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001426 }
1427 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001428 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001429
Ian Rogers15bf2d32012-08-28 17:33:04 -07001430 {
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001431 MutexLock mu(self, *gc_complete_lock_);
1432 is_gc_running_ = false;
1433 last_gc_type_ = gc_type;
1434 // Wake anyone who may have been waiting for the GC to complete.
1435 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001436 }
Mathieu Chartier0a9dc052013-07-25 11:01:28 -07001437
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001438 ATRACE_END();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001439
1440 // Inform DDMS that a GC completed.
Ian Rogers15bf2d32012-08-28 17:33:04 -07001441 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001442 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001443}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001444
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001445static mirror::Object* RootMatchesObjectVisitor(mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001446 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001447 if (root == obj) {
1448 LOG(INFO) << "Object " << obj << " is a root";
1449 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001450 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001451}
1452
1453class ScanVisitor {
1454 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001455 void operator()(const mirror::Object* obj) const {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001456 LOG(ERROR) << "Would have rescanned object " << obj;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001457 }
1458};
1459
Ian Rogers1d54e732013-05-02 21:10:01 -07001460// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001461class VerifyReferenceVisitor {
1462 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001463 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001464 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001465 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001466
1467 bool Failed() const {
1468 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001469 }
1470
1471 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001472 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001473 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1474 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001475 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001476 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001477 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1478 accounting::CardTable* card_table = heap_->GetCardTable();
1479 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1480 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001481 if (!failed_) {
1482 // Print message on only on first failure to prevent spam.
1483 LOG(ERROR) << "!!!!!!!!!!!!!!Heap corruption detected!!!!!!!!!!!!!!!!!!!";
1484 failed_ = true;
1485 }
1486 if (obj != nullptr) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001487 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001488 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset "
1489 << offset << "\n card value = " << static_cast<int>(*card_addr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001490 if (heap_->IsValidObjectAddress(obj->GetClass())) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001491 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1492 } else {
1493 LOG(ERROR) << "Object " << obj << " class(" << obj->GetClass() << ") not a heap address";
1494 }
1495
1496 // Attmept to find the class inside of the recently freed objects.
1497 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001498 if (ref_space != nullptr && ref_space->IsMallocSpace()) {
1499 space::MallocSpace* space = ref_space->AsMallocSpace();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001500 mirror::Class* ref_class = space->FindRecentFreedObject(ref);
1501 if (ref_class != nullptr) {
1502 LOG(ERROR) << "Reference " << ref << " found as a recently freed object with class "
1503 << PrettyClass(ref_class);
1504 } else {
1505 LOG(ERROR) << "Reference " << ref << " not found as a recently freed object";
1506 }
1507 }
1508
Mathieu Chartier590fee92013-09-13 13:46:47 -07001509 if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001510 ref->GetClass()->IsClass()) {
1511 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1512 } else {
1513 LOG(ERROR) << "Ref " << ref << " class(" << ref->GetClass()
1514 << ") is not a valid heap address";
1515 }
1516
Ian Rogers1d54e732013-05-02 21:10:01 -07001517 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1518 void* cover_begin = card_table->AddrFromCard(card_addr);
1519 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1520 accounting::CardTable::kCardSize);
1521 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1522 << "-" << cover_end;
1523 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001524
Ian Rogers1d54e732013-05-02 21:10:01 -07001525 // Print out how the object is live.
1526 if (bitmap != NULL && bitmap->Test(obj)) {
1527 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1528 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001529 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001530 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1531 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001532 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001533 LOG(ERROR) << "Object " << obj << " found in live stack";
1534 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001535 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1536 LOG(ERROR) << "Ref " << ref << " found in allocation stack";
1537 }
1538 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1539 LOG(ERROR) << "Ref " << ref << " found in live stack";
1540 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001541 // Attempt to see if the card table missed the reference.
1542 ScanVisitor scan_visitor;
1543 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1544 card_table->Scan(bitmap, byte_cover_begin,
Mathieu Chartier184e3222013-08-03 14:02:57 -07001545 byte_cover_begin + accounting::CardTable::kCardSize, scan_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -07001546
1547 // Search to see if any of the roots reference our object.
1548 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1549 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1550
1551 // Search to see if any of the roots reference our reference.
1552 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1553 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1554 } else {
1555 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001556 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001557 }
1558 }
1559
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001560 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001561 return heap_->IsLiveObjectLocked(obj, true, false, true);
Ian Rogers1d54e732013-05-02 21:10:01 -07001562 }
1563
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001564 static mirror::Object* VerifyRoots(mirror::Object* root, void* arg) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001565 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001566 (*visitor)(nullptr, root, MemberOffset(0), true);
1567 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001568 }
1569
1570 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001571 Heap* const heap_;
1572 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001573};
1574
Ian Rogers1d54e732013-05-02 21:10:01 -07001575// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001576class VerifyObjectVisitor {
1577 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001578 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001579
Mathieu Chartier590fee92013-09-13 13:46:47 -07001580 void operator()(mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001581 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001582 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1583 // be live or else how did we find it in the live bitmap?
1584 VerifyReferenceVisitor visitor(heap_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001585 // The class doesn't count as a reference but we should verify it anyways.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001586 collector::MarkSweep::VisitObjectReferences(obj, visitor, true);
1587 if (obj->GetClass()->IsReferenceClass()) {
1588 visitor(obj, heap_->GetReferenceReferent(obj), MemberOffset(0), false);
1589 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001590 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001591 }
1592
Mathieu Chartier590fee92013-09-13 13:46:47 -07001593 static void VisitCallback(mirror::Object* obj, void* arg)
1594 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1595 VerifyObjectVisitor* visitor = reinterpret_cast<VerifyObjectVisitor*>(arg);
1596 visitor->operator()(obj);
1597 }
1598
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001599 bool Failed() const {
1600 return failed_;
1601 }
1602
1603 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001604 Heap* const heap_;
1605 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001606};
1607
1608// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001609bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001610 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001611 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001612 allocation_stack_->Sort();
1613 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001614 VerifyObjectVisitor visitor(this);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001615 // Verify objects in the allocation stack since these will be objects which were:
1616 // 1. Allocated prior to the GC (pre GC verification).
1617 // 2. Allocated during the GC (pre sweep GC verification).
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001618 // We don't want to verify the objects in the live stack since they themselves may be
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001619 // pointing to dead objects if they are not reachable.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001620 VisitObjects(VerifyObjectVisitor::VisitCallback, &visitor);
1621 // Verify the roots:
1622 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001623 if (visitor.Failed()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001624 // Dump mod-union tables.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001625 for (const auto& table_pair : mod_union_tables_) {
1626 accounting::ModUnionTable* mod_union_table = table_pair.second;
1627 mod_union_table->Dump(LOG(ERROR) << mod_union_table->GetName() << ": ");
1628 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001629 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001630 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001631 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001632 return true;
1633}
1634
1635class VerifyReferenceCardVisitor {
1636 public:
1637 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1638 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1639 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001640 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001641 }
1642
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001643 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1644 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001645 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1646 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001647 // Filter out class references since changing an object's class does not mark the card as dirty.
1648 // Also handles large objects, since the only reference they hold is a class reference.
1649 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001650 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001651 // If the object is not dirty and it is referencing something in the live stack other than
1652 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001653 if (!card_table->AddrIsInCardTable(obj)) {
1654 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1655 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001656 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001657 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1658 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001659 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierf082d3c2013-07-29 17:04:07 -07001660 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(ref))) {
1661 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001662 LOG(ERROR) << "Object " << obj << " found in live stack";
1663 }
1664 if (heap_->GetLiveBitmap()->Test(obj)) {
1665 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1666 }
1667 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1668 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1669
1670 // Print which field of the object is dead.
1671 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001672 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001673 CHECK(klass != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001674 const mirror::ObjectArray<mirror::ArtField>* fields = is_static ? klass->GetSFields()
1675 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001676 CHECK(fields != NULL);
1677 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001678 const mirror::ArtField* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001679 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1680 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1681 << PrettyField(cur);
1682 break;
1683 }
1684 }
1685 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001686 const mirror::ObjectArray<mirror::Object>* object_array =
1687 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001688 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1689 if (object_array->Get(i) == ref) {
1690 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1691 }
1692 }
1693 }
1694
1695 *failed_ = true;
1696 }
1697 }
1698 }
1699 }
1700
1701 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001702 Heap* const heap_;
1703 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001704};
1705
1706class VerifyLiveStackReferences {
1707 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001708 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001709 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001710 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001711
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001712 void operator()(mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001713 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1714 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001715 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(obj), visitor, true);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001716 }
1717
1718 bool Failed() const {
1719 return failed_;
1720 }
1721
1722 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001723 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001724 bool failed_;
1725};
1726
1727bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001728 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001729
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001730 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001731 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001732 VerifyLiveStackReferences visitor(this);
1733 GetLiveBitmap()->Visit(visitor);
1734
1735 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001736 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001737 visitor(*it);
1738 }
1739
1740 if (visitor.Failed()) {
1741 DumpSpaces();
1742 return false;
1743 }
1744 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001745}
1746
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001747void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001748 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001749}
1750
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001751accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) {
1752 auto it = mod_union_tables_.find(space);
1753 if (it == mod_union_tables_.end()) {
1754 return nullptr;
1755 }
1756 return it->second;
1757}
1758
Ian Rogers5fe9af72013-11-14 00:17:20 -08001759void Heap::ProcessCards(TimingLogger& timings) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001760 // Clear cards and keep track of cards cleared in the mod-union table.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001761 for (const auto& space : continuous_spaces_) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001762 accounting::ModUnionTable* table = FindModUnionTableFromSpace(space);
1763 if (table != nullptr) {
1764 const char* name = space->IsZygoteSpace() ? "ZygoteModUnionClearCards" :
1765 "ImageModUnionClearCards";
Ian Rogers5fe9af72013-11-14 00:17:20 -08001766 TimingLogger::ScopedSplit split(name, &timings);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001767 table->ClearCards();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001768 } else if (space->GetType() != space::kSpaceTypeBumpPointerSpace) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001769 TimingLogger::ScopedSplit split("AllocSpaceClearCards", &timings);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001770 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1771 // were dirty before the GC started.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001772 // TODO: Don't need to use atomic.
1773 // The races are we either end up with: Aged card, unaged card. Since we have the checkpoint
1774 // roots and then we scan / update mod union tables after. We will always scan either card.//
1775 // If we end up with the non aged card, we scan it it in the pause.
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001776 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001777 }
1778 }
1779}
1780
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001781static mirror::Object* IdentityCallback(mirror::Object* obj, void*) {
1782 return obj;
1783}
1784
Ian Rogers1d54e732013-05-02 21:10:01 -07001785void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001786 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1787 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001788
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001789 if (verify_pre_gc_heap_) {
1790 thread_list->SuspendAll();
1791 {
1792 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1793 if (!VerifyHeapReferences()) {
1794 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1795 }
1796 }
1797 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001798 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001799
1800 // Check that all objects which reference things in the live stack are on dirty cards.
1801 if (verify_missing_card_marks_) {
1802 thread_list->SuspendAll();
1803 {
1804 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1805 SwapStacks();
1806 // Sort the live stack so that we can quickly binary search it later.
1807 if (!VerifyMissingCardMarks()) {
1808 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1809 }
1810 SwapStacks();
1811 }
1812 thread_list->ResumeAll();
1813 }
1814
1815 if (verify_mod_union_table_) {
1816 thread_list->SuspendAll();
1817 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001818 for (const auto& table_pair : mod_union_tables_) {
1819 accounting::ModUnionTable* mod_union_table = table_pair.second;
1820 mod_union_table->UpdateAndMarkReferences(IdentityCallback, nullptr);
1821 mod_union_table->Verify();
1822 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001823 thread_list->ResumeAll();
1824 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001825}
1826
Ian Rogers1d54e732013-05-02 21:10:01 -07001827void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001828 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1829 // reachable objects.
1830 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001831 Thread* self = Thread::Current();
1832 CHECK_NE(self->GetState(), kRunnable);
Ian Rogers1d54e732013-05-02 21:10:01 -07001833 {
1834 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1835 // Swapping bound bitmaps does nothing.
1836 gc->SwapBitmaps();
1837 if (!VerifyHeapReferences()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001838 LOG(FATAL) << "Pre sweeping " << gc->GetName() << " GC verification failed";
Ian Rogers1d54e732013-05-02 21:10:01 -07001839 }
1840 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001841 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001842 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001843}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001844
Ian Rogers1d54e732013-05-02 21:10:01 -07001845void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001846 if (verify_system_weaks_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001847 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001848 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001849 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001850 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001851 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001852}
1853
Mathieu Chartier590fee92013-09-13 13:46:47 -07001854collector::GcType Heap::WaitForGcToComplete(Thread* self) {
1855 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
1856 MutexLock mu(self, *gc_complete_lock_);
1857 return WaitForGcToCompleteLocked(self);
1858}
1859
1860collector::GcType Heap::WaitForGcToCompleteLocked(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001861 collector::GcType last_gc_type = collector::kGcTypeNone;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001862 uint64_t wait_start = NanoTime();
1863 while (is_gc_running_) {
1864 ATRACE_BEGIN("GC: Wait For Completion");
1865 // We must wait, change thread state then sleep on gc_complete_cond_;
1866 gc_complete_cond_->Wait(self);
1867 last_gc_type = last_gc_type_;
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001868 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001869 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001870 uint64_t wait_time = NanoTime() - wait_start;
1871 total_wait_time_ += wait_time;
1872 if (wait_time > long_pause_log_threshold_) {
1873 LOG(INFO) << "WaitForGcToComplete blocked for " << PrettyDuration(wait_time);
1874 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001875 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001876}
1877
Elliott Hughesc967f782012-04-16 10:23:15 -07001878void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001879 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001880 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001881 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001882}
1883
1884size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001885 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001886}
1887
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001888void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001889 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001890 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001891 << PrettySize(GetMaxMemory());
1892 max_allowed_footprint = GetMaxMemory();
1893 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001894 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001895}
1896
Mathieu Chartier590fee92013-09-13 13:46:47 -07001897bool Heap::IsMovableObject(const mirror::Object* obj) const {
1898 if (kMovingCollector) {
1899 DCHECK(!IsInTempSpace(obj));
1900 if (bump_pointer_space_->HasAddress(obj)) {
1901 return true;
1902 }
1903 }
1904 return false;
1905}
1906
1907bool Heap::IsInTempSpace(const mirror::Object* obj) const {
1908 if (temp_space_->HasAddress(obj) && !temp_space_->Contains(obj)) {
1909 return true;
1910 }
1911 return false;
1912}
1913
Mathieu Chartier987ccff2013-07-08 11:05:21 -07001914void Heap::UpdateMaxNativeFootprint() {
1915 size_t native_size = native_bytes_allocated_;
1916 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
1917 size_t target_size = native_size / GetTargetHeapUtilization();
1918 if (target_size > native_size + max_free_) {
1919 target_size = native_size + max_free_;
1920 } else if (target_size < native_size + min_free_) {
1921 target_size = native_size + min_free_;
1922 }
1923 native_footprint_gc_watermark_ = target_size;
1924 native_footprint_limit_ = 2 * target_size - native_size;
1925}
1926
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001927void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001928 // We know what our utilization is at this moment.
1929 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001930 const size_t bytes_allocated = GetBytesAllocated();
1931 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001932 last_gc_time_ns_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001933
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001934 size_t target_size;
1935 if (gc_type != collector::kGcTypeSticky) {
1936 // Grow the heap for non sticky GC.
1937 target_size = bytes_allocated / GetTargetHeapUtilization();
1938 if (target_size > bytes_allocated + max_free_) {
1939 target_size = bytes_allocated + max_free_;
1940 } else if (target_size < bytes_allocated + min_free_) {
1941 target_size = bytes_allocated + min_free_;
1942 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001943 native_need_to_run_finalization_ = true;
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001944 next_gc_type_ = collector::kGcTypeSticky;
1945 } else {
1946 // Based on how close the current heap size is to the target size, decide
1947 // whether or not to do a partial or sticky GC next.
1948 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1949 next_gc_type_ = collector::kGcTypeSticky;
1950 } else {
1951 next_gc_type_ = collector::kGcTypePartial;
1952 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001953
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001954 // If we have freed enough memory, shrink the heap back down.
1955 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1956 target_size = bytes_allocated + max_free_;
1957 } else {
1958 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1959 }
1960 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001961
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001962 if (!ignore_max_footprint_) {
1963 SetIdealFootprint(target_size);
1964
1965 if (concurrent_gc_) {
1966 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001967 // Calculate the estimated GC duration.
1968 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1969 // Estimate how many remaining bytes we will have when we need to start the next GC.
1970 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
1971 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
1972 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1973 // A never going to happen situation that from the estimated allocation rate we will exceed
1974 // the applications entire footprint with the given estimated allocation rate. Schedule
1975 // another GC straight away.
1976 concurrent_start_bytes_ = bytes_allocated;
1977 } else {
1978 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1979 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1980 // right away.
1981 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
1982 }
1983 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1984 DCHECK_LE(max_allowed_footprint_, growth_limit_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001985 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001986 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001987}
1988
jeffhaoc1160702011-10-27 15:48:45 -07001989void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08001990 growth_limit_ = capacity_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001991 non_moving_space_->ClearGrowthLimit();
jeffhaoc1160702011-10-27 15:48:45 -07001992}
1993
Elliott Hughesadb460d2011-10-05 17:02:34 -07001994void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001995 MemberOffset reference_queue_offset,
1996 MemberOffset reference_queueNext_offset,
1997 MemberOffset reference_pendingNext_offset,
1998 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001999 reference_referent_offset_ = reference_referent_offset;
2000 reference_queue_offset_ = reference_queue_offset;
2001 reference_queueNext_offset_ = reference_queueNext_offset;
2002 reference_pendingNext_offset_ = reference_pendingNext_offset;
2003 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
2004 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2005 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
2006 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
2007 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
2008 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
2009}
2010
Mathieu Chartier590fee92013-09-13 13:46:47 -07002011void Heap::SetReferenceReferent(mirror::Object* reference, mirror::Object* referent) {
2012 DCHECK(reference != NULL);
2013 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2014 reference->SetFieldObject(reference_referent_offset_, referent, true);
2015}
2016
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002017mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002018 DCHECK(reference != NULL);
2019 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002020 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07002021}
2022
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002023void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002024 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08002025 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002026 ArgArray arg_array(NULL, 0);
2027 arg_array.Append(reinterpret_cast<uint32_t>(object));
2028 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07002029 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002030}
2031
Mathieu Chartier590fee92013-09-13 13:46:47 -07002032void Heap::PrintReferenceQueue(std::ostream& os, mirror::Object** queue) {
2033 os << "Refernece queue " << queue << "\n";
2034 if (queue != nullptr) {
2035 mirror::Object* list = *queue;
2036 if (list != nullptr) {
2037 mirror::Object* cur = list;
2038 do {
2039 mirror::Object* pending_next =
2040 cur->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false);
2041 os << "PendingNext=" << pending_next;
2042 if (cur->GetClass()->IsFinalizerReferenceClass()) {
2043 os << " Zombie=" <<
2044 cur->GetFieldObject<mirror::Object*>(finalizer_reference_zombie_offset_, false);
2045 }
2046 os << "\n";
2047 cur = pending_next;
2048 } while (cur != list);
2049 }
2050 }
2051}
2052
Mathieu Chartier39e32612013-11-12 16:28:05 -08002053void Heap::EnqueueClearedReferences() {
2054 if (!cleared_references_.IsEmpty()) {
Ian Rogers64b6d142012-10-29 16:34:15 -07002055 // When a runtime isn't started there are no reference queues to care about so ignore.
2056 if (LIKELY(Runtime::Current()->IsStarted())) {
2057 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08002058 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002059 ArgArray arg_array(NULL, 0);
Mathieu Chartier39e32612013-11-12 16:28:05 -08002060 arg_array.Append(reinterpret_cast<uint32_t>(cleared_references_.GetList()));
Jeff Hao5d917302013-02-27 17:57:33 -08002061 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07002062 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07002063 }
Mathieu Chartier39e32612013-11-12 16:28:05 -08002064 cleared_references_.Clear();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002065 }
2066}
2067
Ian Rogers1f539342012-10-03 21:09:42 -07002068void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07002069 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07002070 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08002071 DCHECK(concurrent_gc_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002072 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self) ||
2073 self->IsHandlingStackOverflow()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002074 return;
2075 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002076 // We already have a request pending, no reason to start more until we update
2077 // concurrent_start_bytes_.
2078 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers120f1c72012-09-28 17:17:10 -07002079 JNIEnv* env = self->GetJniEnv();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002080 DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2081 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002082 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2083 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002084 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002085}
2086
Ian Rogers81d425b2012-09-27 16:03:43 -07002087void Heap::ConcurrentGC(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002088 if (Runtime::Current()->IsShuttingDown(self)) {
2089 return;
Mathieu Chartier2542d662012-06-21 17:14:11 -07002090 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002091 // Wait for any GCs currently running to finish.
Mathieu Chartier590fee92013-09-13 13:46:47 -07002092 if (WaitForGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierf9ed0d32013-11-21 16:42:47 -08002093 // If the we can't run the GC type we wanted to run, find the next appropriate one and try that
2094 // instead. E.g. can't do partial, so do full instead.
2095 if (CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false) ==
2096 collector::kGcTypeNone) {
2097 for (collector::GcType gc_type : gc_plan_) {
2098 // Attempt to run the collector, if we succeed, we are done.
2099 if (gc_type > next_gc_type_ &&
2100 CollectGarbageInternal(gc_type, kGcCauseBackground, false) != collector::kGcTypeNone) {
2101 break;
2102 }
2103 }
2104 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07002105 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002106}
2107
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002108void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08002109 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
2110 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
2111 // a space it will hold its lock and can become a cause of jank.
2112 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
2113 // forking.
2114
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002115 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
2116 // because that only marks object heads, so a large array looks like lots of empty space. We
2117 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
2118 // to utilization (which is probably inversely proportional to how much benefit we can expect).
2119 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
2120 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08002121 uint64_t ms_time = MilliTime();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002122 // Don't bother trimming the alloc space if a heap trim occurred in the last two seconds.
2123 if (ms_time - last_trim_time_ms_ < 2 * 1000) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002124 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002125 }
Ian Rogers120f1c72012-09-28 17:17:10 -07002126
2127 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002128 Runtime* runtime = Runtime::Current();
2129 if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self)) {
2130 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
2131 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
2132 // as we don't hold the lock while requesting the trim).
2133 return;
Ian Rogerse1d490c2012-02-03 09:09:07 -08002134 }
Ian Rogers48931882013-01-22 14:35:16 -08002135
Ian Rogers1d54e732013-05-02 21:10:01 -07002136 last_trim_time_ms_ = ms_time;
Mathieu Chartierc39e3422013-08-07 16:41:36 -07002137 ListenForProcessStateChange();
2138
2139 // Trim only if we do not currently care about pause times.
2140 if (!care_about_pause_times_) {
2141 JNIEnv* env = self->GetJniEnv();
2142 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
2143 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
2144 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2145 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
2146 CHECK(!env->ExceptionCheck());
2147 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002148}
2149
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002150void Heap::RevokeThreadLocalBuffers(Thread* thread) {
2151 non_moving_space_->RevokeThreadLocalBuffers(thread);
2152}
2153
2154void Heap::RevokeAllThreadLocalBuffers() {
2155 non_moving_space_->RevokeAllThreadLocalBuffers();
2156}
2157
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002158bool Heap::IsGCRequestPending() const {
2159 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
2160}
2161
Mathieu Chartier590fee92013-09-13 13:46:47 -07002162void Heap::RunFinalization(JNIEnv* env) {
2163 // Can't do this in WellKnownClasses::Init since System is not properly set up at that point.
2164 if (WellKnownClasses::java_lang_System_runFinalization == nullptr) {
2165 CHECK(WellKnownClasses::java_lang_System != nullptr);
2166 WellKnownClasses::java_lang_System_runFinalization =
2167 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
2168 CHECK(WellKnownClasses::java_lang_System_runFinalization != nullptr);
2169 }
2170 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
2171 WellKnownClasses::java_lang_System_runFinalization);
2172}
2173
Ian Rogers1eb512d2013-10-18 15:42:20 -07002174void Heap::RegisterNativeAllocation(JNIEnv* env, int bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002175 Thread* self = ThreadForEnv(env);
2176 if (native_need_to_run_finalization_) {
2177 RunFinalization(env);
2178 UpdateMaxNativeFootprint();
2179 native_need_to_run_finalization_ = false;
2180 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002181 // Total number of native bytes allocated.
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002182 native_bytes_allocated_.fetch_add(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002183 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002184 collector::GcType gc_type = have_zygote_space_ ? collector::kGcTypePartial :
2185 collector::kGcTypeFull;
2186
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002187 // The second watermark is higher than the gc watermark. If you hit this it means you are
2188 // allocating native objects faster than the GC can keep up with.
2189 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002190 if (WaitForGcToComplete(self) != collector::kGcTypeNone) {
2191 // Just finished a GC, attempt to run finalizers.
2192 RunFinalization(env);
2193 CHECK(!env->ExceptionCheck());
2194 }
2195 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
2196 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002197 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002198 RunFinalization(env);
2199 native_need_to_run_finalization_ = false;
2200 CHECK(!env->ExceptionCheck());
2201 }
2202 // We have just run finalizers, update the native watermark since it is very likely that
2203 // finalizers released native managed allocations.
2204 UpdateMaxNativeFootprint();
2205 } else if (!IsGCRequestPending()) {
2206 if (concurrent_gc_) {
2207 RequestConcurrentGC(self);
2208 } else {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002209 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002210 }
2211 }
2212 }
2213}
2214
Ian Rogers1eb512d2013-10-18 15:42:20 -07002215void Heap::RegisterNativeFree(JNIEnv* env, int bytes) {
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002216 int expected_size, new_size;
2217 do {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002218 expected_size = native_bytes_allocated_.load();
2219 new_size = expected_size - bytes;
2220 if (UNLIKELY(new_size < 0)) {
2221 ScopedObjectAccess soa(env);
2222 env->ThrowNew(WellKnownClasses::java_lang_RuntimeException,
2223 StringPrintf("Attempted to free %d native bytes with only %d native bytes "
2224 "registered as allocated", bytes, expected_size).c_str());
2225 break;
2226 }
Mathieu Chartier4b95e8f2013-07-15 16:32:50 -07002227 } while (!native_bytes_allocated_.compare_and_swap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002228}
2229
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002230int64_t Heap::GetTotalMemory() const {
2231 int64_t ret = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002232 for (const auto& space : continuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002233 // Currently don't include the image space.
2234 if (!space->IsImageSpace()) {
2235 ret += space->Size();
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002236 }
2237 }
Mathieu Chartier02e25112013-08-14 16:14:24 -07002238 for (const auto& space : discontinuous_spaces_) {
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002239 if (space->IsLargeObjectSpace()) {
2240 ret += space->AsLargeObjectSpace()->GetBytesAllocated();
2241 }
2242 }
2243 return ret;
2244}
2245
Mathieu Chartier11409ae2013-09-23 11:49:36 -07002246void Heap::AddModUnionTable(accounting::ModUnionTable* mod_union_table) {
2247 DCHECK(mod_union_table != nullptr);
2248 mod_union_tables_.Put(mod_union_table->GetSpace(), mod_union_table);
2249}
2250
Ian Rogers1d54e732013-05-02 21:10:01 -07002251} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07002252} // namespace art