blob: 0f98116eacf604ab17aebcd2cf9dbfb0858f33a2 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro69759ea2011-07-21 18:13:35 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "heap.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070018
Mathieu Chartier752a0e62013-06-27 11:03:27 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <cutils/trace.h>
Brian Carlstrom5643b782012-02-05 12:32:53 -080021
Brian Carlstrom58ae9412011-10-04 00:56:06 -070022#include <limits>
Carl Shapiro58551df2011-07-24 03:09:51 -070023#include <vector>
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -070024#include <valgrind.h>
Carl Shapiro58551df2011-07-24 03:09:51 -070025
Mathieu Chartierb2f99362013-11-20 17:26:00 -080026#include "base/histogram-inl.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/stl_util.h"
Mathieu Chartier987ccff2013-07-08 11:05:21 -070028#include "common_throws.h"
Ian Rogers48931882013-01-22 14:35:16 -080029#include "cutils/sched_policy.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070030#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/accounting/atomic_stack.h"
32#include "gc/accounting/card_table-inl.h"
33#include "gc/accounting/heap_bitmap-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070034#include "gc/accounting/mod_union_table.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070035#include "gc/accounting/mod_union_table-inl.h"
36#include "gc/accounting/space_bitmap-inl.h"
37#include "gc/collector/mark_sweep-inl.h"
38#include "gc/collector/partial_mark_sweep.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070039#include "gc/collector/semi_space.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070040#include "gc/collector/sticky_mark_sweep.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070041#include "gc/space/bump_pointer_space.h"
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -070042#include "gc/space/dlmalloc_space-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070043#include "gc/space/image_space.h"
44#include "gc/space/large_object_space.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070045#include "gc/space/rosalloc_space-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070046#include "gc/space/space-inl.h"
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070047#include "heap-inl.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070048#include "image.h"
Jeff Hao5d917302013-02-27 17:57:33 -080049#include "invoke_arg_array_builder.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070050#include "mirror/art_field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "mirror/object.h"
53#include "mirror/object-inl.h"
54#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080055#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080056#include "os.h"
Mathieu Chartier0de9f732013-11-22 17:58:48 -080057#include "runtime.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070058#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070059#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070060#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070061#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070062#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070063#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070064
65namespace art {
Mathieu Chartier50482232013-11-21 11:48:14 -080066
67extern void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator);
68
Ian Rogers1d54e732013-05-02 21:10:01 -070069namespace gc {
Carl Shapiro69759ea2011-07-21 18:13:35 -070070
Mathieu Chartier720ef762013-08-17 14:46:54 -070071static constexpr bool kGCALotMode = false;
72static constexpr size_t kGcAlotInterval = KB;
Ian Rogers1d54e732013-05-02 21:10:01 -070073// Minimum amount of remaining bytes before a concurrent GC is triggered.
Mathieu Chartier720ef762013-08-17 14:46:54 -070074static constexpr size_t kMinConcurrentRemainingBytes = 128 * KB;
Mathieu Chartier0051be62012-10-12 17:47:11 -070075
Mathieu Chartier0051be62012-10-12 17:47:11 -070076Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070077 double target_utilization, size_t capacity, const std::string& image_file_name,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080078 CollectorType post_zygote_collector_type, CollectorType background_collector_type,
79 size_t parallel_gc_threads, size_t conc_gc_threads, bool low_memory_mode,
80 size_t long_pause_log_threshold, size_t long_gc_log_threshold,
81 bool ignore_max_footprint, bool use_tlab)
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080082 : non_moving_space_(nullptr),
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080083 rosalloc_space_(nullptr),
84 dlmalloc_space_(nullptr),
Mathieu Chartierfc5b5282014-01-09 16:15:36 -080085 main_space_(nullptr),
Mathieu Chartier7bf82af2013-12-06 16:51:45 -080086 concurrent_gc_(false),
87 collector_type_(kCollectorTypeNone),
88 post_zygote_collector_type_(post_zygote_collector_type),
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080089 background_collector_type_(background_collector_type),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070090 parallel_gc_threads_(parallel_gc_threads),
91 conc_gc_threads_(conc_gc_threads),
Mathieu Chartiere0a53e92013-08-05 10:17:40 -070092 low_memory_mode_(low_memory_mode),
Mathieu Chartier2775ee42013-08-20 17:43:47 -070093 long_pause_log_threshold_(long_pause_log_threshold),
94 long_gc_log_threshold_(long_gc_log_threshold),
95 ignore_max_footprint_(ignore_max_footprint),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070096 have_zygote_space_(false),
Mathieu Chartier39e32612013-11-12 16:28:05 -080097 soft_reference_queue_(this),
98 weak_reference_queue_(this),
99 finalizer_reference_queue_(this),
100 phantom_reference_queue_(this),
101 cleared_references_(this),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800102 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -0700103 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700104 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800105 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700106 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700107 max_allowed_footprint_(initial_size),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700108 native_footprint_gc_watermark_(initial_size),
109 native_footprint_limit_(2 * initial_size),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700110 native_need_to_run_finalization_(false),
Mathieu Chartierca2a24d2013-11-25 15:12:12 -0800111 // Initially assume we perceive jank in case the process state is never updated.
112 process_state_(kProcessStateJankPerceptible),
Mathieu Chartier7bf82af2013-12-06 16:51:45 -0800113 concurrent_start_bytes_(std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -0700114 total_bytes_freed_ever_(0),
115 total_objects_freed_ever_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800116 num_bytes_allocated_(0),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700117 native_bytes_allocated_(0),
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700118 gc_memory_overhead_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700119 verify_missing_card_marks_(false),
120 verify_system_weaks_(false),
121 verify_pre_gc_heap_(false),
122 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700123 verify_mod_union_table_(false),
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800124 min_alloc_space_size_for_sticky_gc_(1112 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700125 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700126 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800127 allocation_rate_(0),
Mathieu Chartier0418ae22013-07-31 13:35:46 -0700128 /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
129 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
130 * verification is enabled, we limit the size of allocation stacks to speed up their
131 * searching.
132 */
133 max_allocation_stack_size_(kGCALotMode ? kGcAlotInterval
Mathieu Chartier590fee92013-09-13 13:46:47 -0700134 : (kDesiredHeapVerification > kVerifyAllFast) ? KB : MB),
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800135 current_allocator_(kAllocatorTypeDlMalloc),
136 current_non_moving_allocator_(kAllocatorTypeNonMoving),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700137 bump_pointer_space_(nullptr),
138 temp_space_(nullptr),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800139 reference_referent_offset_(0),
140 reference_queue_offset_(0),
141 reference_queueNext_offset_(0),
142 reference_pendingNext_offset_(0),
143 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700144 min_free_(min_free),
145 max_free_(max_free),
146 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700147 total_wait_time_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700148 total_allocation_time_(0),
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700149 verify_object_mode_(kHeapVerificationNotPermitted),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700150 gc_disable_count_(0),
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800151 running_on_valgrind_(RUNNING_ON_VALGRIND),
152 use_tlab_(use_tlab) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800153 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800154 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700155 }
Mathieu Chartier50482232013-11-21 11:48:14 -0800156 // If we aren't the zygote, switch to the default non zygote allocator. This may update the
157 // entrypoints.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800158 if (!Runtime::Current()->IsZygote() || !kMovingCollector) {
Mathieu Chartier7bf82af2013-12-06 16:51:45 -0800159 ChangeCollector(post_zygote_collector_type_);
160 } else {
161 // We are the zygote, use bump pointer allocation + semi space collector.
162 ChangeCollector(kCollectorTypeSS);
Mathieu Chartier50482232013-11-21 11:48:14 -0800163 }
Mathieu Chartier7bf82af2013-12-06 16:51:45 -0800164
Ian Rogers1d54e732013-05-02 21:10:01 -0700165 live_bitmap_.reset(new accounting::HeapBitmap(this));
166 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Ian Rogers30fab402012-01-23 15:43:46 -0800167 // Requested begin for the alloc space, to follow the mapped image and oat files
Mathieu Chartier50482232013-11-21 11:48:14 -0800168 byte* requested_alloc_space_begin = nullptr;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800169 if (!image_file_name.empty()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700170 space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name.c_str());
Mathieu Chartier50482232013-11-21 11:48:14 -0800171 CHECK(image_space != nullptr) << "Failed to create space for " << image_file_name;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700172 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800173 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
174 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800175 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
176 CHECK_GT(oat_file_end_addr, image_space->End());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700177 if (oat_file_end_addr > requested_alloc_space_begin) {
Mathieu Chartier50482232013-11-21 11:48:14 -0800178 requested_alloc_space_begin = AlignUp(oat_file_end_addr, kPageSize);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700179 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700180 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700181 const char* name = Runtime::Current()->IsZygote() ? "zygote space" : "alloc space";
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800182 space::MallocSpace* malloc_space;
183 if (kUseRosAlloc) {
184 malloc_space = space::RosAllocSpace::Create(name, initial_size, growth_limit, capacity,
185 requested_alloc_space_begin, low_memory_mode_);
186 CHECK(malloc_space != nullptr) << "Failed to create rosalloc space";
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700187 } else {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800188 malloc_space = space::DlMallocSpace::Create(name, initial_size, growth_limit, capacity,
189 requested_alloc_space_begin);
190 CHECK(malloc_space != nullptr) << "Failed to create dlmalloc space";
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700191 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800192
Mathieu Chartier590fee92013-09-13 13:46:47 -0700193 if (kMovingCollector) {
194 // TODO: Place bump-pointer spaces somewhere to minimize size of card table.
195 // TODO: Having 3+ spaces as big as the large heap size can cause virtual memory fragmentation
196 // issues.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800197 const size_t bump_pointer_space_size = std::min(malloc_space->Capacity(), 128 * MB);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700198 bump_pointer_space_ = space::BumpPointerSpace::Create("Bump pointer space",
199 bump_pointer_space_size, nullptr);
200 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space";
201 AddSpace(bump_pointer_space_);
202 temp_space_ = space::BumpPointerSpace::Create("Bump pointer space 2", bump_pointer_space_size,
203 nullptr);
204 CHECK(temp_space_ != nullptr) << "Failed to create bump pointer space";
205 AddSpace(temp_space_);
206 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800207 non_moving_space_ = malloc_space;
208 malloc_space->SetFootprintLimit(malloc_space->Capacity());
209 AddSpace(malloc_space);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700210
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700211 // Allocate the large object space.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800212 constexpr bool kUseFreeListSpaceForLOS = false;
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700213 if (kUseFreeListSpaceForLOS) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800214 large_object_space_ = space::FreeListSpace::Create("large object space", nullptr, capacity);
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700215 } else {
216 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
217 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800218 CHECK(large_object_space_ != nullptr) << "Failed to create large object space";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700219 AddSpace(large_object_space_);
Mathieu Chartiereb5710e2013-07-25 15:19:42 -0700220
Ian Rogers1d54e732013-05-02 21:10:01 -0700221 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
Mathieu Chartier590fee92013-09-13 13:46:47 -0700222 CHECK(!continuous_spaces_.empty());
223 // Relies on the spaces being sorted.
Ian Rogers1d54e732013-05-02 21:10:01 -0700224 byte* heap_begin = continuous_spaces_.front()->Begin();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700225 byte* heap_end = continuous_spaces_.back()->Limit();
226 size_t heap_capacity = heap_end - heap_begin;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700227
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800228 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700229 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700230 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700231
Mathieu Chartier590fee92013-09-13 13:46:47 -0700232 // Card cache for now since it makes it easier for us to update the references to the copying
233 // spaces.
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700234 accounting::ModUnionTable* mod_union_table =
Mathieu Chartier590fee92013-09-13 13:46:47 -0700235 new accounting::ModUnionTableCardCache("Image mod-union table", this, GetImageSpace());
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700236 CHECK(mod_union_table != nullptr) << "Failed to create image mod-union table";
237 AddModUnionTable(mod_union_table);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700238
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700239 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700240 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800242 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700243 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700244 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
245 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
246 max_allocation_stack_size_));
247 live_stack_.reset(accounting::ObjectStack::Create("live stack",
248 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700249
Mathieu Chartier65db8802012-11-20 12:36:46 -0800250 // It's still too early to take a lock because there are no threads yet, but we can create locks
251 // now. We don't create it earlier to make it clear that you can't use locks during heap
252 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700253 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700254 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
255 *gc_complete_lock_));
Ian Rogers1d54e732013-05-02 21:10:01 -0700256 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800257 last_gc_size_ = GetBytesAllocated();
258
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700259 if (ignore_max_footprint_) {
260 SetIdealFootprint(std::numeric_limits<size_t>::max());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700261 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700262 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700263 CHECK_NE(max_allowed_footprint_, 0U);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700264
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800265 // Create our garbage collectors.
Mathieu Chartier50482232013-11-21 11:48:14 -0800266 for (size_t i = 0; i < 2; ++i) {
267 const bool concurrent = i != 0;
268 garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent));
269 garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
270 garbage_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
271 }
Mathieu Chartier50482232013-11-21 11:48:14 -0800272 if (kMovingCollector) {
273 // TODO: Clean this up.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700274 semi_space_collector_ = new collector::SemiSpace(this);
275 garbage_collectors_.push_back(semi_space_collector_);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700276 }
277
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700278 if (running_on_valgrind_) {
Ian Rogersfa824272013-11-05 16:12:57 -0800279 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700280 }
281
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800282 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800283 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700284 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700285}
286
Mathieu Chartier50482232013-11-21 11:48:14 -0800287void Heap::ChangeAllocator(AllocatorType allocator) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800288 // These two allocators are only used internally and don't have any entrypoints.
Mathieu Chartier50482232013-11-21 11:48:14 -0800289 DCHECK_NE(allocator, kAllocatorTypeLOS);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800290 DCHECK_NE(allocator, kAllocatorTypeNonMoving);
Mathieu Chartier50482232013-11-21 11:48:14 -0800291 if (current_allocator_ != allocator) {
292 current_allocator_ = allocator;
293 SetQuickAllocEntryPointsAllocator(current_allocator_);
294 Runtime::Current()->GetInstrumentation()->ResetQuickAllocEntryPoints();
295 }
296}
297
Mathieu Chartier590fee92013-09-13 13:46:47 -0700298bool Heap::IsCompilingBoot() const {
299 for (const auto& space : continuous_spaces_) {
300 if (space->IsImageSpace()) {
301 return false;
302 } else if (space->IsZygoteSpace()) {
303 return false;
304 }
305 }
306 return true;
307}
308
309bool Heap::HasImageSpace() const {
310 for (const auto& space : continuous_spaces_) {
311 if (space->IsImageSpace()) {
312 return true;
313 }
314 }
315 return false;
316}
317
318void Heap::IncrementDisableGC(Thread* self) {
319 // Need to do this holding the lock to prevent races where the GC is about to run / running when
320 // we attempt to disable it.
321 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
322 MutexLock mu(self, *gc_complete_lock_);
323 WaitForGcToCompleteLocked(self);
324 ++gc_disable_count_;
325}
326
327void Heap::DecrementDisableGC(Thread* self) {
328 MutexLock mu(self, *gc_complete_lock_);
329 CHECK_GE(gc_disable_count_, 0U);
330 --gc_disable_count_;
331}
332
Mathieu Chartierca2a24d2013-11-25 15:12:12 -0800333void Heap::UpdateProcessState(ProcessState process_state) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800334 if (process_state_ != process_state) {
335 process_state_ = process_state;
336 if (process_state_ == kProcessStateJankPerceptible) {
337 TransitionCollector(post_zygote_collector_type_);
338 } else {
339 TransitionCollector(background_collector_type_);
340 }
341 } else {
342 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
343 }
Mathieu Chartierca2a24d2013-11-25 15:12:12 -0800344}
345
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700346void Heap::CreateThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700347 const size_t num_threads = std::max(parallel_gc_threads_, conc_gc_threads_);
348 if (num_threads != 0) {
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800349 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
Mathieu Chartier94c32c52013-08-09 11:14:04 -0700350 }
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700351}
352
Mathieu Chartier590fee92013-09-13 13:46:47 -0700353void Heap::VisitObjects(ObjectVisitorCallback callback, void* arg) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700354 Thread* self = Thread::Current();
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800355 // GCs can move objects, so don't allow this.
356 const char* old_cause = self->StartAssertNoThreadSuspension("Visiting objects");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700357 if (bump_pointer_space_ != nullptr) {
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800358 // Visit objects in bump pointer space.
359 bump_pointer_space_->Walk(callback, arg);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700360 }
361 // TODO: Switch to standard begin and end to use ranged a based loop.
362 for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End();
363 it < end; ++it) {
364 mirror::Object* obj = *it;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800365 callback(obj, arg);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700366 }
367 GetLiveBitmap()->Walk(callback, arg);
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800368 self->EndAssertNoThreadSuspension(old_cause);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700369}
370
371void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800372 space::ContinuousSpace* space1 = rosalloc_space_ != nullptr ? rosalloc_space_ : non_moving_space_;
373 space::ContinuousSpace* space2 = dlmalloc_space_ != nullptr ? dlmalloc_space_ : non_moving_space_;
374 // This is just logic to handle a case of either not having a rosalloc or dlmalloc space.
375 // TODO: Generalize this to n bitmaps?
376 if (space1 == nullptr) {
377 DCHECK(space2 != nullptr);
378 space1 = space2;
379 }
380 if (space2 == nullptr) {
381 DCHECK(space1 != nullptr);
382 space2 = space1;
383 }
384 MarkAllocStack(space1->GetLiveBitmap(), space2->GetLiveBitmap(),
385 large_object_space_->GetLiveObjects(), stack);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700386}
387
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700388void Heap::DeleteThreadPool() {
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700389 thread_pool_.reset(nullptr);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700390}
391
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800392void Heap::AddSpace(space::Space* space, bool set_as_default) {
393 DCHECK(space != nullptr);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700394 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
395 if (space->IsContinuousSpace()) {
396 DCHECK(!space->IsDiscontinuousSpace());
397 space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
398 // Continuous spaces don't necessarily have bitmaps.
399 accounting::SpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
400 accounting::SpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
401 if (live_bitmap != nullptr) {
402 DCHECK(mark_bitmap != nullptr);
403 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap);
404 mark_bitmap_->AddContinuousSpaceBitmap(mark_bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700405 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700406 continuous_spaces_.push_back(continuous_space);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800407 if (set_as_default) {
408 if (continuous_space->IsDlMallocSpace()) {
409 dlmalloc_space_ = continuous_space->AsDlMallocSpace();
410 } else if (continuous_space->IsRosAllocSpace()) {
411 rosalloc_space_ = continuous_space->AsRosAllocSpace();
412 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700413 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700414 // Ensure that spaces remain sorted in increasing order of start address.
415 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(),
416 [](const space::ContinuousSpace* a, const space::ContinuousSpace* b) {
417 return a->Begin() < b->Begin();
418 });
Mathieu Chartier590fee92013-09-13 13:46:47 -0700419 } else {
420 DCHECK(space->IsDiscontinuousSpace());
421 space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
422 DCHECK(discontinuous_space->GetLiveObjects() != nullptr);
423 live_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetLiveObjects());
424 DCHECK(discontinuous_space->GetMarkObjects() != nullptr);
425 mark_bitmap_->AddDiscontinuousObjectSet(discontinuous_space->GetMarkObjects());
426 discontinuous_spaces_.push_back(discontinuous_space);
427 }
428 if (space->IsAllocSpace()) {
429 alloc_spaces_.push_back(space->AsAllocSpace());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700430 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800431}
432
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800433void Heap::RemoveSpace(space::Space* space) {
434 DCHECK(space != nullptr);
435 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
436 if (space->IsContinuousSpace()) {
437 DCHECK(!space->IsDiscontinuousSpace());
438 space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
439 // Continuous spaces don't necessarily have bitmaps.
440 accounting::SpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
441 accounting::SpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
442 if (live_bitmap != nullptr) {
443 DCHECK(mark_bitmap != nullptr);
444 live_bitmap_->RemoveContinuousSpaceBitmap(live_bitmap);
445 mark_bitmap_->RemoveContinuousSpaceBitmap(mark_bitmap);
446 }
447 auto it = std::find(continuous_spaces_.begin(), continuous_spaces_.end(), continuous_space);
448 DCHECK(it != continuous_spaces_.end());
449 continuous_spaces_.erase(it);
450 if (continuous_space == dlmalloc_space_) {
451 dlmalloc_space_ = nullptr;
452 } else if (continuous_space == rosalloc_space_) {
453 rosalloc_space_ = nullptr;
454 }
Mathieu Chartierfc5b5282014-01-09 16:15:36 -0800455 if (continuous_space == main_space_) {
456 main_space_ = nullptr;
457 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800458 } else {
459 DCHECK(space->IsDiscontinuousSpace());
460 space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
461 DCHECK(discontinuous_space->GetLiveObjects() != nullptr);
462 live_bitmap_->RemoveDiscontinuousObjectSet(discontinuous_space->GetLiveObjects());
463 DCHECK(discontinuous_space->GetMarkObjects() != nullptr);
464 mark_bitmap_->RemoveDiscontinuousObjectSet(discontinuous_space->GetMarkObjects());
465 auto it = std::find(discontinuous_spaces_.begin(), discontinuous_spaces_.end(),
466 discontinuous_space);
467 DCHECK(it != discontinuous_spaces_.end());
468 discontinuous_spaces_.erase(it);
469 }
470 if (space->IsAllocSpace()) {
471 auto it = std::find(alloc_spaces_.begin(), alloc_spaces_.end(), space->AsAllocSpace());
472 DCHECK(it != alloc_spaces_.end());
473 alloc_spaces_.erase(it);
474 }
475}
476
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700477void Heap::RegisterGCAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700478 if (this != nullptr) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800479 gc_memory_overhead_.FetchAndAdd(bytes);
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700480 }
481}
482
483void Heap::RegisterGCDeAllocation(size_t bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700484 if (this != nullptr) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800485 gc_memory_overhead_.FetchAndSub(bytes);
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700486 }
487}
488
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700489void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700490 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700491 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700492 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800493
494 // Dump cumulative loggers for each GC type.
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800495 uint64_t total_paused_time = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700496 for (const auto& collector : garbage_collectors_) {
Sameer Abu Asala8439542013-02-14 16:06:42 -0800497 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800498 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700499 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800500 const uint64_t total_ns = logger.GetTotalNs();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700501 const uint64_t total_pause_ns = collector->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800502 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
503 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
504 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Mathieu Chartierb2f99362013-11-20 17:26:00 -0800505 Histogram<uint64_t>::CumulativeData cumulative_data;
506 collector->GetPauseHistogram().CreateHistogram(&cumulative_data);
507 collector->GetPauseHistogram().PrintConfidenceIntervals(os, 0.99, cumulative_data);
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700508 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700509 << collector->GetName() << " freed: " << freed_objects
510 << " objects with total size " << PrettySize(freed_bytes) << "\n"
511 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
512 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800513 total_duration += total_ns;
514 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700515 }
516 }
517 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700518 if (total_duration != 0) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700519 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700520 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
521 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700522 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700523 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700524 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700525 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800526 size_t total_objects_allocated = GetObjectsAllocatedEver();
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700527 os << "Total number of allocations: " << total_objects_allocated << "\n";
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800528 size_t total_bytes_allocated = GetBytesAllocatedEver();
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700529 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700530 if (kMeasureAllocationTime) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700531 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
532 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
533 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700534 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700535 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
536 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700537 os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700538}
539
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800540Heap::~Heap() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700541 VLOG(heap) << "Starting ~Heap()";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700542 STLDeleteElements(&garbage_collectors_);
543 // If we don't reset then the mark stack complains in its destructor.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700544 allocation_stack_->Reset();
545 live_stack_->Reset();
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700546 STLDeleteValues(&mod_union_tables_);
Ian Rogers1d54e732013-05-02 21:10:01 -0700547 STLDeleteElements(&continuous_spaces_);
548 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700549 delete gc_complete_lock_;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700550 VLOG(heap) << "Finished ~Heap()";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700551}
552
Ian Rogers1d54e732013-05-02 21:10:01 -0700553space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
554 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700555 for (const auto& space : continuous_spaces_) {
556 if (space->Contains(obj)) {
557 return space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700558 }
559 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700560 if (!fail_ok) {
561 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
562 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700563 return NULL;
564}
565
Ian Rogers1d54e732013-05-02 21:10:01 -0700566space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
567 bool fail_ok) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700568 for (const auto& space : discontinuous_spaces_) {
569 if (space->Contains(obj)) {
570 return space;
Ian Rogers1d54e732013-05-02 21:10:01 -0700571 }
572 }
573 if (!fail_ok) {
574 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
575 }
576 return NULL;
577}
578
579space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
580 space::Space* result = FindContinuousSpaceFromObject(obj, true);
581 if (result != NULL) {
582 return result;
583 }
584 return FindDiscontinuousSpaceFromObject(obj, true);
585}
586
Mathieu Chartier39e32612013-11-12 16:28:05 -0800587struct SoftReferenceArgs {
588 RootVisitor* is_marked_callback_;
589 RootVisitor* recursive_mark_callback_;
590 void* arg_;
591};
592
593mirror::Object* Heap::PreserveSoftReferenceCallback(mirror::Object* obj, void* arg) {
594 SoftReferenceArgs* args = reinterpret_cast<SoftReferenceArgs*>(arg);
595 // TODO: Not preserve all soft references.
596 return args->recursive_mark_callback_(obj, args->arg_);
597}
598
599// Process reference class instances and schedule finalizations.
600void Heap::ProcessReferences(TimingLogger& timings, bool clear_soft,
601 RootVisitor* is_marked_callback,
602 RootVisitor* recursive_mark_object_callback, void* arg) {
603 // Unless we are in the zygote or required to clear soft references with white references,
604 // preserve some white referents.
605 if (!clear_soft && !Runtime::Current()->IsZygote()) {
606 SoftReferenceArgs soft_reference_args;
607 soft_reference_args.is_marked_callback_ = is_marked_callback;
608 soft_reference_args.recursive_mark_callback_ = recursive_mark_object_callback;
609 soft_reference_args.arg_ = arg;
610 soft_reference_queue_.PreserveSomeSoftReferences(&PreserveSoftReferenceCallback,
611 &soft_reference_args);
612 }
613 timings.StartSplit("ProcessReferences");
614 // Clear all remaining soft and weak references with white referents.
615 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
616 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
617 timings.EndSplit();
618 // Preserve all white objects with finalize methods and schedule them for finalization.
619 timings.StartSplit("EnqueueFinalizerReferences");
620 finalizer_reference_queue_.EnqueueFinalizerReferences(cleared_references_, is_marked_callback,
621 recursive_mark_object_callback, arg);
622 timings.EndSplit();
623 timings.StartSplit("ProcessReferences");
624 // Clear all f-reachable soft and weak references with white referents.
625 soft_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
626 weak_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
627 // Clear all phantom references with white referents.
628 phantom_reference_queue_.ClearWhiteReferences(cleared_references_, is_marked_callback, arg);
629 // At this point all reference queues other than the cleared references should be empty.
630 DCHECK(soft_reference_queue_.IsEmpty());
631 DCHECK(weak_reference_queue_.IsEmpty());
632 DCHECK(finalizer_reference_queue_.IsEmpty());
633 DCHECK(phantom_reference_queue_.IsEmpty());
634 timings.EndSplit();
635}
636
637bool Heap::IsEnqueued(mirror::Object* ref) const {
638 // Since the references are stored as cyclic lists it means that once enqueued, the pending next
639 // will always be non-null.
640 return ref->GetFieldObject<mirror::Object*>(GetReferencePendingNextOffset(), false) != nullptr;
641}
642
643bool Heap::IsEnqueuable(const mirror::Object* ref) const {
644 DCHECK(ref != nullptr);
645 const mirror::Object* queue =
646 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueOffset(), false);
647 const mirror::Object* queue_next =
648 ref->GetFieldObject<mirror::Object*>(GetReferenceQueueNextOffset(), false);
649 return queue != nullptr && queue_next == nullptr;
650}
651
652// Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been
653// marked, put it on the appropriate list in the heap for later processing.
654void Heap::DelayReferenceReferent(mirror::Class* klass, mirror::Object* obj,
655 RootVisitor mark_visitor, void* arg) {
656 DCHECK(klass != nullptr);
657 DCHECK(klass->IsReferenceClass());
658 DCHECK(obj != nullptr);
659 mirror::Object* referent = GetReferenceReferent(obj);
660 if (referent != nullptr) {
661 mirror::Object* forward_address = mark_visitor(referent, arg);
662 // Null means that the object is not currently marked.
663 if (forward_address == nullptr) {
664 Thread* self = Thread::Current();
665 // TODO: Remove these locks, and use atomic stacks for storing references?
666 // We need to check that the references haven't already been enqueued since we can end up
667 // scanning the same reference multiple times due to dirty cards.
668 if (klass->IsSoftReferenceClass()) {
669 soft_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
670 } else if (klass->IsWeakReferenceClass()) {
671 weak_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
672 } else if (klass->IsFinalizerReferenceClass()) {
673 finalizer_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
674 } else if (klass->IsPhantomReferenceClass()) {
675 phantom_reference_queue_.AtomicEnqueueIfNotEnqueued(self, obj);
676 } else {
677 LOG(FATAL) << "Invalid reference type " << PrettyClass(klass) << " " << std::hex
678 << klass->GetAccessFlags();
679 }
680 } else if (referent != forward_address) {
681 // Referent is already marked and we need to update it.
682 SetReferenceReferent(obj, forward_address);
683 }
684 }
685}
686
Ian Rogers1d54e732013-05-02 21:10:01 -0700687space::ImageSpace* Heap::GetImageSpace() const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700688 for (const auto& space : continuous_spaces_) {
689 if (space->IsImageSpace()) {
690 return space->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700691 }
692 }
693 return NULL;
694}
695
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700696static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700697 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700698 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700699 size_t chunk_free_bytes = chunk_size - used_bytes;
700 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
701 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700702 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700703}
704
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700705void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, bool large_object_allocation) {
706 std::ostringstream oss;
707 int64_t total_bytes_free = GetFreeMemory();
708 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
709 << " free bytes";
710 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
711 if (!large_object_allocation && total_bytes_free >= byte_count) {
712 size_t max_contiguous_allocation = 0;
713 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700714 if (space->IsMallocSpace()) {
715 // To allow the Walk/InspectAll() to exclusively-lock the mutator
716 // lock, temporarily release the shared access to the mutator
717 // lock here by transitioning to the suspended state.
718 Locks::mutator_lock_->AssertSharedHeld(self);
719 self->TransitionFromRunnableToSuspended(kSuspended);
720 space->AsMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
721 self->TransitionFromSuspendedToRunnable();
722 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700723 }
724 }
725 oss << "; failed due to fragmentation (largest possible contiguous allocation "
726 << max_contiguous_allocation << " bytes)";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700727 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700728 self->ThrowOutOfMemoryError(oss.str().c_str());
729}
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700730
Mathieu Chartier590fee92013-09-13 13:46:47 -0700731void Heap::Trim() {
732 uint64_t start_ns = NanoTime();
733 // Trim the managed spaces.
734 uint64_t total_alloc_space_allocated = 0;
735 uint64_t total_alloc_space_size = 0;
736 uint64_t managed_reclaimed = 0;
737 for (const auto& space : continuous_spaces_) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700738 if (space->IsMallocSpace() && !space->IsZygoteSpace()) {
739 gc::space::MallocSpace* alloc_space = space->AsMallocSpace();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700740 total_alloc_space_size += alloc_space->Size();
741 managed_reclaimed += alloc_space->Trim();
742 }
743 }
744 total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated() -
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800745 bump_pointer_space_->Size();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700746 const float managed_utilization = static_cast<float>(total_alloc_space_allocated) /
747 static_cast<float>(total_alloc_space_size);
748 uint64_t gc_heap_end_ns = NanoTime();
749 // Trim the native heap.
750 dlmalloc_trim(0);
751 size_t native_reclaimed = 0;
752 dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
753 uint64_t end_ns = NanoTime();
754 VLOG(heap) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
755 << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
756 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
757 << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
758 << "%.";
759}
760
761bool Heap::IsValidObjectAddress(const mirror::Object* obj) const {
762 // Note: we deliberately don't take the lock here, and mustn't test anything that would require
763 // taking the lock.
764 if (obj == nullptr) {
Elliott Hughes88c5c352012-03-15 18:49:48 -0700765 return true;
766 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700767 return IsAligned<kObjectAlignment>(obj) && IsHeapAddress(obj);
768}
769
770bool Heap::IsHeapAddress(const mirror::Object* obj) const {
771 if (kMovingCollector && bump_pointer_space_->HasAddress(obj)) {
772 return true;
Elliott Hughesa2501992011-08-26 19:39:54 -0700773 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700774 // TODO: This probably doesn't work for large objects.
775 return FindSpaceFromObject(obj, true) != nullptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700776}
777
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700778bool Heap::IsLiveObjectLocked(const mirror::Object* obj, bool search_allocation_stack,
779 bool search_live_stack, bool sorted) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700780 // Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700781 if (obj == nullptr || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700782 return false;
783 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700784 space::ContinuousSpace* c_space = FindContinuousSpaceFromObject(obj, true);
785 space::DiscontinuousSpace* d_space = NULL;
786 if (c_space != NULL) {
787 if (c_space->GetLiveBitmap()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700788 return true;
789 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700790 } else if (bump_pointer_space_->Contains(obj) || temp_space_->Contains(obj)) {
791 return true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700792 } else {
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700793 d_space = FindDiscontinuousSpaceFromObject(obj, true);
794 if (d_space != NULL) {
795 if (d_space->GetLiveObjects()->Test(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700796 return true;
797 }
798 }
799 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700800 // This is covering the allocation/live stack swapping that is done without mutators suspended.
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700801 for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
802 if (i > 0) {
803 NanoSleep(MsToNs(10));
Ian Rogers1d54e732013-05-02 21:10:01 -0700804 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700805 if (search_allocation_stack) {
806 if (sorted) {
807 if (allocation_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
808 return true;
809 }
810 } else if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj))) {
811 return true;
812 }
813 }
814
815 if (search_live_stack) {
816 if (sorted) {
817 if (live_stack_->ContainsSorted(const_cast<mirror::Object*>(obj))) {
818 return true;
819 }
820 } else if (live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
821 return true;
822 }
823 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700824 }
Mathieu Chartierf082d3c2013-07-29 17:04:07 -0700825 // We need to check the bitmaps again since there is a race where we mark something as live and
826 // then clear the stack containing it.
827 if (c_space != NULL) {
828 if (c_space->GetLiveBitmap()->Test(obj)) {
829 return true;
830 }
831 } else {
832 d_space = FindDiscontinuousSpaceFromObject(obj, true);
833 if (d_space != NULL && d_space->GetLiveObjects()->Test(obj)) {
834 return true;
835 }
836 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700837 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700838}
839
Ian Rogers04d7aa92013-03-16 14:29:17 -0700840void Heap::VerifyObjectImpl(const mirror::Object* obj) {
841 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700842 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700843 return;
844 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700845 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700846}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700847
Mathieu Chartier590fee92013-09-13 13:46:47 -0700848void Heap::DumpSpaces(std::ostream& stream) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700849 for (const auto& space : continuous_spaces_) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700850 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
851 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700852 stream << space << " " << *space << "\n";
853 if (live_bitmap != nullptr) {
854 stream << live_bitmap << " " << *live_bitmap << "\n";
855 }
856 if (mark_bitmap != nullptr) {
857 stream << mark_bitmap << " " << *mark_bitmap << "\n";
858 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700859 }
Mathieu Chartier02e25112013-08-14 16:14:24 -0700860 for (const auto& space : discontinuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700861 stream << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700862 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700863}
864
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800865void Heap::VerifyObjectBody(const mirror::Object* obj) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700866 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
867 // Ignore early dawn of the universe verifications.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800868 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.Load()) < 10 * KB)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800869 return;
870 }
871 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
872 mirror::Object::ClassOffset().Int32Value();
873 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
874 if (UNLIKELY(c == NULL)) {
875 LOG(FATAL) << "Null class in object: " << obj;
876 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
877 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
878 }
879 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
880 // Note: we don't use the accessors here as they have internal sanity checks
881 // that we don't want to run
882 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
883 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
884 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
885 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
886 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700887
Mathieu Chartier590fee92013-09-13 13:46:47 -0700888 if (verify_object_mode_ > kVerifyAllFast) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800889 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
890 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700891 if (!IsLiveObjectLocked(obj)) {
892 DumpSpaces();
893 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700894 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700895 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700896 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
897 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700898 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700899}
900
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800901void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700902 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700903 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700904}
905
906void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700907 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700908 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700909}
910
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800911void Heap::RecordFree(int64_t freed_objects, int64_t freed_bytes) {
912 DCHECK_LE(freed_bytes, num_bytes_allocated_.Load());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800913 num_bytes_allocated_.FetchAndSub(freed_bytes);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700914 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700915 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700916 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700917 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700918 // TODO: Do this concurrently.
919 RuntimeStats* global_stats = Runtime::Current()->GetStats();
920 global_stats->freed_objects += freed_objects;
921 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700922 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700923}
924
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800925mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800926 size_t alloc_size, size_t* bytes_allocated,
927 mirror::Class** klass) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800928 mirror::Object* ptr = nullptr;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800929 bool was_default_allocator = allocator == GetCurrentAllocator();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800930 DCHECK(klass != nullptr);
931 SirtRef<mirror::Class> sirt_klass(self, *klass);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700932 // The allocation failed. If the GC is running, block until it completes, and then retry the
933 // allocation.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700934 collector::GcType last_gc = WaitForGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700935 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800936 // If we were the default allocator but the allocator changed while we were suspended,
937 // abort the allocation.
938 if (was_default_allocator && allocator != GetCurrentAllocator()) {
939 *klass = sirt_klass.get();
940 return nullptr;
941 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700942 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800943 ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700944 }
945
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700946 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800947 for (collector::GcType gc_type : gc_plan_) {
948 if (ptr != nullptr) {
949 break;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700950 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800951 // Attempt to run the collector, if we succeed, re-try the allocation.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800952 bool gc_ran =
953 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false) != collector::kGcTypeNone;
954 if (was_default_allocator && allocator != GetCurrentAllocator()) {
955 *klass = sirt_klass.get();
956 return nullptr;
957 }
958 if (gc_ran) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700959 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800960 ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700961 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700962 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700963 // Allocations have failed after GCs; this is an exceptional state.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800964 if (ptr == nullptr) {
965 // Try harder, growing the heap if necessary.
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800966 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700967 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800968 if (ptr == nullptr) {
969 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
970 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
971 // VM spec requires that all SoftReferences have been collected and cleared before throwing
972 // OOME.
973 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
974 << " allocation";
975 // TODO: Run finalization, but this may cause more allocations to occur.
976 // We don't need a WaitForGcToComplete here either.
977 DCHECK(!gc_plan_.empty());
978 CollectGarbageInternal(gc_plan_.back(), kGcCauseForAlloc, true);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800979 if (was_default_allocator && allocator != GetCurrentAllocator()) {
980 *klass = sirt_klass.get();
981 return nullptr;
982 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800983 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800984 if (ptr == nullptr) {
985 ThrowOutOfMemoryError(self, alloc_size, false);
986 }
987 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800988 *klass = sirt_klass.get();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800989 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700990}
991
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700992void Heap::SetTargetHeapUtilization(float target) {
993 DCHECK_GT(target, 0.0f); // asserted in Java code
994 DCHECK_LT(target, 1.0f);
995 target_utilization_ = target;
996}
997
Ian Rogers1d54e732013-05-02 21:10:01 -0700998size_t Heap::GetObjectsAllocated() const {
999 size_t total = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001000 for (space::AllocSpace* space : alloc_spaces_) {
1001 total += space->GetObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001002 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001003 return total;
1004}
1005
Ian Rogers1d54e732013-05-02 21:10:01 -07001006size_t Heap::GetObjectsAllocatedEver() const {
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001007 return GetObjectsFreedEver() + GetObjectsAllocated();
Ian Rogers1d54e732013-05-02 21:10:01 -07001008}
1009
1010size_t Heap::GetBytesAllocatedEver() const {
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001011 return GetBytesFreedEver() + GetBytesAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001012}
1013
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001014class InstanceCounter {
1015 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001016 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001017 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001018 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001019 }
1020
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001021 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001022 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001023 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001024 if (use_is_assignable_from_) {
1025 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
1026 ++counts_[i];
1027 }
1028 } else {
1029 if (instance_class == classes_[i]) {
1030 ++counts_[i];
1031 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001032 }
1033 }
1034 }
1035
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001036 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001037 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001038 bool use_is_assignable_from_;
1039 uint64_t* const counts_;
1040
1041 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001042};
1043
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001044void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001045 uint64_t* counts) {
1046 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1047 // is empty, so the live bitmap is the only place we need to look.
1048 Thread* self = Thread::Current();
1049 self->TransitionFromRunnableToSuspended(kNative);
1050 CollectGarbage(false);
1051 self->TransitionFromSuspendedToRunnable();
1052
1053 InstanceCounter counter(classes, use_is_assignable_from, counts);
1054 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001055 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001056}
1057
Elliott Hughes3b78c942013-01-15 17:35:41 -08001058class InstanceCollector {
1059 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001060 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -08001061 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1062 : class_(c), max_count_(max_count), instances_(instances) {
1063 }
1064
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001065 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1066 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -08001067 if (instance_class == class_) {
1068 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001069 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001070 }
1071 }
1072 }
1073
1074 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001075 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001076 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001077 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001078
1079 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
1080};
1081
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001082void Heap::GetInstances(mirror::Class* c, int32_t max_count,
1083 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001084 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1085 // is empty, so the live bitmap is the only place we need to look.
1086 Thread* self = Thread::Current();
1087 self->TransitionFromRunnableToSuspended(kNative);
1088 CollectGarbage(false);
1089 self->TransitionFromSuspendedToRunnable();
1090
1091 InstanceCollector collector(c, max_count, instances);
1092 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1093 GetLiveBitmap()->Visit(collector);
1094}
1095
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001096class ReferringObjectsFinder {
1097 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001098 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1099 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001100 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1101 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1102 }
1103
1104 // For bitmap Visit.
1105 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1106 // annotalysis on visitors.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001107 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
1108 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(o), *this, true);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001109 }
1110
1111 // For MarkSweep::VisitObjectReferences.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001112 void operator()(mirror::Object* referrer, mirror::Object* object,
Brian Carlstromdf629502013-07-17 22:39:56 -07001113 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001114 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001115 referring_objects_.push_back(referrer);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001116 }
1117 }
1118
1119 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001120 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001121 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001122 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001123
1124 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1125};
1126
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001127void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1128 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001129 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1130 // is empty, so the live bitmap is the only place we need to look.
1131 Thread* self = Thread::Current();
1132 self->TransitionFromRunnableToSuspended(kNative);
1133 CollectGarbage(false);
1134 self->TransitionFromSuspendedToRunnable();
1135
1136 ReferringObjectsFinder finder(o, max_count, referring_objects);
1137 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1138 GetLiveBitmap()->Visit(finder);
1139}
1140
Ian Rogers30fab402012-01-23 15:43:46 -08001141void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001142 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1143 // last GC will not have necessarily been cleared.
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001144 CollectGarbageInternal(gc_plan_.back(), kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001145}
1146
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001147void Heap::TransitionCollector(CollectorType collector_type) {
1148 if (collector_type == collector_type_) {
1149 return;
1150 }
1151 uint64_t start_time = NanoTime();
1152 int32_t before_size = GetTotalMemory();
1153 int32_t before_allocated = num_bytes_allocated_.Load();
1154 ThreadList* tl = Runtime::Current()->GetThreadList();
1155 Thread* self = Thread::Current();
1156 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
1157 Locks::mutator_lock_->AssertNotHeld(self);
1158 // Busy wait until we can GC (StartGC can fail if we have a non-zero gc_disable_count_, this
1159 // rarely occurs however).
1160 while (!StartGC(self)) {
1161 usleep(100);
1162 }
1163 tl->SuspendAll();
1164 switch (collector_type) {
1165 case kCollectorTypeSS: {
1166 mprotect(temp_space_->Begin(), temp_space_->Capacity(), PROT_READ | PROT_WRITE);
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001167 CHECK(main_space_ != nullptr);
1168 Compact(temp_space_, main_space_);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001169 DCHECK(allocator_mem_map_.get() == nullptr);
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001170 allocator_mem_map_.reset(main_space_->ReleaseMemMap());
1171 madvise(main_space_->Begin(), main_space_->Size(), MADV_DONTNEED);
1172 RemoveSpace(main_space_);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001173 break;
1174 }
1175 case kCollectorTypeMS:
1176 // Fall through.
1177 case kCollectorTypeCMS: {
1178 if (collector_type_ == kCollectorTypeSS) {
1179 // TODO: Use mem-map from temp space?
1180 MemMap* mem_map = allocator_mem_map_.release();
1181 CHECK(mem_map != nullptr);
1182 size_t initial_size = kDefaultInitialSize;
1183 mprotect(mem_map->Begin(), initial_size, PROT_READ | PROT_WRITE);
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001184 CHECK(main_space_ == nullptr);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001185 if (kUseRosAlloc) {
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001186 main_space_ =
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001187 space::RosAllocSpace::CreateFromMemMap(mem_map, "alloc space", kPageSize,
1188 initial_size, mem_map->Size(),
1189 mem_map->Size(), low_memory_mode_);
1190 } else {
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001191 main_space_ =
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001192 space::DlMallocSpace::CreateFromMemMap(mem_map, "alloc space", kPageSize,
1193 initial_size, mem_map->Size(),
1194 mem_map->Size());
1195 }
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001196 main_space_->SetFootprintLimit(main_space_->Capacity());
1197 AddSpace(main_space_);
1198 Compact(main_space_, bump_pointer_space_);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001199 }
1200 break;
1201 }
1202 default: {
1203 LOG(FATAL) << "Attempted to transition to invalid collector type";
1204 break;
1205 }
1206 }
1207 ChangeCollector(collector_type);
1208 tl->ResumeAll();
1209 // Can't call into java code with all threads suspended.
1210 EnqueueClearedReferences();
1211 uint64_t duration = NanoTime() - start_time;
1212 GrowForUtilization(collector::kGcTypeFull, duration);
1213 FinishGC(self, collector::kGcTypeFull);
1214 int32_t after_size = GetTotalMemory();
1215 int32_t delta_size = before_size - after_size;
1216 int32_t after_allocated = num_bytes_allocated_.Load();
1217 int32_t delta_allocated = before_allocated - after_allocated;
1218 const std::string saved_bytes_str =
1219 delta_size < 0 ? "-" + PrettySize(-delta_size) : PrettySize(delta_size);
1220 LOG(INFO) << "Heap transition to " << process_state_ << " took "
1221 << PrettyDuration(duration) << " " << PrettySize(before_size) << "->"
1222 << PrettySize(after_size) << " from " << PrettySize(delta_allocated) << " to "
1223 << PrettySize(delta_size) << " saved";
1224}
1225
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001226void Heap::ChangeCollector(CollectorType collector_type) {
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001227 // TODO: Only do this with all mutators suspended to avoid races.
1228 if (collector_type != collector_type_) {
1229 collector_type_ = collector_type;
1230 gc_plan_.clear();
1231 switch (collector_type_) {
1232 case kCollectorTypeSS: {
1233 concurrent_gc_ = false;
1234 gc_plan_.push_back(collector::kGcTypeFull);
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001235 if (use_tlab_) {
1236 ChangeAllocator(kAllocatorTypeTLAB);
1237 } else {
1238 ChangeAllocator(kAllocatorTypeBumpPointer);
1239 }
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001240 break;
1241 }
1242 case kCollectorTypeMS: {
1243 concurrent_gc_ = false;
1244 gc_plan_.push_back(collector::kGcTypeSticky);
1245 gc_plan_.push_back(collector::kGcTypePartial);
1246 gc_plan_.push_back(collector::kGcTypeFull);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001247 ChangeAllocator(kUseRosAlloc ? kAllocatorTypeRosAlloc : kAllocatorTypeDlMalloc);
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001248 break;
1249 }
1250 case kCollectorTypeCMS: {
1251 concurrent_gc_ = true;
1252 gc_plan_.push_back(collector::kGcTypeSticky);
1253 gc_plan_.push_back(collector::kGcTypePartial);
1254 gc_plan_.push_back(collector::kGcTypeFull);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001255 ChangeAllocator(kUseRosAlloc ? kAllocatorTypeRosAlloc : kAllocatorTypeDlMalloc);
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001256 break;
1257 }
1258 default: {
1259 LOG(FATAL) << "Unimplemented";
1260 }
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001261 }
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001262 if (concurrent_gc_) {
1263 concurrent_start_bytes_ =
1264 std::max(max_allowed_footprint_, kMinConcurrentRemainingBytes) - kMinConcurrentRemainingBytes;
1265 } else {
1266 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001267 }
1268 }
1269}
1270
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001271static void MarkInBitmapCallback(mirror::Object* obj, void* arg) {
1272 reinterpret_cast<accounting::SpaceBitmap*>(arg)->Set(obj);
1273}
1274
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001275// Special compacting collector which uses sub-optimal bin packing to reduce zygote space size.
1276class ZygoteCompactingCollector : public collector::SemiSpace {
1277 public:
1278 explicit ZygoteCompactingCollector(gc::Heap* heap) : SemiSpace(heap, "zygote collector") {
1279 }
1280
1281 void BuildBins(space::ContinuousSpace* space) {
1282 bin_live_bitmap_ = space->GetLiveBitmap();
1283 bin_mark_bitmap_ = space->GetMarkBitmap();
1284 BinContext context;
1285 context.prev_ = reinterpret_cast<uintptr_t>(space->Begin());
1286 context.collector_ = this;
1287 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
1288 // Note: This requires traversing the space in increasing order of object addresses.
1289 bin_live_bitmap_->Walk(Callback, reinterpret_cast<void*>(&context));
1290 // Add the last bin which spans after the last object to the end of the space.
1291 AddBin(reinterpret_cast<uintptr_t>(space->End()) - context.prev_, context.prev_);
1292 }
1293
1294 private:
1295 struct BinContext {
1296 uintptr_t prev_; // The end of the previous object.
1297 ZygoteCompactingCollector* collector_;
1298 };
1299 // Maps from bin sizes to locations.
1300 std::multimap<size_t, uintptr_t> bins_;
1301 // Live bitmap of the space which contains the bins.
1302 accounting::SpaceBitmap* bin_live_bitmap_;
1303 // Mark bitmap of the space which contains the bins.
1304 accounting::SpaceBitmap* bin_mark_bitmap_;
1305
1306 static void Callback(mirror::Object* obj, void* arg)
1307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1308 DCHECK(arg != nullptr);
1309 BinContext* context = reinterpret_cast<BinContext*>(arg);
1310 ZygoteCompactingCollector* collector = context->collector_;
1311 uintptr_t object_addr = reinterpret_cast<uintptr_t>(obj);
1312 size_t bin_size = object_addr - context->prev_;
1313 // Add the bin consisting of the end of the previous object to the start of the current object.
1314 collector->AddBin(bin_size, context->prev_);
1315 context->prev_ = object_addr + RoundUp(obj->SizeOf(), kObjectAlignment);
1316 }
1317
1318 void AddBin(size_t size, uintptr_t position) {
1319 if (size != 0) {
1320 bins_.insert(std::make_pair(size, position));
1321 }
1322 }
1323
1324 virtual bool ShouldSweepSpace(space::MallocSpace* space) const {
1325 // Don't sweep any spaces since we probably blasted the internal accounting of the free list
1326 // allocator.
1327 return false;
1328 }
1329
1330 virtual mirror::Object* MarkNonForwardedObject(mirror::Object* obj)
1331 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
1332 size_t object_size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartier5dc08a62014-01-10 10:10:23 -08001333 mirror::Object* forward_address;
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001334 // Find the smallest bin which we can move obj in.
1335 auto it = bins_.lower_bound(object_size);
1336 if (it == bins_.end()) {
1337 // No available space in the bins, place it in the target space instead (grows the zygote
1338 // space).
Mathieu Chartier5dc08a62014-01-10 10:10:23 -08001339 size_t bytes_allocated;
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001340 forward_address = to_space_->Alloc(self_, object_size, &bytes_allocated);
1341 if (to_space_live_bitmap_ != nullptr) {
1342 to_space_live_bitmap_->Set(forward_address);
1343 }
1344 } else {
1345 size_t size = it->first;
1346 uintptr_t pos = it->second;
1347 bins_.erase(it); // Erase the old bin which we replace with the new smaller bin.
1348 forward_address = reinterpret_cast<mirror::Object*>(pos);
1349 // Set the live and mark bits so that sweeping system weaks works properly.
1350 bin_live_bitmap_->Set(forward_address);
1351 bin_mark_bitmap_->Set(forward_address);
1352 DCHECK_GE(size, object_size);
1353 AddBin(size - object_size, pos + object_size); // Add a new bin with the remaining space.
1354 }
1355 // Copy the object over to its new location.
1356 memcpy(reinterpret_cast<void*>(forward_address), obj, object_size);
1357 return forward_address;
1358 }
1359};
1360
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001361void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001362 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Ian Rogers81d425b2012-09-27 16:03:43 -07001363 Thread* self = Thread::Current();
1364 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001365 // Try to see if we have any Zygote spaces.
1366 if (have_zygote_space_) {
1367 return;
1368 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001369 VLOG(heap) << "Starting PreZygoteFork";
Mathieu Chartier590fee92013-09-13 13:46:47 -07001370 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
1371 // Trim the pages at the end of the non moving space.
1372 non_moving_space_->Trim();
1373 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001374 // Change the collector to the post zygote one.
1375 ChangeCollector(post_zygote_collector_type_);
Mathieu Chartier50482232013-11-21 11:48:14 -08001376 // TODO: Delete bump_pointer_space_ and temp_pointer_space_?
Mathieu Chartier590fee92013-09-13 13:46:47 -07001377 if (semi_space_collector_ != nullptr) {
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001378 ZygoteCompactingCollector zygote_collector(this);
1379 zygote_collector.BuildBins(non_moving_space_);
Mathieu Chartier50482232013-11-21 11:48:14 -08001380 // Create a new bump pointer space which we will compact into.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001381 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1382 non_moving_space_->Limit());
1383 // Compact the bump pointer space to a new zygote bump pointer space.
1384 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001385 zygote_collector.SetFromSpace(bump_pointer_space_);
1386 zygote_collector.SetToSpace(&target_space);
1387 zygote_collector.Run(false);
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001388 CHECK(temp_space_->IsEmpty());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001389 total_objects_freed_ever_ += semi_space_collector_->GetFreedObjects();
1390 total_bytes_freed_ever_ += semi_space_collector_->GetFreedBytes();
1391 // Update the end and write out image.
1392 non_moving_space_->SetEnd(target_space.End());
1393 non_moving_space_->SetLimit(target_space.Limit());
1394 accounting::SpaceBitmap* bitmap = non_moving_space_->GetLiveBitmap();
1395 // Record the allocations in the bitmap.
Mathieu Chartier85a43c02014-01-07 17:59:00 -08001396 VLOG(heap) << "Zygote size " << non_moving_space_->Size() << " bytes";
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001397 target_space.Walk(MarkInBitmapCallback, bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001398 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001399 // Turn the current alloc space into a zygote space and obtain the new alloc space composed of
1400 // the remaining available heap memory.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001401 space::MallocSpace* zygote_space = non_moving_space_;
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001402 main_space_ = non_moving_space_->CreateZygoteSpace("alloc space", low_memory_mode_);
1403 if (main_space_->IsRosAllocSpace()) {
1404 rosalloc_space_ = main_space_->AsRosAllocSpace();
1405 } else if (main_space_->IsDlMallocSpace()) {
1406 dlmalloc_space_ = main_space_->AsDlMallocSpace();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001407 }
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001408 main_space_->SetFootprintLimit(main_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -07001409 // Change the GC retention policy of the zygote space to only collect when full.
1410 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001411 AddSpace(main_space_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001412 have_zygote_space_ = true;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001413 zygote_space->InvalidateAllocator();
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001414 // Create the zygote space mod union table.
1415 accounting::ModUnionTable* mod_union_table =
1416 new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);
1417 CHECK(mod_union_table != nullptr) << "Failed to create zygote space mod-union table";
1418 AddModUnionTable(mod_union_table);
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001419 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001420 for (const auto& collector : garbage_collectors_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001421 collector->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001422 }
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08001423 // Can't use RosAlloc for non moving space due to thread local buffers.
1424 // TODO: Non limited space for non-movable objects?
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001425 space::MallocSpace* new_non_moving_space
1426 = space::DlMallocSpace::Create("Non moving dlmalloc space", 2 * MB, 64 * MB, 64 * MB,
1427 nullptr);
1428 AddSpace(new_non_moving_space, false);
1429 CHECK(new_non_moving_space != nullptr) << "Failed to create new non-moving space";
1430 new_non_moving_space->SetFootprintLimit(new_non_moving_space->Capacity());
1431 non_moving_space_ = new_non_moving_space;
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001432}
1433
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001434void Heap::FlushAllocStack() {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001435 MarkAllocStackAsLive(allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001436 allocation_stack_->Reset();
1437}
1438
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001439void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap1,
1440 accounting::SpaceBitmap* bitmap2,
1441 accounting::SpaceSetMap* large_objects,
Ian Rogers1d54e732013-05-02 21:10:01 -07001442 accounting::ObjectStack* stack) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001443 DCHECK(bitmap1 != nullptr);
1444 DCHECK(bitmap2 != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001445 mirror::Object** limit = stack->End();
1446 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1447 const mirror::Object* obj = *it;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001448 DCHECK(obj != nullptr);
1449 if (bitmap1->HasAddress(obj)) {
1450 bitmap1->Set(obj);
1451 } else if (bitmap2->HasAddress(obj)) {
1452 bitmap2->Set(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001453 } else {
1454 large_objects->Set(obj);
1455 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001456 }
1457}
1458
Mathieu Chartier590fee92013-09-13 13:46:47 -07001459const char* PrettyCause(GcCause cause) {
1460 switch (cause) {
1461 case kGcCauseForAlloc: return "Alloc";
1462 case kGcCauseBackground: return "Background";
1463 case kGcCauseExplicit: return "Explicit";
1464 default:
1465 LOG(FATAL) << "Unreachable";
1466 }
1467 return "";
1468}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001469
Mathieu Chartier590fee92013-09-13 13:46:47 -07001470void Heap::SwapSemiSpaces() {
1471 // Swap the spaces so we allocate into the space which we just evacuated.
1472 std::swap(bump_pointer_space_, temp_space_);
1473}
1474
1475void Heap::Compact(space::ContinuousMemMapAllocSpace* target_space,
1476 space::ContinuousMemMapAllocSpace* source_space) {
1477 CHECK(kMovingCollector);
Mathieu Chartier50482232013-11-21 11:48:14 -08001478 CHECK_NE(target_space, source_space) << "In-place compaction currently unsupported";
Mathieu Chartier590fee92013-09-13 13:46:47 -07001479 if (target_space != source_space) {
1480 semi_space_collector_->SetFromSpace(source_space);
1481 semi_space_collector_->SetToSpace(target_space);
1482 semi_space_collector_->Run(false);
1483 }
1484}
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001485
Ian Rogers1d54e732013-05-02 21:10:01 -07001486collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1487 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001488 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001489 Runtime* runtime = Runtime::Current();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001490 // If the heap can't run the GC, silently fail and return that no GC was run.
1491 switch (gc_type) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001492 case collector::kGcTypePartial: {
1493 if (!have_zygote_space_) {
1494 return collector::kGcTypeNone;
1495 }
1496 break;
1497 }
1498 default: {
1499 // Other GC types don't have any special cases which makes them not runnable. The main case
1500 // here is full GC.
1501 }
1502 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001503 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001504 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers120f1c72012-09-28 17:17:10 -07001505 if (self->IsHandlingStackOverflow()) {
1506 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1507 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001508 gc_complete_lock_->AssertNotHeld(self);
1509 if (!StartGC(self)) {
1510 return collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001511 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001512 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
1513 ++runtime->GetStats()->gc_for_alloc_count;
1514 ++self->GetStats()->gc_for_alloc_count;
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001515 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001516 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001517 uint64_t gc_start_size = GetBytesAllocated();
1518 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001519 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001520 // Back to back GCs can cause 0 ms of wait time in between GC invocations.
1521 if (LIKELY(ms_delta != 0)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001522 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001523 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1524 }
1525
Ian Rogers1d54e732013-05-02 21:10:01 -07001526 DCHECK_LT(gc_type, collector::kGcTypeMax);
1527 DCHECK_NE(gc_type, collector::kGcTypeNone);
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001528
Mathieu Chartier590fee92013-09-13 13:46:47 -07001529 collector::GarbageCollector* collector = nullptr;
Mathieu Chartier50482232013-11-21 11:48:14 -08001530 // TODO: Clean this up.
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001531 if (collector_type_ == kCollectorTypeSS) {
1532 DCHECK(current_allocator_ == kAllocatorTypeBumpPointer ||
1533 current_allocator_ == kAllocatorTypeTLAB);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001534 gc_type = semi_space_collector_->GetGcType();
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001535 CHECK(temp_space_->IsEmpty());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001536 semi_space_collector_->SetFromSpace(bump_pointer_space_);
1537 semi_space_collector_->SetToSpace(temp_space_);
1538 mprotect(temp_space_->Begin(), temp_space_->Capacity(), PROT_READ | PROT_WRITE);
Mathieu Chartier50482232013-11-21 11:48:14 -08001539 collector = semi_space_collector_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001540 gc_type = collector::kGcTypeFull;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001541 } else if (current_allocator_ == kAllocatorTypeRosAlloc ||
1542 current_allocator_ == kAllocatorTypeDlMalloc) {
Mathieu Chartier50482232013-11-21 11:48:14 -08001543 for (const auto& cur_collector : garbage_collectors_) {
1544 if (cur_collector->IsConcurrent() == concurrent_gc_ &&
1545 cur_collector->GetGcType() == gc_type) {
1546 collector = cur_collector;
1547 break;
1548 }
1549 }
1550 } else {
1551 LOG(FATAL) << "Invalid current allocator " << current_allocator_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001552 }
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08001553 CHECK(collector != nullptr)
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001554 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1555 << " and type=" << gc_type;
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001556
Mathieu Chartier590fee92013-09-13 13:46:47 -07001557 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), collector->GetName()).c_str());
1558
1559 collector->Run(clear_soft_references);
Ian Rogers1d54e732013-05-02 21:10:01 -07001560 total_objects_freed_ever_ += collector->GetFreedObjects();
1561 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001562
Mathieu Chartier39e32612013-11-12 16:28:05 -08001563 // Enqueue cleared references.
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001564 Locks::mutator_lock_->AssertNotHeld(self);
Mathieu Chartier39e32612013-11-12 16:28:05 -08001565 EnqueueClearedReferences();
1566
Mathieu Chartier590fee92013-09-13 13:46:47 -07001567 // Grow the heap so that we know when to perform the next GC.
1568 GrowForUtilization(gc_type, collector->GetDurationNs());
1569
Mathieu Chartierca2a24d2013-11-25 15:12:12 -08001570 if (CareAboutPauseTimes()) {
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001571 const size_t duration = collector->GetDurationNs();
1572 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1573 // GC for alloc pauses the allocating thread, so consider it as a pause.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001574 bool was_slow = duration > long_gc_log_threshold_ ||
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001575 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001576 if (!was_slow) {
1577 for (uint64_t pause : pauses) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001578 was_slow = was_slow || pause > long_pause_log_threshold_;
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001579 }
1580 }
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001581 if (was_slow) {
1582 const size_t percent_free = GetPercentFree();
1583 const size_t current_heap_size = GetBytesAllocated();
1584 const size_t total_memory = GetTotalMemory();
1585 std::ostringstream pause_string;
1586 for (size_t i = 0; i < pauses.size(); ++i) {
1587 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1588 << ((i != pauses.size() - 1) ? ", " : "");
1589 }
1590 LOG(INFO) << gc_cause << " " << collector->GetName()
1591 << " GC freed " << collector->GetFreedObjects() << "("
1592 << PrettySize(collector->GetFreedBytes()) << ") AllocSpace objects, "
1593 << collector->GetFreedLargeObjects() << "("
1594 << PrettySize(collector->GetFreedLargeObjectBytes()) << ") LOS objects, "
1595 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1596 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1597 << " total " << PrettyDuration((duration / 1000) * 1000);
1598 if (VLOG_IS_ON(heap)) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001599 LOG(INFO) << Dumpable<TimingLogger>(collector->GetTimings());
Mathieu Chartiere53225c2013-08-19 10:59:11 -07001600 }
1601 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001602 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001603 FinishGC(self, gc_type);
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001604 ATRACE_END();
Anwar Ghuloum4446ab92013-08-09 21:17:25 -07001605
1606 // Inform DDMS that a GC completed.
Ian Rogers15bf2d32012-08-28 17:33:04 -07001607 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001608 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001609}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001610
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001611bool Heap::StartGC(Thread* self) {
1612 MutexLock mu(self, *gc_complete_lock_);
1613 // Ensure there is only one GC at a time.
1614 WaitForGcToCompleteLocked(self);
1615 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1616 // Not doing at the moment to ensure soft references are cleared.
1617 // GC can be disabled if someone has a used GetPrimitiveArrayCritical.
1618 if (gc_disable_count_ != 0) {
1619 LOG(WARNING) << "Skipping GC due to disable count " << gc_disable_count_;
1620 return false;
1621 }
1622 is_gc_running_ = true;
1623 return true;
1624}
1625
1626void Heap::FinishGC(Thread* self, collector::GcType gc_type) {
1627 MutexLock mu(self, *gc_complete_lock_);
1628 is_gc_running_ = false;
1629 last_gc_type_ = gc_type;
1630 // Wake anyone who may have been waiting for the GC to complete.
1631 gc_complete_cond_->Broadcast(self);
1632}
1633
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001634static mirror::Object* RootMatchesObjectVisitor(mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001635 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001636 if (root == obj) {
1637 LOG(INFO) << "Object " << obj << " is a root";
1638 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001639 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001640}
1641
1642class ScanVisitor {
1643 public:
Brian Carlstromdf629502013-07-17 22:39:56 -07001644 void operator()(const mirror::Object* obj) const {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001645 LOG(ERROR) << "Would have rescanned object " << obj;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001646 }
1647};
1648
Ian Rogers1d54e732013-05-02 21:10:01 -07001649// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001650class VerifyReferenceVisitor {
1651 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001652 explicit VerifyReferenceVisitor(Heap* heap)
Ian Rogers1d54e732013-05-02 21:10:01 -07001653 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001654 : heap_(heap), failed_(false) {}
Ian Rogers1d54e732013-05-02 21:10:01 -07001655
1656 bool Failed() const {
1657 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001658 }
1659
1660 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001661 // analysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001662 void operator()(const mirror::Object* obj, const mirror::Object* ref,
1663 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001664 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001665 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001666 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1667 accounting::CardTable* card_table = heap_->GetCardTable();
1668 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1669 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001670 if (!failed_) {
1671 // Print message on only on first failure to prevent spam.
1672 LOG(ERROR) << "!!!!!!!!!!!!!!Heap corruption detected!!!!!!!!!!!!!!!!!!!";
1673 failed_ = true;
1674 }
1675 if (obj != nullptr) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001676 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001677 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset "
1678 << offset << "\n card value = " << static_cast<int>(*card_addr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001679 if (heap_->IsValidObjectAddress(obj->GetClass())) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001680 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1681 } else {
1682 LOG(ERROR) << "Object " << obj << " class(" << obj->GetClass() << ") not a heap address";
1683 }
1684
1685 // Attmept to find the class inside of the recently freed objects.
1686 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07001687 if (ref_space != nullptr && ref_space->IsMallocSpace()) {
1688 space::MallocSpace* space = ref_space->AsMallocSpace();
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001689 mirror::Class* ref_class = space->FindRecentFreedObject(ref);
1690 if (ref_class != nullptr) {
1691 LOG(ERROR) << "Reference " << ref << " found as a recently freed object with class "
1692 << PrettyClass(ref_class);
1693 } else {
1694 LOG(ERROR) << "Reference " << ref << " not found as a recently freed object";
1695 }
1696 }
1697
Mathieu Chartier590fee92013-09-13 13:46:47 -07001698 if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001699 ref->GetClass()->IsClass()) {
1700 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1701 } else {
1702 LOG(ERROR) << "Ref " << ref << " class(" << ref->GetClass()
1703 << ") is not a valid heap address";
1704 }
1705
Ian Rogers1d54e732013-05-02 21:10:01 -07001706 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1707 void* cover_begin = card_table->AddrFromCard(card_addr);
1708 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1709 accounting::CardTable::kCardSize);
1710 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1711 << "-" << cover_end;
1712 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001713
Ian Rogers1d54e732013-05-02 21:10:01 -07001714 // Print out how the object is live.
1715 if (bitmap != NULL && bitmap->Test(obj)) {
1716 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1717 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001718 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001719 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1720 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001721 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001722 LOG(ERROR) << "Object " << obj << " found in live stack";
1723 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001724 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1725 LOG(ERROR) << "Ref " << ref << " found in allocation stack";
1726 }
1727 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1728 LOG(ERROR) << "Ref " << ref << " found in live stack";
1729 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001730 // Attempt to see if the card table missed the reference.
1731 ScanVisitor scan_visitor;
1732 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1733 card_table->Scan(bitmap, byte_cover_begin,
Mathieu Chartier184e3222013-08-03 14:02:57 -07001734 byte_cover_begin + accounting::CardTable::kCardSize, scan_visitor);
Ian Rogers1d54e732013-05-02 21:10:01 -07001735
1736 // Search to see if any of the roots reference our object.
1737 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1738 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1739
1740 // Search to see if any of the roots reference our reference.
1741 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1742 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1743 } else {
1744 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001745 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001746 }
1747 }
1748
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001749 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001750 return heap_->IsLiveObjectLocked(obj, true, false, true);
Ian Rogers1d54e732013-05-02 21:10:01 -07001751 }
1752
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001753 static mirror::Object* VerifyRoots(mirror::Object* root, void* arg) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001754 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001755 (*visitor)(nullptr, root, MemberOffset(0), true);
1756 return root;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001757 }
1758
1759 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001760 Heap* const heap_;
1761 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001762};
1763
Ian Rogers1d54e732013-05-02 21:10:01 -07001764// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001765class VerifyObjectVisitor {
1766 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001767 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {}
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001768
Mathieu Chartier590fee92013-09-13 13:46:47 -07001769 void operator()(mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001770 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001771 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1772 // be live or else how did we find it in the live bitmap?
1773 VerifyReferenceVisitor visitor(heap_);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001774 // The class doesn't count as a reference but we should verify it anyways.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001775 collector::MarkSweep::VisitObjectReferences(obj, visitor, true);
1776 if (obj->GetClass()->IsReferenceClass()) {
1777 visitor(obj, heap_->GetReferenceReferent(obj), MemberOffset(0), false);
1778 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001779 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001780 }
1781
Mathieu Chartier590fee92013-09-13 13:46:47 -07001782 static void VisitCallback(mirror::Object* obj, void* arg)
1783 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1784 VerifyObjectVisitor* visitor = reinterpret_cast<VerifyObjectVisitor*>(arg);
1785 visitor->operator()(obj);
1786 }
1787
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001788 bool Failed() const {
1789 return failed_;
1790 }
1791
1792 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001793 Heap* const heap_;
1794 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001795};
1796
1797// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001798bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001799 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001800 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001801 allocation_stack_->Sort();
1802 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001803 VerifyObjectVisitor visitor(this);
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001804 // Verify objects in the allocation stack since these will be objects which were:
1805 // 1. Allocated prior to the GC (pre GC verification).
1806 // 2. Allocated during the GC (pre sweep GC verification).
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001807 // We don't want to verify the objects in the live stack since they themselves may be
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001808 // pointing to dead objects if they are not reachable.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001809 VisitObjects(VerifyObjectVisitor::VisitCallback, &visitor);
1810 // Verify the roots:
1811 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001812 if (visitor.Failed()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07001813 // Dump mod-union tables.
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001814 for (const auto& table_pair : mod_union_tables_) {
1815 accounting::ModUnionTable* mod_union_table = table_pair.second;
1816 mod_union_table->Dump(LOG(ERROR) << mod_union_table->GetName() << ": ");
1817 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001818 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001819 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001820 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001821 return true;
1822}
1823
1824class VerifyReferenceCardVisitor {
1825 public:
1826 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1827 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1828 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001829 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001830 }
1831
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001832 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1833 // annotalysis on visitors.
Brian Carlstromdf629502013-07-17 22:39:56 -07001834 void operator()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1835 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001836 // Filter out class references since changing an object's class does not mark the card as dirty.
1837 // Also handles large objects, since the only reference they hold is a class reference.
1838 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001839 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001840 // If the object is not dirty and it is referencing something in the live stack other than
1841 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001842 if (!card_table->AddrIsInCardTable(obj)) {
1843 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1844 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001845 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001846 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1847 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001848 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierf082d3c2013-07-29 17:04:07 -07001849 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(ref))) {
1850 if (live_stack->ContainsSorted(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001851 LOG(ERROR) << "Object " << obj << " found in live stack";
1852 }
1853 if (heap_->GetLiveBitmap()->Test(obj)) {
1854 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1855 }
1856 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1857 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1858
1859 // Print which field of the object is dead.
1860 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001861 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001862 CHECK(klass != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001863 const mirror::ObjectArray<mirror::ArtField>* fields = is_static ? klass->GetSFields()
1864 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001865 CHECK(fields != NULL);
1866 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001867 const mirror::ArtField* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001868 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1869 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1870 << PrettyField(cur);
1871 break;
1872 }
1873 }
1874 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001875 const mirror::ObjectArray<mirror::Object>* object_array =
1876 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001877 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1878 if (object_array->Get(i) == ref) {
1879 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1880 }
1881 }
1882 }
1883
1884 *failed_ = true;
1885 }
1886 }
1887 }
1888 }
1889
1890 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001891 Heap* const heap_;
1892 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001893};
1894
1895class VerifyLiveStackReferences {
1896 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001897 explicit VerifyLiveStackReferences(Heap* heap)
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001898 : heap_(heap),
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001899 failed_(false) {}
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001900
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001901 void operator()(mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001902 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1903 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001904 collector::MarkSweep::VisitObjectReferences(const_cast<mirror::Object*>(obj), visitor, true);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001905 }
1906
1907 bool Failed() const {
1908 return failed_;
1909 }
1910
1911 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001912 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001913 bool failed_;
1914};
1915
1916bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001917 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001918
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001919 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001920 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001921 VerifyLiveStackReferences visitor(this);
1922 GetLiveBitmap()->Visit(visitor);
1923
1924 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001925 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001926 visitor(*it);
1927 }
1928
1929 if (visitor.Failed()) {
1930 DumpSpaces();
1931 return false;
1932 }
1933 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001934}
1935
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001936void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001937 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001938}
1939
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001940accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) {
1941 auto it = mod_union_tables_.find(space);
1942 if (it == mod_union_tables_.end()) {
1943 return nullptr;
1944 }
1945 return it->second;
1946}
1947
Ian Rogers5fe9af72013-11-14 00:17:20 -08001948void Heap::ProcessCards(TimingLogger& timings) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001949 // Clear cards and keep track of cards cleared in the mod-union table.
Mathieu Chartier02e25112013-08-14 16:14:24 -07001950 for (const auto& space : continuous_spaces_) {
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001951 accounting::ModUnionTable* table = FindModUnionTableFromSpace(space);
1952 if (table != nullptr) {
1953 const char* name = space->IsZygoteSpace() ? "ZygoteModUnionClearCards" :
1954 "ImageModUnionClearCards";
Ian Rogers5fe9af72013-11-14 00:17:20 -08001955 TimingLogger::ScopedSplit split(name, &timings);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001956 table->ClearCards();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001957 } else if (space->GetType() != space::kSpaceTypeBumpPointerSpace) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001958 TimingLogger::ScopedSplit split("AllocSpaceClearCards", &timings);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001959 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1960 // were dirty before the GC started.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001961 // TODO: Don't need to use atomic.
1962 // The races are we either end up with: Aged card, unaged card. Since we have the checkpoint
1963 // roots and then we scan / update mod union tables after. We will always scan either card.//
1964 // If we end up with the non aged card, we scan it it in the pause.
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001965 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001966 }
1967 }
1968}
1969
Mathieu Chartier11409ae2013-09-23 11:49:36 -07001970static mirror::Object* IdentityCallback(mirror::Object* obj, void*) {
1971 return obj;
1972}
1973
Ian Rogers1d54e732013-05-02 21:10:01 -07001974void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001975 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1976 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001977
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001978 if (verify_pre_gc_heap_) {
1979 thread_list->SuspendAll();
1980 {
1981 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1982 if (!VerifyHeapReferences()) {
1983 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1984 }
1985 }
1986 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001987 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001988
1989 // Check that all objects which reference things in the live stack are on dirty cards.
1990 if (verify_missing_card_marks_) {
1991 thread_list->SuspendAll();
1992 {
1993 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1994 SwapStacks();
1995 // Sort the live stack so that we can quickly binary search it later.
1996 if (!VerifyMissingCardMarks()) {
1997 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1998 }
1999 SwapStacks();
2000 }
2001 thread_list->ResumeAll();
2002 }
2003
2004 if (verify_mod_union_table_) {
2005 thread_list->SuspendAll();
2006 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier11409ae2013-09-23 11:49:36 -07002007 for (const auto& table_pair : mod_union_tables_) {
2008 accounting::ModUnionTable* mod_union_table = table_pair.second;
2009 mod_union_table->UpdateAndMarkReferences(IdentityCallback, nullptr);
2010 mod_union_table->Verify();
2011 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002012 thread_list->ResumeAll();
2013 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08002014}
2015
Ian Rogers1d54e732013-05-02 21:10:01 -07002016void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002017 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
2018 // reachable objects.
2019 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07002020 Thread* self = Thread::Current();
2021 CHECK_NE(self->GetState(), kRunnable);
Ian Rogers1d54e732013-05-02 21:10:01 -07002022 {
2023 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
2024 // Swapping bound bitmaps does nothing.
2025 gc->SwapBitmaps();
2026 if (!VerifyHeapReferences()) {
Mathieu Chartier0f72e412013-09-06 16:40:01 -07002027 LOG(FATAL) << "Pre sweeping " << gc->GetName() << " GC verification failed";
Ian Rogers1d54e732013-05-02 21:10:01 -07002028 }
2029 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002030 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002031 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002032}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002033
Ian Rogers1d54e732013-05-02 21:10:01 -07002034void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002035 if (verify_system_weaks_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002036 Thread* self = Thread::Current();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002037 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07002038 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08002039 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002040 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07002041}
2042
Mathieu Chartier590fee92013-09-13 13:46:47 -07002043collector::GcType Heap::WaitForGcToComplete(Thread* self) {
2044 ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
2045 MutexLock mu(self, *gc_complete_lock_);
2046 return WaitForGcToCompleteLocked(self);
2047}
2048
2049collector::GcType Heap::WaitForGcToCompleteLocked(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -07002050 collector::GcType last_gc_type = collector::kGcTypeNone;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002051 uint64_t wait_start = NanoTime();
2052 while (is_gc_running_) {
2053 ATRACE_BEGIN("GC: Wait For Completion");
2054 // We must wait, change thread state then sleep on gc_complete_cond_;
2055 gc_complete_cond_->Wait(self);
2056 last_gc_type = last_gc_type_;
Mathieu Chartier752a0e62013-06-27 11:03:27 -07002057 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002058 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07002059 uint64_t wait_time = NanoTime() - wait_start;
2060 total_wait_time_ += wait_time;
2061 if (wait_time > long_pause_log_threshold_) {
2062 LOG(INFO) << "WaitForGcToComplete blocked for " << PrettyDuration(wait_time);
2063 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07002064 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07002065}
2066
Elliott Hughesc967f782012-04-16 10:23:15 -07002067void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07002068 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002069 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07002070 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07002071}
2072
2073size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002074 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07002075}
2076
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002077void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002078 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07002079 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002080 << PrettySize(GetMaxMemory());
2081 max_allowed_footprint = GetMaxMemory();
2082 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07002083 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07002084}
2085
Mathieu Chartier590fee92013-09-13 13:46:47 -07002086bool Heap::IsMovableObject(const mirror::Object* obj) const {
2087 if (kMovingCollector) {
2088 DCHECK(!IsInTempSpace(obj));
2089 if (bump_pointer_space_->HasAddress(obj)) {
2090 return true;
2091 }
Mathieu Chartierfc5b5282014-01-09 16:15:36 -08002092 if (main_space_ != nullptr && main_space_->HasAddress(obj)) {
2093 return true;
2094 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07002095 }
2096 return false;
2097}
2098
2099bool Heap::IsInTempSpace(const mirror::Object* obj) const {
2100 if (temp_space_->HasAddress(obj) && !temp_space_->Contains(obj)) {
2101 return true;
2102 }
2103 return false;
2104}
2105
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002106void Heap::UpdateMaxNativeFootprint() {
2107 size_t native_size = native_bytes_allocated_;
2108 // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
2109 size_t target_size = native_size / GetTargetHeapUtilization();
2110 if (target_size > native_size + max_free_) {
2111 target_size = native_size + max_free_;
2112 } else if (target_size < native_size + min_free_) {
2113 target_size = native_size + min_free_;
2114 }
2115 native_footprint_gc_watermark_ = target_size;
2116 native_footprint_limit_ = 2 * target_size - native_size;
2117}
2118
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07002119void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002120 // We know what our utilization is at this moment.
2121 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08002122 const size_t bytes_allocated = GetBytesAllocated();
2123 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07002124 last_gc_time_ns_ = NanoTime();
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07002125 size_t target_size;
2126 if (gc_type != collector::kGcTypeSticky) {
2127 // Grow the heap for non sticky GC.
2128 target_size = bytes_allocated / GetTargetHeapUtilization();
2129 if (target_size > bytes_allocated + max_free_) {
2130 target_size = bytes_allocated + max_free_;
2131 } else if (target_size < bytes_allocated + min_free_) {
2132 target_size = bytes_allocated + min_free_;
2133 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07002134 native_need_to_run_finalization_ = true;
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07002135 next_gc_type_ = collector::kGcTypeSticky;
2136 } else {
2137 // Based on how close the current heap size is to the target size, decide
2138 // whether or not to do a partial or sticky GC next.
2139 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
2140 next_gc_type_ = collector::kGcTypeSticky;
2141 } else {
2142 next_gc_type_ = collector::kGcTypePartial;
2143 }
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07002144 // If we have freed enough memory, shrink the heap back down.
2145 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
2146 target_size = bytes_allocated + max_free_;
2147 } else {
2148 target_size = std::max(bytes_allocated, max_allowed_footprint_);
2149 }
2150 }
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002151 if (!ignore_max_footprint_) {
2152 SetIdealFootprint(target_size);
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08002153 if (concurrent_gc_) {
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002154 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002155 // Calculate the estimated GC duration.
2156 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
2157 // Estimate how many remaining bytes we will have when we need to start the next GC.
2158 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
2159 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
2160 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2161 // A never going to happen situation that from the estimated allocation rate we will exceed
2162 // the applications entire footprint with the given estimated allocation rate. Schedule
2163 // another GC straight away.
2164 concurrent_start_bytes_ = bytes_allocated;
2165 } else {
2166 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
2167 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
2168 // right away.
Mathieu Chartier50482232013-11-21 11:48:14 -08002169 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
2170 bytes_allocated);
Mathieu Chartier2775ee42013-08-20 17:43:47 -07002171 }
2172 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
2173 DCHECK_LE(max_allowed_footprint_, growth_limit_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08002174 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002175 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07002176}
2177
jeffhaoc1160702011-10-27 15:48:45 -07002178void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08002179 growth_limit_ = capacity_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002180 non_moving_space_->ClearGrowthLimit();
jeffhaoc1160702011-10-27 15:48:45 -07002181}
2182
Elliott Hughesadb460d2011-10-05 17:02:34 -07002183void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartier50482232013-11-21 11:48:14 -08002184 MemberOffset reference_queue_offset,
2185 MemberOffset reference_queueNext_offset,
2186 MemberOffset reference_pendingNext_offset,
2187 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002188 reference_referent_offset_ = reference_referent_offset;
2189 reference_queue_offset_ = reference_queue_offset;
2190 reference_queueNext_offset_ = reference_queueNext_offset;
2191 reference_pendingNext_offset_ = reference_pendingNext_offset;
2192 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
2193 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2194 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
2195 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
2196 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
2197 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
2198}
2199
Mathieu Chartier590fee92013-09-13 13:46:47 -07002200void Heap::SetReferenceReferent(mirror::Object* reference, mirror::Object* referent) {
2201 DCHECK(reference != NULL);
2202 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
2203 reference->SetFieldObject(reference_referent_offset_, referent, true);
2204}
2205
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002206mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002207 DCHECK(reference != NULL);
2208 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002209 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07002210}
2211
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002212void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002213 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08002214 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002215 ArgArray arg_array(NULL, 0);
2216 arg_array.Append(reinterpret_cast<uint32_t>(object));
2217 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07002218 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002219}
2220
Mathieu Chartier39e32612013-11-12 16:28:05 -08002221void Heap::EnqueueClearedReferences() {
2222 if (!cleared_references_.IsEmpty()) {
Ian Rogers64b6d142012-10-29 16:34:15 -07002223 // When a runtime isn't started there are no reference queues to care about so ignore.
2224 if (LIKELY(Runtime::Current()->IsStarted())) {
2225 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08002226 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08002227 ArgArray arg_array(NULL, 0);
Mathieu Chartier39e32612013-11-12 16:28:05 -08002228 arg_array.Append(reinterpret_cast<uint32_t>(cleared_references_.GetList()));
Jeff Hao5d917302013-02-27 17:57:33 -08002229 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07002230 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07002231 }
Mathieu Chartier39e32612013-11-12 16:28:05 -08002232 cleared_references_.Clear();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002233 }
2234}
2235
Ian Rogers1f539342012-10-03 21:09:42 -07002236void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07002237 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07002238 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002239 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self) ||
2240 self->IsHandlingStackOverflow()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002241 return;
2242 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002243 // We already have a request pending, no reason to start more until we update
2244 // concurrent_start_bytes_.
2245 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers120f1c72012-09-28 17:17:10 -07002246 JNIEnv* env = self->GetJniEnv();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002247 DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2248 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002249 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2250 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002251 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002252}
2253
Ian Rogers81d425b2012-09-27 16:03:43 -07002254void Heap::ConcurrentGC(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002255 if (Runtime::Current()->IsShuttingDown(self)) {
2256 return;
Mathieu Chartier2542d662012-06-21 17:14:11 -07002257 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08002258 // Wait for any GCs currently running to finish.
Mathieu Chartier590fee92013-09-13 13:46:47 -07002259 if (WaitForGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierf9ed0d32013-11-21 16:42:47 -08002260 // If the we can't run the GC type we wanted to run, find the next appropriate one and try that
2261 // instead. E.g. can't do partial, so do full instead.
2262 if (CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false) ==
2263 collector::kGcTypeNone) {
2264 for (collector::GcType gc_type : gc_plan_) {
2265 // Attempt to run the collector, if we succeed, we are done.
2266 if (gc_type > next_gc_type_ &&
2267 CollectGarbageInternal(gc_type, kGcCauseBackground, false) != collector::kGcTypeNone) {
2268 break;
2269 }
2270 }
2271 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07002272 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07002273}
2274
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002275void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08002276 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
2277 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
2278 // a space it will hold its lock and can become a cause of jank.
2279 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
2280 // forking.
2281
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002282 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
2283 // because that only marks object heads, so a large array looks like lots of empty space. We
2284 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
2285 // to utilization (which is probably inversely proportional to how much benefit we can expect).
2286 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
2287 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08002288 uint64_t ms_time = MilliTime();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002289 // Don't bother trimming the alloc space if a heap trim occurred in the last two seconds.
2290 if (ms_time - last_trim_time_ms_ < 2 * 1000) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07002291 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002292 }
Ian Rogers120f1c72012-09-28 17:17:10 -07002293
2294 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002295 Runtime* runtime = Runtime::Current();
2296 if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self)) {
2297 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
2298 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
2299 // as we don't hold the lock while requesting the trim).
2300 return;
Ian Rogerse1d490c2012-02-03 09:09:07 -08002301 }
Ian Rogers48931882013-01-22 14:35:16 -08002302
Ian Rogers1d54e732013-05-02 21:10:01 -07002303 last_trim_time_ms_ = ms_time;
Mathieu Chartierc39e3422013-08-07 16:41:36 -07002304
2305 // Trim only if we do not currently care about pause times.
Mathieu Chartierca2a24d2013-11-25 15:12:12 -08002306 if (!CareAboutPauseTimes()) {
Mathieu Chartierc39e3422013-08-07 16:41:36 -07002307 JNIEnv* env = self->GetJniEnv();
2308 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
2309 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
2310 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2311 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
2312 CHECK(!env->ExceptionCheck());
2313 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08002314}
2315
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002316void Heap::RevokeThreadLocalBuffers(Thread* thread) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08002317 if (rosalloc_space_ != nullptr) {
2318 rosalloc_space_->RevokeThreadLocalBuffers(thread);
2319 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -08002320 if (bump_pointer_space_ != nullptr) {
2321 bump_pointer_space_->RevokeThreadLocalBuffers(thread);
2322 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002323}
2324
2325void Heap::RevokeAllThreadLocalBuffers() {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08002326 if (rosalloc_space_ != nullptr) {
2327 rosalloc_space_->RevokeAllThreadLocalBuffers();
2328 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -08002329 if (bump_pointer_space_ != nullptr) {
2330 bump_pointer_space_->RevokeAllThreadLocalBuffers();
2331 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002332}
2333
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002334bool Heap::IsGCRequestPending() const {
2335 return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
2336}
2337
Mathieu Chartier590fee92013-09-13 13:46:47 -07002338void Heap::RunFinalization(JNIEnv* env) {
2339 // Can't do this in WellKnownClasses::Init since System is not properly set up at that point.
2340 if (WellKnownClasses::java_lang_System_runFinalization == nullptr) {
2341 CHECK(WellKnownClasses::java_lang_System != nullptr);
2342 WellKnownClasses::java_lang_System_runFinalization =
2343 CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
2344 CHECK(WellKnownClasses::java_lang_System_runFinalization != nullptr);
2345 }
2346 env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
2347 WellKnownClasses::java_lang_System_runFinalization);
2348}
2349
Ian Rogers1eb512d2013-10-18 15:42:20 -07002350void Heap::RegisterNativeAllocation(JNIEnv* env, int bytes) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002351 Thread* self = ThreadForEnv(env);
2352 if (native_need_to_run_finalization_) {
2353 RunFinalization(env);
2354 UpdateMaxNativeFootprint();
2355 native_need_to_run_finalization_ = false;
2356 }
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002357 // Total number of native bytes allocated.
Ian Rogersb122a4b2013-11-19 18:00:50 -08002358 native_bytes_allocated_.FetchAndAdd(bytes);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002359 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_gc_watermark_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002360 collector::GcType gc_type = have_zygote_space_ ? collector::kGcTypePartial :
2361 collector::kGcTypeFull;
2362
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002363 // The second watermark is higher than the gc watermark. If you hit this it means you are
2364 // allocating native objects faster than the GC can keep up with.
2365 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002366 if (WaitForGcToComplete(self) != collector::kGcTypeNone) {
2367 // Just finished a GC, attempt to run finalizers.
2368 RunFinalization(env);
2369 CHECK(!env->ExceptionCheck());
2370 }
2371 // If we still are over the watermark, attempt a GC for alloc and run finalizers.
2372 if (static_cast<size_t>(native_bytes_allocated_) > native_footprint_limit_) {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002373 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002374 RunFinalization(env);
2375 native_need_to_run_finalization_ = false;
2376 CHECK(!env->ExceptionCheck());
2377 }
2378 // We have just run finalizers, update the native watermark since it is very likely that
2379 // finalizers released native managed allocations.
2380 UpdateMaxNativeFootprint();
2381 } else if (!IsGCRequestPending()) {
Mathieu Chartier7bf82af2013-12-06 16:51:45 -08002382 if (concurrent_gc_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002383 RequestConcurrentGC(self);
2384 } else {
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08002385 CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002386 }
2387 }
2388 }
2389}
2390
Ian Rogers1eb512d2013-10-18 15:42:20 -07002391void Heap::RegisterNativeFree(JNIEnv* env, int bytes) {
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002392 int expected_size, new_size;
2393 do {
Ian Rogersb122a4b2013-11-19 18:00:50 -08002394 expected_size = native_bytes_allocated_.Load();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002395 new_size = expected_size - bytes;
2396 if (UNLIKELY(new_size < 0)) {
2397 ScopedObjectAccess soa(env);
2398 env->ThrowNew(WellKnownClasses::java_lang_RuntimeException,
2399 StringPrintf("Attempted to free %d native bytes with only %d native bytes "
2400 "registered as allocated", bytes, expected_size).c_str());
2401 break;
2402 }
Ian Rogersb122a4b2013-11-19 18:00:50 -08002403 } while (!native_bytes_allocated_.CompareAndSwap(expected_size, new_size));
Mathieu Chartier987ccff2013-07-08 11:05:21 -07002404}
2405
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002406int64_t Heap::GetTotalMemory() const {
2407 int64_t ret = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002408 for (const auto& space : continuous_spaces_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002409 // Currently don't include the image space.
2410 if (!space->IsImageSpace()) {
2411 ret += space->Size();
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002412 }
2413 }
Mathieu Chartier02e25112013-08-14 16:14:24 -07002414 for (const auto& space : discontinuous_spaces_) {
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -07002415 if (space->IsLargeObjectSpace()) {
2416 ret += space->AsLargeObjectSpace()->GetBytesAllocated();
2417 }
2418 }
2419 return ret;
2420}
2421
Mathieu Chartier11409ae2013-09-23 11:49:36 -07002422void Heap::AddModUnionTable(accounting::ModUnionTable* mod_union_table) {
2423 DCHECK(mod_union_table != nullptr);
2424 mod_union_tables_.Put(mod_union_table->GetSpace(), mod_union_table);
2425}
2426
Ian Rogers1d54e732013-05-02 21:10:01 -07002427} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07002428} // namespace art