blob: 43ad910e68a9fa958c19f764a4e7caba579ab679 [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#include <sys/types.h>
22#include <sys/wait.h>
23
Brian Carlstrom58ae9412011-10-04 00:56:06 -070024#include <limits>
Carl Shapiro58551df2011-07-24 03:09:51 -070025#include <vector>
26
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/stl_util.h"
Ian Rogers48931882013-01-22 14:35:16 -080028#include "cutils/sched_policy.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070029#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070030#include "gc/accounting/atomic_stack.h"
31#include "gc/accounting/card_table-inl.h"
32#include "gc/accounting/heap_bitmap-inl.h"
33#include "gc/accounting/mod_union_table-inl.h"
34#include "gc/accounting/space_bitmap-inl.h"
35#include "gc/collector/mark_sweep-inl.h"
36#include "gc/collector/partial_mark_sweep.h"
37#include "gc/collector/sticky_mark_sweep.h"
38#include "gc/space/image_space.h"
39#include "gc/space/large_object_space.h"
40#include "gc/space/space-inl.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070041#include "image.h"
Jeff Hao5d917302013-02-27 17:57:33 -080042#include "invoke_arg_array_builder.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/class-inl.h"
44#include "mirror/field-inl.h"
45#include "mirror/object.h"
46#include "mirror/object-inl.h"
47#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080048#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080049#include "os.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070050#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070051#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070052#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070053#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070054#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070056
57namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070058namespace gc {
Carl Shapiro69759ea2011-07-21 18:13:35 -070059
Ian Rogers1d54e732013-05-02 21:10:01 -070060// When to create a log message about a slow GC, 100ms.
Mathieu Chartier2b82db42012-11-14 17:29:05 -080061static const uint64_t kSlowGcThreshold = MsToNs(100);
Ian Rogers1d54e732013-05-02 21:10:01 -070062// When to create a log message about a slow pause, 5ms.
Mathieu Chartier2b82db42012-11-14 17:29:05 -080063static const uint64_t kLongGcPauseThreshold = MsToNs(5);
Mathieu Chartier65db8802012-11-20 12:36:46 -080064static const bool kDumpGcPerformanceOnShutdown = false;
Ian Rogers1d54e732013-05-02 21:10:01 -070065// Minimum amount of remaining bytes before a concurrent GC is triggered.
66static const size_t kMinConcurrentRemainingBytes = 128 * KB;
Mathieu Chartier0051be62012-10-12 17:47:11 -070067const double Heap::kDefaultTargetUtilization = 0.5;
68
Elliott Hughesae80b492012-04-24 10:43:17 -070069static bool GenerateImage(const std::string& image_file_name) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080070 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
Brian Carlstrom5643b782012-02-05 12:32:53 -080071 std::vector<std::string> boot_class_path;
72 Split(boot_class_path_string, ':', boot_class_path);
Brian Carlstromb2793372012-03-17 18:27:16 -070073 if (boot_class_path.empty()) {
74 LOG(FATAL) << "Failed to generate image because no boot class path specified";
75 }
Brian Carlstrom5643b782012-02-05 12:32:53 -080076
77 std::vector<char*> arg_vector;
78
79 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -070080 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom5643b782012-02-05 12:32:53 -080081 const char* dex2oat = dex2oat_string.c_str();
82 arg_vector.push_back(strdup(dex2oat));
83
84 std::string image_option_string("--image=");
85 image_option_string += image_file_name;
86 const char* image_option = image_option_string.c_str();
87 arg_vector.push_back(strdup(image_option));
88
89 arg_vector.push_back(strdup("--runtime-arg"));
90 arg_vector.push_back(strdup("-Xms64m"));
91
92 arg_vector.push_back(strdup("--runtime-arg"));
93 arg_vector.push_back(strdup("-Xmx64m"));
94
95 for (size_t i = 0; i < boot_class_path.size(); i++) {
96 std::string dex_file_option_string("--dex-file=");
97 dex_file_option_string += boot_class_path[i];
98 const char* dex_file_option = dex_file_option_string.c_str();
99 arg_vector.push_back(strdup(dex_file_option));
100 }
101
102 std::string oat_file_option_string("--oat-file=");
103 oat_file_option_string += image_file_name;
104 oat_file_option_string.erase(oat_file_option_string.size() - 3);
105 oat_file_option_string += "oat";
106 const char* oat_file_option = oat_file_option_string.c_str();
107 arg_vector.push_back(strdup(oat_file_option));
108
jeffhao8161c032012-10-31 15:50:00 -0700109 std::string base_option_string(StringPrintf("--base=0x%x", ART_BASE_ADDRESS));
110 arg_vector.push_back(strdup(base_option_string.c_str()));
Brian Carlstrom5643b782012-02-05 12:32:53 -0800111
Brian Carlstrom265091e2013-01-30 14:08:26 -0800112 if (!kIsTargetBuild) {
113 arg_vector.push_back(strdup("--host"));
114 }
115
Elliott Hughes48436bb2012-02-07 15:23:28 -0800116 std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom5643b782012-02-05 12:32:53 -0800117 LOG(INFO) << command_line;
118
Elliott Hughes48436bb2012-02-07 15:23:28 -0800119 arg_vector.push_back(NULL);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800120 char** argv = &arg_vector[0];
121
122 // fork and exec dex2oat
123 pid_t pid = fork();
124 if (pid == 0) {
125 // no allocation allowed between fork and exec
126
127 // change process groups, so we don't get reaped by ProcessManager
128 setpgid(0, 0);
129
130 execv(dex2oat, argv);
131
132 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
133 return false;
134 } else {
135 STLDeleteElements(&arg_vector);
136
137 // wait for dex2oat to finish
138 int status;
139 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
140 if (got_pid != pid) {
141 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
142 return false;
143 }
144 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
145 LOG(ERROR) << dex2oat << " failed: " << command_line;
146 return false;
147 }
148 }
149 return true;
150}
151
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700152void Heap::UnReserveOatFileAddressRange() {
153 oat_file_map_.reset(NULL);
154}
155
Mathieu Chartier0051be62012-10-12 17:47:11 -0700156Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
157 double target_utilization, size_t capacity,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700158 const std::string& original_image_file_name, bool concurrent_gc)
159 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800160 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161 concurrent_gc_(concurrent_gc),
162 have_zygote_space_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -0700163 reference_queue_lock_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800164 is_gc_running_(false),
Ian Rogers1d54e732013-05-02 21:10:01 -0700165 last_gc_type_(collector::kGcTypeNone),
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700166 next_gc_type_(collector::kGcTypePartial),
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800167 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700168 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700169 max_allowed_footprint_(initial_size),
Ian Rogers1d54e732013-05-02 21:10:01 -0700170 concurrent_start_bytes_(concurrent_gc ? initial_size - (kMinConcurrentRemainingBytes)
171 : std::numeric_limits<size_t>::max()),
Ian Rogers1d54e732013-05-02 21:10:01 -0700172 total_bytes_freed_ever_(0),
173 total_objects_freed_ever_(0),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700174 large_object_threshold_(3 * kPageSize),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800175 num_bytes_allocated_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700176 verify_missing_card_marks_(false),
177 verify_system_weaks_(false),
178 verify_pre_gc_heap_(false),
179 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700180 verify_mod_union_table_(false),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700181 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700182 min_remaining_space_for_sticky_gc_(1 * MB),
Ian Rogers1d54e732013-05-02 21:10:01 -0700183 last_trim_time_ms_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800184 allocation_rate_(0),
Ian Rogers1d54e732013-05-02 21:10:01 -0700185 max_allocation_stack_size_(kDesiredHeapVerification > kNoHeapVerification? KB : MB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800186 reference_referent_offset_(0),
187 reference_queue_offset_(0),
188 reference_queueNext_offset_(0),
189 reference_pendingNext_offset_(0),
190 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700191 min_free_(min_free),
192 max_free_(max_free),
193 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700194 total_wait_time_(0),
195 measure_allocation_time_(false),
196 total_allocation_time_(0),
Ian Rogers04d7aa92013-03-16 14:29:17 -0700197 verify_object_mode_(kHeapVerificationNotPermitted) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800198 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800199 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700200 }
201
Ian Rogers1d54e732013-05-02 21:10:01 -0700202 live_bitmap_.reset(new accounting::HeapBitmap(this));
203 mark_bitmap_.reset(new accounting::HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700204
Ian Rogers30fab402012-01-23 15:43:46 -0800205 // Requested begin for the alloc space, to follow the mapped image and oat files
206 byte* requested_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800207 std::string image_file_name(original_image_file_name);
208 if (!image_file_name.empty()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700209 space::ImageSpace* image_space = NULL;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700210
Brian Carlstrom5643b782012-02-05 12:32:53 -0800211 if (OS::FileExists(image_file_name.c_str())) {
212 // If the /system file exists, it should be up-to-date, don't try to generate
Ian Rogers1d54e732013-05-02 21:10:01 -0700213 image_space = space::ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800214 } else {
Brian Carlstrom7675e162013-06-10 16:18:04 -0700215 // If the /system file didn't exist, we need to use one from the dalvik-cache.
Brian Carlstrom5643b782012-02-05 12:32:53 -0800216 // If the cache file exists, try to open, but if it fails, regenerate.
217 // If it does not exist, generate.
Brian Carlstrom7675e162013-06-10 16:18:04 -0700218 image_file_name = GetDalvikCacheFilenameOrDie(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800219 if (OS::FileExists(image_file_name.c_str())) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700220 image_space = space::ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800221 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700222 if (image_space == NULL) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700223 CHECK(GenerateImage(image_file_name)) << "Failed to generate image: " << image_file_name;
Ian Rogers1d54e732013-05-02 21:10:01 -0700224 image_space = space::ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800225 }
226 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700227
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700228 CHECK(image_space != NULL) << "Failed to create space from " << image_file_name;
Ian Rogers1d54e732013-05-02 21:10:01 -0700229 AddContinuousSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800230 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
231 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800232 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
233 CHECK_GT(oat_file_end_addr, image_space->End());
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700234
235 // Reserve address range from image_space->End() to image_space->GetImageHeader().GetOatEnd()
236 uintptr_t reserve_begin = RoundUp(reinterpret_cast<uintptr_t>(image_space->End()), kPageSize);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800237 uintptr_t reserve_end = RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr), kPageSize);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700238 oat_file_map_.reset(MemMap::MapAnonymous("oat file reserve",
239 reinterpret_cast<byte*>(reserve_begin),
Ian Rogers10c5b782013-01-10 10:40:53 -0800240 reserve_end - reserve_begin, PROT_NONE));
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700241
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800242 if (oat_file_end_addr > requested_begin) {
243 requested_begin = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700244 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700245 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700246 }
247
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700248 // Allocate the large object space.
Ian Rogers22a20862013-03-16 16:34:57 -0700249 const bool kUseFreeListSpaceForLOS = false;
250 if (kUseFreeListSpaceForLOS) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700251 large_object_space_ = space::FreeListSpace::Create("large object space", NULL, capacity);
Ian Rogers22a20862013-03-16 16:34:57 -0700252 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -0700253 large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
Ian Rogers22a20862013-03-16 16:34:57 -0700254 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700255 CHECK(large_object_space_ != NULL) << "Failed to create large object space";
256 AddDiscontinuousSpace(large_object_space_);
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700257
Ian Rogers1d54e732013-05-02 21:10:01 -0700258 alloc_space_ = space::DlMallocSpace::Create("alloc space",
259 initial_size,
260 growth_limit, capacity,
261 requested_begin);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700262 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
jeffhao8161c032012-10-31 15:50:00 -0700263 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Ian Rogers1d54e732013-05-02 21:10:01 -0700264 AddContinuousSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700265
Ian Rogers1d54e732013-05-02 21:10:01 -0700266 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
267 byte* heap_begin = continuous_spaces_.front()->Begin();
268 size_t heap_capacity = continuous_spaces_.back()->End() - continuous_spaces_.front()->Begin();
269 if (continuous_spaces_.back()->IsDlMallocSpace()) {
270 heap_capacity += continuous_spaces_.back()->AsDlMallocSpace()->NonGrowthLimitCapacity();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700271 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700272
Ian Rogers30fab402012-01-23 15:43:46 -0800273 // Mark image objects in the live bitmap
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700274 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -0700275 typedef std::vector<space::ContinuousSpace*>::iterator It;
276 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
277 space::ContinuousSpace* space = *it;
Ian Rogers30fab402012-01-23 15:43:46 -0800278 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700279 space::ImageSpace* image_space = space->AsImageSpace();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700280 image_space->RecordImageAllocations(image_space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800281 }
282 }
283
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800284 // Allocate the card table.
Ian Rogers1d54e732013-05-02 21:10:01 -0700285 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700286 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700287
Ian Rogers1d54e732013-05-02 21:10:01 -0700288 image_mod_union_table_.reset(new accounting::ModUnionTableToZygoteAllocspace(this));
289 CHECK(image_mod_union_table_.get() != NULL) << "Failed to create image mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700290
Ian Rogers1d54e732013-05-02 21:10:01 -0700291 zygote_mod_union_table_.reset(new accounting::ModUnionTableCardCache(this));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700292 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700293
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700294 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700295 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800297 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700298 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogers1d54e732013-05-02 21:10:01 -0700299 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
300 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
301 max_allocation_stack_size_));
302 live_stack_.reset(accounting::ObjectStack::Create("live stack",
303 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700304
Mathieu Chartier65db8802012-11-20 12:36:46 -0800305 // It's still too early to take a lock because there are no threads yet, but we can create locks
306 // now. We don't create it earlier to make it clear that you can't use locks during heap
307 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700308 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700309 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
310 *gc_complete_lock_));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700311
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700312 // Create the reference queue lock, this is required so for parrallel object scanning in the GC.
Ian Rogers1d54e732013-05-02 21:10:01 -0700313 reference_queue_lock_ = new Mutex("reference queue lock");
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700314
Ian Rogers1d54e732013-05-02 21:10:01 -0700315 last_gc_time_ns_ = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800316 last_gc_size_ = GetBytesAllocated();
317
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800318 // Create our garbage collectors.
319 for (size_t i = 0; i < 2; ++i) {
320 const bool concurrent = i != 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700321 mark_sweep_collectors_.push_back(new collector::MarkSweep(this, concurrent));
322 mark_sweep_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
323 mark_sweep_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700324 }
325
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800326 CHECK(max_allowed_footprint_ != 0);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800327 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800328 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700329 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700330}
331
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700332void Heap::CreateThreadPool() {
333 // TODO: Make sysconf(_SC_NPROCESSORS_CONF) be a helper function?
334 // Use the number of processors - 1 since the thread doing the GC does work while its waiting for
335 // workers to complete.
Ian Rogers1d54e732013-05-02 21:10:01 -0700336 thread_pool_.reset(new ThreadPool(1)); // new ThreadPool(sysconf(_SC_NPROCESSORS_CONF) - 1));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700337}
338
339void Heap::DeleteThreadPool() {
340 thread_pool_.reset(NULL);
341}
342
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700343// Sort spaces based on begin address
Ian Rogers1d54e732013-05-02 21:10:01 -0700344struct ContinuousSpaceSorter {
345 bool operator ()(const space::ContinuousSpace* a, const space::ContinuousSpace* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700346 return a->Begin() < b->Begin();
347 }
348};
349
Ian Rogers1d54e732013-05-02 21:10:01 -0700350void Heap::AddContinuousSpace(space::ContinuousSpace* space) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700351 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700352 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700353 DCHECK(space->GetLiveBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700354 live_bitmap_->AddContinuousSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700355 DCHECK(space->GetMarkBitmap() != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700356 mark_bitmap_->AddContinuousSpaceBitmap(space->GetMarkBitmap());
357 continuous_spaces_.push_back(space);
358 if (space->IsDlMallocSpace() && !space->IsLargeObjectSpace()) {
359 alloc_space_ = space->AsDlMallocSpace();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700360 }
361
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700362 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
Ian Rogers1d54e732013-05-02 21:10:01 -0700363 std::sort(continuous_spaces_.begin(), continuous_spaces_.end(), ContinuousSpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700364
365 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
366 // avoid redundant marking.
367 bool seen_zygote = false, seen_alloc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700368 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
369 for (It it = continuous_spaces_.begin(); it != continuous_spaces_.end(); ++it) {
370 space::ContinuousSpace* space = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700371 if (space->IsImageSpace()) {
372 DCHECK(!seen_zygote);
373 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700374 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700375 DCHECK(!seen_alloc);
376 seen_zygote = true;
Ian Rogers1d54e732013-05-02 21:10:01 -0700377 } else if (space->IsDlMallocSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700378 seen_alloc = true;
379 }
380 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800381}
382
Ian Rogers1d54e732013-05-02 21:10:01 -0700383void Heap::AddDiscontinuousSpace(space::DiscontinuousSpace* space) {
384 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
385 DCHECK(space != NULL);
386 DCHECK(space->GetLiveObjects() != NULL);
387 live_bitmap_->AddDiscontinuousObjectSet(space->GetLiveObjects());
388 DCHECK(space->GetMarkObjects() != NULL);
389 mark_bitmap_->AddDiscontinuousObjectSet(space->GetMarkObjects());
390 discontinuous_spaces_.push_back(space);
391}
392
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700393void Heap::DumpGcPerformanceInfo(std::ostream& os) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700394 // Dump cumulative timings.
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700395 os << "Dumping cumulative Gc timings\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700396 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800397
398 // Dump cumulative loggers for each GC type.
399 // TODO: C++0x
400 uint64_t total_paused_time = 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700401 typedef std::vector<collector::MarkSweep*>::const_iterator It;
402 for (It it = mark_sweep_collectors_.begin();
Sameer Abu Asala8439542013-02-14 16:06:42 -0800403 it != mark_sweep_collectors_.end(); ++it) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700404 collector::MarkSweep* collector = *it;
Sameer Abu Asala8439542013-02-14 16:06:42 -0800405 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800406 if (logger.GetTotalNs() != 0) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700407 os << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800408 const uint64_t total_ns = logger.GetTotalNs();
Ian Rogers1d54e732013-05-02 21:10:01 -0700409 const uint64_t total_pause_ns = (*it)->GetTotalPausedTimeNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800410 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
411 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
412 const uint64_t freed_objects = collector->GetTotalFreedObjects();
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700413 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
414 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
415 << collector->GetName() << " freed: " << freed_objects
416 << " objects with total size " << PrettySize(freed_bytes) << "\n"
417 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
418 << PrettySize(freed_bytes / seconds) << "/s\n";
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800419 total_duration += total_ns;
420 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700421 }
422 }
423 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
Ian Rogers1d54e732013-05-02 21:10:01 -0700424 size_t total_objects_allocated = GetObjectsAllocatedEver();
425 size_t total_bytes_allocated = GetBytesAllocatedEver();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700426 if (total_duration != 0) {
427 const double total_seconds = double(total_duration / 1000) / 1000000.0;
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700428 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
429 os << "Mean GC size throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700430 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700431 os << "Mean GC object throughput: "
Ian Rogers1d54e732013-05-02 21:10:01 -0700432 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700433 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700434 os << "Total number of allocations: " << total_objects_allocated << "\n";
435 os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700436 if (measure_allocation_time_) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700437 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
438 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
439 << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700440 }
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700441 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
442 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700443}
444
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800445Heap::~Heap() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700446 if (kDumpGcPerformanceOnShutdown) {
Elliott Hughes8b788fe2013-04-17 15:57:01 -0700447 DumpGcPerformanceInfo(LOG(INFO));
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700448 }
449
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800450 STLDeleteElements(&mark_sweep_collectors_);
451
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700452 // If we don't reset then the mark stack complains in it's destructor.
453 allocation_stack_->Reset();
454 live_stack_->Reset();
455
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800456 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800457 // We can't take the heap lock here because there might be a daemon thread suspended with the
458 // heap lock held. We know though that no non-daemon threads are executing, and we know that
459 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
460 // those threads can't resume. We're the only running thread, and we can do whatever we like...
Ian Rogers1d54e732013-05-02 21:10:01 -0700461 STLDeleteElements(&continuous_spaces_);
462 STLDeleteElements(&discontinuous_spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700463 delete gc_complete_lock_;
Ian Rogers1d54e732013-05-02 21:10:01 -0700464 delete reference_queue_lock_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700465}
466
Ian Rogers1d54e732013-05-02 21:10:01 -0700467space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
468 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700469 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700470 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
471 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700472 if ((*it)->Contains(obj)) {
473 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700474 }
475 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700476 if (!fail_ok) {
477 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
478 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700479 return NULL;
480}
481
Ian Rogers1d54e732013-05-02 21:10:01 -0700482space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
483 bool fail_ok) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700484 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700485 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It;
486 for (It it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
487 if ((*it)->Contains(obj)) {
488 return *it;
489 }
490 }
491 if (!fail_ok) {
492 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
493 }
494 return NULL;
495}
496
497space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
498 space::Space* result = FindContinuousSpaceFromObject(obj, true);
499 if (result != NULL) {
500 return result;
501 }
502 return FindDiscontinuousSpaceFromObject(obj, true);
503}
504
505space::ImageSpace* Heap::GetImageSpace() const {
506 // TODO: C++0x auto
507 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
508 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700509 if ((*it)->IsImageSpace()) {
510 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700511 }
512 }
513 return NULL;
514}
515
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700516static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700517 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700518 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700519 size_t chunk_free_bytes = chunk_size - used_bytes;
520 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
521 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700522 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700523}
524
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800525mirror::Object* Heap::AllocObject(Thread* self, mirror::Class* c, size_t byte_count) {
526 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(mirror::Class)) ||
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700527 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
528 strlen(ClassHelper(c).GetDescriptor()) == 0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800529 DCHECK_GE(byte_count, sizeof(mirror::Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700530
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800531 mirror::Object* obj = NULL;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700532 size_t size = 0;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700533 uint64_t allocation_start = 0;
534 if (measure_allocation_time_) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700535 allocation_start = NanoTime() / kTimeAdjust;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700536 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700537
538 // We need to have a zygote space or else our newly allocated large object can end up in the
539 // Zygote resulting in it being prematurely freed.
540 // We can only do this for primive objects since large objects will not be within the card table
541 // range. This also means that we rely on SetClass not dirtying the object's card.
Ian Rogers22a20862013-03-16 16:34:57 -0700542 if (byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700543 size = RoundUp(byte_count, kPageSize);
Ian Rogers1d54e732013-05-02 21:10:01 -0700544 obj = Allocate(self, large_object_space_, size);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700545 // Make sure that our large object didn't get placed anywhere within the space interval or else
546 // it breaks the immune range.
547 DCHECK(obj == NULL ||
Ian Rogers1d54e732013-05-02 21:10:01 -0700548 reinterpret_cast<byte*>(obj) < continuous_spaces_.front()->Begin() ||
549 reinterpret_cast<byte*>(obj) >= continuous_spaces_.back()->End());
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700550 } else {
Ian Rogers50b35e22012-10-04 10:09:15 -0700551 obj = Allocate(self, alloc_space_, byte_count);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700552
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700553 // Ensure that we did not allocate into a zygote space.
Ian Rogers1d54e732013-05-02 21:10:01 -0700554 DCHECK(obj == NULL || !have_zygote_space_ || !FindSpaceFromObject(obj, false)->IsZygoteSpace());
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700555 size = alloc_space_->AllocationSize(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700556 }
557
Mathieu Chartier037813d2012-08-23 16:44:59 -0700558 if (LIKELY(obj != NULL)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700559 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700560
561 // Record allocation after since we want to use the atomic add for the atomic fence to guard
562 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700563 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700564
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700565 if (Dbg::IsAllocTrackingEnabled()) {
566 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700567 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700568 if (static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700569 // We already have a request pending, no reason to start more until we update
570 // concurrent_start_bytes_.
571 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700572 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800573 SirtRef<mirror::Object> ref(self, obj);
Ian Rogers1f539342012-10-03 21:09:42 -0700574 RequestConcurrentGC(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575 }
576 VerifyObject(obj);
577
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700578 if (measure_allocation_time_) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -0700579 total_allocation_time_ += NanoTime() / kTimeAdjust - allocation_start;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700580 }
581
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700582 return obj;
583 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800584 std::ostringstream oss;
Mathieu Chartier037813d2012-08-23 16:44:59 -0700585 int64_t total_bytes_free = GetFreeMemory();
Ian Rogers1d54e732013-05-02 21:10:01 -0700586 uint64_t alloc_space_size = alloc_space_->GetBytesAllocated();
587 uint64_t large_object_size = large_object_space_->GetObjectsAllocated();
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800588 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
589 << " free bytes; allocation space size " << alloc_space_size
590 << "; large object space size " << large_object_size;
591 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
592 if (total_bytes_free >= byte_count) {
593 size_t max_contiguous_allocation = 0;
594 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700595 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
596 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
597 space::ContinuousSpace* space = *it;
598 if (space->IsDlMallocSpace()) {
599 space->AsDlMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800600 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700601 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800602 oss << "; failed due to fragmentation (largest possible contiguous allocation "
603 << max_contiguous_allocation << " bytes)";
Carl Shapiro58551df2011-07-24 03:09:51 -0700604 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800605 self->ThrowOutOfMemoryError(oss.str().c_str());
Elliott Hughes418dfe72011-10-06 18:56:27 -0700606 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700607}
608
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800609bool Heap::IsHeapAddress(const mirror::Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700610 // Note: we deliberately don't take the lock here, and mustn't test anything that would
611 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700612 if (obj == NULL) {
613 return true;
614 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700615 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700616 return false;
617 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700618 return FindSpaceFromObject(obj, true) != NULL;
Elliott Hughesa2501992011-08-26 19:39:54 -0700619}
620
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800621bool Heap::IsLiveObjectLocked(const mirror::Object* obj) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700622 //Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
623 if (obj == NULL) {
624 return false;
625 }
626 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
627 return false;
628 }
629 space::ContinuousSpace* cont_space = FindContinuousSpaceFromObject(obj, true);
630 if (cont_space != NULL) {
631 if (cont_space->GetLiveBitmap()->Test(obj)) {
632 return true;
633 }
634 } else {
635 space::DiscontinuousSpace* disc_space = FindDiscontinuousSpaceFromObject(obj, true);
636 if (disc_space != NULL) {
637 if (disc_space->GetLiveObjects()->Test(obj)) {
638 return true;
639 }
640 }
641 }
642 for (size_t i = 0; i < 5; ++i) {
643 if (allocation_stack_->Contains(const_cast<mirror::Object*>(obj)) ||
644 live_stack_->Contains(const_cast<mirror::Object*>(obj))) {
645 return true;
646 }
647 NanoSleep(MsToNs(10));
648 }
649 return false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700650}
651
Ian Rogers04d7aa92013-03-16 14:29:17 -0700652void Heap::VerifyObjectImpl(const mirror::Object* obj) {
653 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700654 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700655 return;
656 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700657 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700658}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700659
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700660void Heap::DumpSpaces() {
661 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700662 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
663 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
664 space::ContinuousSpace* space = *it;
665 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap();
666 accounting::SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700667 LOG(INFO) << space << " " << *space << "\n"
668 << live_bitmap << " " << *live_bitmap << "\n"
669 << mark_bitmap << " " << *mark_bitmap;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700670 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700671 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
672 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
673 space::DiscontinuousSpace* space = *it;
674 LOG(INFO) << space << " " << *space << "\n";
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700675 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700676}
677
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800678void Heap::VerifyObjectBody(const mirror::Object* obj) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800679 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700680 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700681 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800682 if (UNLIKELY(GetObjectsAllocated() <= 10)) { // Ignore early dawn of the universe verifications.
683 return;
684 }
685 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
686 mirror::Object::ClassOffset().Int32Value();
687 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
688 if (UNLIKELY(c == NULL)) {
689 LOG(FATAL) << "Null class in object: " << obj;
690 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
691 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
692 }
693 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
694 // Note: we don't use the accessors here as they have internal sanity checks
695 // that we don't want to run
696 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
697 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
698 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
699 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
700 CHECK_EQ(c_c, c_c_c);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700701
Ian Rogers62d6c772013-02-27 08:32:07 -0800702 if (verify_object_mode_ != kVerifyAllFast) {
703 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
704 // heap_bitmap_lock_.
Ian Rogers1d54e732013-05-02 21:10:01 -0700705 if (!IsLiveObjectLocked(obj)) {
706 DumpSpaces();
707 LOG(FATAL) << "Object is dead: " << obj;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700708 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700709 if (!IsLiveObjectLocked(c)) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700710 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
711 }
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700712 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700713}
714
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800715void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700716 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700717 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700718}
719
720void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700721 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700722 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700723}
724
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800725void Heap::RecordAllocation(size_t size, mirror::Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700726 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700727 DCHECK_GT(size, 0u);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700728 num_bytes_allocated_ += size;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700729
730 if (Runtime::Current()->HasStatsEnabled()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700731 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700732 ++thread_stats->allocated_objects;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700733 thread_stats->allocated_bytes += size;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700734
735 // TODO: Update these atomically.
736 RuntimeStats* global_stats = Runtime::Current()->GetStats();
737 ++global_stats->allocated_objects;
738 global_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700739 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700740
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700741 // This is safe to do since the GC will never free objects which are neither in the allocation
742 // stack or the live bitmap.
743 while (!allocation_stack_->AtomicPushBack(obj)) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700744 CollectGarbageInternal(collector::kGcTypeSticky, kGcCauseForAlloc, false);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700745 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700746}
747
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700748void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700749 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
750 num_bytes_allocated_ -= freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700751
752 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700753 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700754 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700755 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700756
757 // TODO: Do this concurrently.
758 RuntimeStats* global_stats = Runtime::Current()->GetStats();
759 global_stats->freed_objects += freed_objects;
760 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700761 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700762}
763
Ian Rogers1d54e732013-05-02 21:10:01 -0700764mirror::Object* Heap::TryToAllocate(Thread* self, space::AllocSpace* space, size_t alloc_size,
765 bool grow) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700766 // Should we try to use a CAS here and fix up num_bytes_allocated_ later with AllocationSize?
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800767 if (num_bytes_allocated_ + alloc_size > max_allowed_footprint_) {
768 // max_allowed_footprint_ <= growth_limit_ so it is safe to check in here.
769 if (num_bytes_allocated_ + alloc_size > growth_limit_) {
770 // Completely out of memory.
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700771 return NULL;
772 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700773 }
774
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700775 return space->Alloc(self, alloc_size);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700776}
777
Ian Rogers1d54e732013-05-02 21:10:01 -0700778mirror::Object* Heap::Allocate(Thread* self, space::AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700779 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
780 // done in the runnable state where suspension is expected.
Ian Rogers81d425b2012-09-27 16:03:43 -0700781 DCHECK_EQ(self->GetState(), kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700782 self->AssertThreadSuspensionIsAllowable();
Brian Carlstromb82b6872011-10-26 17:18:07 -0700783
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800784 mirror::Object* ptr = TryToAllocate(self, space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700785 if (ptr != NULL) {
786 return ptr;
787 }
788
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700789 // The allocation failed. If the GC is running, block until it completes, and then retry the
790 // allocation.
Ian Rogers1d54e732013-05-02 21:10:01 -0700791 collector::GcType last_gc = WaitForConcurrentGcToComplete(self);
792 if (last_gc != collector::kGcTypeNone) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700793 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Ian Rogers50b35e22012-10-04 10:09:15 -0700794 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700795 if (ptr != NULL) {
796 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700797 }
798 }
799
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700800 // Loop through our different Gc types and try to Gc until we get enough free memory.
Ian Rogers1d54e732013-05-02 21:10:01 -0700801 for (size_t i = static_cast<size_t>(last_gc) + 1;
802 i < static_cast<size_t>(collector::kGcTypeMax); ++i) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700803 bool run_gc = false;
Ian Rogers1d54e732013-05-02 21:10:01 -0700804 collector::GcType gc_type = static_cast<collector::GcType>(i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700805 switch (gc_type) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700806 case collector::kGcTypeSticky: {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700807 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700808 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
809 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700810 break;
811 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700812 case collector::kGcTypePartial:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700813 run_gc = have_zygote_space_;
814 break;
Ian Rogers1d54e732013-05-02 21:10:01 -0700815 case collector::kGcTypeFull:
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700816 run_gc = true;
817 break;
818 default:
819 break;
820 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700821
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700822 if (run_gc) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700823 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
Ian Rogers1d54e732013-05-02 21:10:01 -0700824 collector::GcType gc_type_ran = CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier65db8802012-11-20 12:36:46 -0800825 DCHECK_GE(static_cast<size_t>(gc_type_ran), i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700826 i = static_cast<size_t>(gc_type_ran);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700827
828 // Did we free sufficient memory for the allocation to succeed?
Ian Rogers50b35e22012-10-04 10:09:15 -0700829 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700830 if (ptr != NULL) {
831 return ptr;
832 }
833 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700834 }
835
836 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700837 // Try harder, growing the heap if necessary.
Ian Rogers50b35e22012-10-04 10:09:15 -0700838 ptr = TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700839 if (ptr != NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700840 return ptr;
841 }
842
Elliott Hughes81ff3182012-03-23 20:35:56 -0700843 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
844 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
845 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700846
Elliott Hughes418dfe72011-10-06 18:56:27 -0700847 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700848 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
849 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700850
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700851 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers1d54e732013-05-02 21:10:01 -0700852 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseForAlloc, true);
Ian Rogers50b35e22012-10-04 10:09:15 -0700853 return TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700854}
855
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700856void Heap::SetTargetHeapUtilization(float target) {
857 DCHECK_GT(target, 0.0f); // asserted in Java code
858 DCHECK_LT(target, 1.0f);
859 target_utilization_ = target;
860}
861
Ian Rogers1d54e732013-05-02 21:10:01 -0700862size_t Heap::GetObjectsAllocated() const {
863 size_t total = 0;
864 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
865 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
866 space::ContinuousSpace* space = *it;
867 if (space->IsDlMallocSpace()) {
868 total += space->AsDlMallocSpace()->GetObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700869 }
870 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700871 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
872 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
873 space::DiscontinuousSpace* space = *it;
874 total += space->AsLargeObjectSpace()->GetObjectsAllocated();
875 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700876 return total;
877}
878
Ian Rogers1d54e732013-05-02 21:10:01 -0700879size_t Heap::GetObjectsAllocatedEver() const {
880 size_t total = 0;
881 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
882 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
883 space::ContinuousSpace* space = *it;
884 if (space->IsDlMallocSpace()) {
885 total += space->AsDlMallocSpace()->GetTotalObjectsAllocated();
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700886 }
887 }
Ian Rogers1d54e732013-05-02 21:10:01 -0700888 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
889 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
890 space::DiscontinuousSpace* space = *it;
891 total += space->AsLargeObjectSpace()->GetTotalObjectsAllocated();
892 }
893 return total;
894}
895
896size_t Heap::GetBytesAllocatedEver() const {
897 size_t total = 0;
898 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
899 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
900 space::ContinuousSpace* space = *it;
901 if (space->IsDlMallocSpace()) {
902 total += space->AsDlMallocSpace()->GetTotalBytesAllocated();
903 }
904 }
905 typedef std::vector<space::DiscontinuousSpace*>::const_iterator It2;
906 for (It2 it = discontinuous_spaces_.begin(), end = discontinuous_spaces_.end(); it != end; ++it) {
907 space::DiscontinuousSpace* space = *it;
908 total += space->AsLargeObjectSpace()->GetTotalBytesAllocated();
909 }
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700910 return total;
911}
912
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700913class InstanceCounter {
914 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800915 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700916 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800917 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700918 }
919
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800920 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800921 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800923 if (use_is_assignable_from_) {
924 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
925 ++counts_[i];
926 }
927 } else {
928 if (instance_class == classes_[i]) {
929 ++counts_[i];
930 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700931 }
932 }
933 }
934
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700935 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800936 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800937 bool use_is_assignable_from_;
938 uint64_t* const counts_;
939
940 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700941};
942
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800944 uint64_t* counts) {
945 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
946 // is empty, so the live bitmap is the only place we need to look.
947 Thread* self = Thread::Current();
948 self->TransitionFromRunnableToSuspended(kNative);
949 CollectGarbage(false);
950 self->TransitionFromSuspendedToRunnable();
951
952 InstanceCounter counter(classes, use_is_assignable_from, counts);
953 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700954 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700955}
956
Elliott Hughes3b78c942013-01-15 17:35:41 -0800957class InstanceCollector {
958 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800959 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800960 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
961 : class_(c), max_count_(max_count), instances_(instances) {
962 }
963
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800964 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
965 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -0800966 if (instance_class == class_) {
967 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800968 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800969 }
970 }
971 }
972
973 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800974 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800975 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800976 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800977
978 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
979};
980
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800981void Heap::GetInstances(mirror::Class* c, int32_t max_count,
982 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800983 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
984 // is empty, so the live bitmap is the only place we need to look.
985 Thread* self = Thread::Current();
986 self->TransitionFromRunnableToSuspended(kNative);
987 CollectGarbage(false);
988 self->TransitionFromSuspendedToRunnable();
989
990 InstanceCollector collector(c, max_count, instances);
991 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
992 GetLiveBitmap()->Visit(collector);
993}
994
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800995class ReferringObjectsFinder {
996 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800997 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
998 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800999 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1000 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1001 }
1002
1003 // For bitmap Visit.
1004 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1005 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001006 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -07001007 collector::MarkSweep::VisitObjectReferences(o, *this);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001008 }
1009
1010 // For MarkSweep::VisitObjectReferences.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001011 void operator ()(const mirror::Object* referrer, const mirror::Object* object,
1012 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001013 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001014 referring_objects_.push_back(const_cast<mirror::Object*>(referrer));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001015 }
1016 }
1017
1018 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001019 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001020 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001021 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001022
1023 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1024};
1025
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001026void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1027 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001028 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
1029 // is empty, so the live bitmap is the only place we need to look.
1030 Thread* self = Thread::Current();
1031 self->TransitionFromRunnableToSuspended(kNative);
1032 CollectGarbage(false);
1033 self->TransitionFromSuspendedToRunnable();
1034
1035 ReferringObjectsFinder finder(o, max_count, referring_objects);
1036 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1037 GetLiveBitmap()->Visit(finder);
1038}
1039
Ian Rogers30fab402012-01-23 15:43:46 -08001040void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001041 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1042 // last GC will not have necessarily been cleared.
Ian Rogers81d425b2012-09-27 16:03:43 -07001043 Thread* self = Thread::Current();
1044 WaitForConcurrentGcToComplete(self);
Ian Rogers1d54e732013-05-02 21:10:01 -07001045 CollectGarbageInternal(collector::kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001046}
1047
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001048void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001049 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001050 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
1051 CollectGarbage(false);
Ian Rogers81d425b2012-09-27 16:03:43 -07001052 Thread* self = Thread::Current();
1053 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001054
1055 // Try to see if we have any Zygote spaces.
1056 if (have_zygote_space_) {
1057 return;
1058 }
1059
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001060 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
1061
1062 {
1063 // Flush the alloc stack.
Ian Rogers81d425b2012-09-27 16:03:43 -07001064 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001065 FlushAllocStack();
1066 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001067
Ian Rogers1d54e732013-05-02 21:10:01 -07001068 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
1069 // of the remaining available heap memory.
1070 space::DlMallocSpace* zygote_space = alloc_space_;
1071 alloc_space_ = zygote_space->CreateZygoteSpace();
1072 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001073
Ian Rogers1d54e732013-05-02 21:10:01 -07001074 // Change the GC retention policy of the zygote space to only collect when full.
1075 zygote_space->SetGcRetentionPolicy(space::kGcRetentionPolicyFullCollect);
1076 AddContinuousSpace(alloc_space_);
1077 have_zygote_space_ = true;
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001078
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001079 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001080 // TODO: C++0x
Ian Rogers1d54e732013-05-02 21:10:01 -07001081 typedef std::vector<collector::MarkSweep*>::const_iterator It;
1082 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
1083 it != end; ++it) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001084 (*it)->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001085 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001086}
1087
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001088void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001089 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1090 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001091 allocation_stack_->Reset();
1092}
1093
Ian Rogers1d54e732013-05-02 21:10:01 -07001094void Heap::MarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1095 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001096 mirror::Object** limit = stack->End();
1097 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1098 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001099 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001100 if (LIKELY(bitmap->HasAddress(obj))) {
1101 bitmap->Set(obj);
1102 } else {
1103 large_objects->Set(obj);
1104 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001105 }
1106}
1107
Ian Rogers1d54e732013-05-02 21:10:01 -07001108void Heap::UnMarkAllocStack(accounting::SpaceBitmap* bitmap, accounting::SpaceSetMap* large_objects,
1109 accounting::ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001110 mirror::Object** limit = stack->End();
1111 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1112 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001113 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001114 if (LIKELY(bitmap->HasAddress(obj))) {
1115 bitmap->Clear(obj);
1116 } else {
1117 large_objects->Clear(obj);
1118 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001119 }
1120}
1121
Ian Rogers1d54e732013-05-02 21:10:01 -07001122collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1123 bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001124 Thread* self = Thread::Current();
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001125
1126 switch (gc_cause) {
1127 case kGcCauseForAlloc:
1128 ATRACE_BEGIN("GC (alloc)");
1129 break;
1130 case kGcCauseBackground:
1131 ATRACE_BEGIN("GC (background)");
1132 break;
1133 case kGcCauseExplicit:
1134 ATRACE_BEGIN("GC (explicit)");
1135 break;
1136 }
1137
Mathieu Chartier65db8802012-11-20 12:36:46 -08001138 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001139 Locks::mutator_lock_->AssertNotHeld(self);
Carl Shapiro58551df2011-07-24 03:09:51 -07001140
Ian Rogers120f1c72012-09-28 17:17:10 -07001141 if (self->IsHandlingStackOverflow()) {
1142 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1143 }
1144
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001145 // Ensure there is only one GC at a time.
1146 bool start_collect = false;
1147 while (!start_collect) {
1148 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001149 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001150 if (!is_gc_running_) {
1151 is_gc_running_ = true;
1152 start_collect = true;
1153 }
1154 }
1155 if (!start_collect) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001156 WaitForConcurrentGcToComplete(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001157 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1158 // Not doing at the moment to ensure soft references are cleared.
1159 }
1160 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001161 gc_complete_lock_->AssertNotHeld(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001162
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001163 if (gc_cause == kGcCauseForAlloc && Runtime::Current()->HasStatsEnabled()) {
1164 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
1165 ++Thread::Current()->GetStats()->gc_for_alloc_count;
1166 }
1167
Ian Rogers1d54e732013-05-02 21:10:01 -07001168 uint64_t gc_start_time_ns = NanoTime();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001169 uint64_t gc_start_size = GetBytesAllocated();
1170 // Approximate allocation rate in bytes / second.
Ian Rogers1d54e732013-05-02 21:10:01 -07001171 if (UNLIKELY(gc_start_time_ns == last_gc_time_ns_)) {
Jeff Hao9bd02812013-02-08 14:29:50 -08001172 LOG(WARNING) << "Timers are broken (gc_start_time == last_gc_time_).";
1173 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001174 uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001175 if (ms_delta != 0) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001176 allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
Mathieu Chartier65db8802012-11-20 12:36:46 -08001177 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1178 }
1179
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001180 if (gc_type == collector::kGcTypeSticky &&
1181 alloc_space_->Size() < min_alloc_space_size_for_sticky_gc_) {
1182 gc_type = collector::kGcTypePartial;
1183 }
1184
Ian Rogers1d54e732013-05-02 21:10:01 -07001185 DCHECK_LT(gc_type, collector::kGcTypeMax);
1186 DCHECK_NE(gc_type, collector::kGcTypeNone);
1187 collector::MarkSweep* collector = NULL;
1188 typedef std::vector<collector::MarkSweep*>::iterator It;
1189 for (It it = mark_sweep_collectors_.begin(), end = mark_sweep_collectors_.end();
1190 it != end; ++it) {
1191 collector::MarkSweep* cur_collector = *it;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001192 if (cur_collector->IsConcurrent() == concurrent_gc_ && cur_collector->GetGcType() == gc_type) {
1193 collector = cur_collector;
1194 break;
1195 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001196 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001197 CHECK(collector != NULL)
1198 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1199 << " and type=" << gc_type;
1200 collector->clear_soft_references_ = clear_soft_references;
1201 collector->Run();
Ian Rogers1d54e732013-05-02 21:10:01 -07001202 total_objects_freed_ever_ += collector->GetFreedObjects();
1203 total_bytes_freed_ever_ += collector->GetFreedBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001204
Ian Rogers1d54e732013-05-02 21:10:01 -07001205 const size_t duration = collector->GetDurationNs();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001206 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1207 bool was_slow = duration > kSlowGcThreshold ||
1208 (gc_cause == kGcCauseForAlloc && duration > kLongGcPauseThreshold);
1209 for (size_t i = 0; i < pauses.size(); ++i) {
1210 if (pauses[i] > kLongGcPauseThreshold) {
1211 was_slow = true;
1212 }
1213 }
1214
1215 if (was_slow) {
1216 const size_t percent_free = GetPercentFree();
Ian Rogers1d54e732013-05-02 21:10:01 -07001217 const size_t current_heap_size = GetBytesAllocated();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001218 const size_t total_memory = GetTotalMemory();
1219 std::ostringstream pause_string;
1220 for (size_t i = 0; i < pauses.size(); ++i) {
1221 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1222 << ((i != pauses.size() - 1) ? ", " : "");
1223 }
1224 LOG(INFO) << gc_cause << " " << collector->GetName()
Sameer Abu Asala8439542013-02-14 16:06:42 -08001225 << "GC freed " << PrettySize(collector->GetFreedBytes()) << ", "
1226 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1227 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1228 << " total " << PrettyDuration((duration / 1000) * 1000);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001229 if (VLOG_IS_ON(heap)) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001230 LOG(INFO) << Dumpable<base::NewTimingLogger>(collector->GetTimings());
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001231 }
1232 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001233
Ian Rogers15bf2d32012-08-28 17:33:04 -07001234 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001235 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001236 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001237 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -07001238 // Wake anyone who may have been waiting for the GC to complete.
Ian Rogersc604d732012-10-14 16:09:54 -07001239 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001240 }
1241 // Inform DDMS that a GC completed.
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001242 ATRACE_END();
Ian Rogers15bf2d32012-08-28 17:33:04 -07001243 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001244 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001245}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001246
Ian Rogers1d54e732013-05-02 21:10:01 -07001247void Heap::UpdateAndMarkModUnion(collector::MarkSweep* mark_sweep, base::NewTimingLogger& timings,
1248 collector::GcType gc_type) {
1249 if (gc_type == collector::kGcTypeSticky) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001250 // Don't need to do anything for mod union table in this case since we are only scanning dirty
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001251 // cards.
1252 return;
1253 }
1254
1255 // Update zygote mod union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001256 if (gc_type == collector::kGcTypePartial) {
1257 timings.NewSplit("UpdateZygoteModUnionTable");
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001258 zygote_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001259
Ian Rogers1d54e732013-05-02 21:10:01 -07001260 timings.NewSplit("ZygoteMarkReferences");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001261 zygote_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001262 }
1263
1264 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001265 timings.NewSplit("UpdateModUnionTable");
1266 image_mod_union_table_->Update();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001267
1268 // Scans all objects in the mod-union table.
Ian Rogers1d54e732013-05-02 21:10:01 -07001269 timings.NewSplit("MarkImageToAllocSpaceReferences");
1270 image_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001271}
1272
Ian Rogers1d54e732013-05-02 21:10:01 -07001273static void RootMatchesObjectVisitor(const mirror::Object* root, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001274 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001275 if (root == obj) {
1276 LOG(INFO) << "Object " << obj << " is a root";
1277 }
1278}
1279
1280class ScanVisitor {
1281 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001282 void operator ()(const mirror::Object* obj) const {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001283 LOG(INFO) << "Would have rescanned object " << obj;
1284 }
1285};
1286
Ian Rogers1d54e732013-05-02 21:10:01 -07001287// Verify a reference from an object.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001288class VerifyReferenceVisitor {
1289 public:
Ian Rogers1d54e732013-05-02 21:10:01 -07001290 VerifyReferenceVisitor(Heap* heap)
1291 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
1292 : heap_(heap), failed_(false) {
1293 }
1294
1295 bool Failed() const {
1296 return failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001297 }
1298
1299 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
Ian Rogers1d54e732013-05-02 21:10:01 -07001300 // analysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001301 void operator ()(const mirror::Object* obj, const mirror::Object* ref,
Ian Rogers1d54e732013-05-02 21:10:01 -07001302 const MemberOffset& offset, bool /* is_static */) const
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001303 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001304 // Verify that the reference is live.
Ian Rogers1d54e732013-05-02 21:10:01 -07001305 if (UNLIKELY(ref != NULL && !IsLive(ref))) {
1306 accounting::CardTable* card_table = heap_->GetCardTable();
1307 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1308 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001309
Ian Rogers1d54e732013-05-02 21:10:01 -07001310 if (obj != NULL) {
1311 byte* card_addr = card_table->CardFromAddr(obj);
1312 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset " << offset
1313 << "\nIsDirty = " << (*card_addr == accounting::CardTable::kCardDirty)
1314 << "\nObj type " << PrettyTypeOf(obj)
1315 << "\nRef type " << PrettyTypeOf(ref);
1316 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
1317 void* cover_begin = card_table->AddrFromCard(card_addr);
1318 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1319 accounting::CardTable::kCardSize);
1320 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
1321 << "-" << cover_end;
1322 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001323
Ian Rogers1d54e732013-05-02 21:10:01 -07001324 // Print out how the object is live.
1325 if (bitmap != NULL && bitmap->Test(obj)) {
1326 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1327 }
1328 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
1329 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1330 }
1331 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
1332 LOG(ERROR) << "Object " << obj << " found in live stack";
1333 }
1334 // Attempt to see if the card table missed the reference.
1335 ScanVisitor scan_visitor;
1336 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1337 card_table->Scan(bitmap, byte_cover_begin,
1338 byte_cover_begin + accounting::CardTable::kCardSize,
1339 scan_visitor, VoidFunctor());
1340
1341 // Search to see if any of the roots reference our object.
1342 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1343 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1344
1345 // Search to see if any of the roots reference our reference.
1346 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1347 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1348 } else {
1349 LOG(ERROR) << "Root references dead object " << ref << "\nRef type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001350 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001351 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
1352 LOG(ERROR) << "Reference " << ref << " found in allocation stack!";
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001353 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001354 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001355 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001356 }
Ian Rogers1d54e732013-05-02 21:10:01 -07001357 heap_->image_mod_union_table_->Dump(LOG(ERROR) << "Image mod-union table: ");
1358 heap_->zygote_mod_union_table_->Dump(LOG(ERROR) << "Zygote mod-union table: ");
1359 failed_ = true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001360 }
1361 }
1362
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001363 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers1d54e732013-05-02 21:10:01 -07001364 return heap_->IsLiveObjectLocked(obj);
1365 }
1366
1367 static void VerifyRoots(const mirror::Object* root, void* arg) {
1368 VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
1369 (*visitor)(NULL, root, MemberOffset(0), true);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001370 }
1371
1372 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001373 Heap* const heap_;
1374 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001375};
1376
Ian Rogers1d54e732013-05-02 21:10:01 -07001377// Verify all references within an object, for use with HeapBitmap::Visit.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001378class VerifyObjectVisitor {
1379 public:
Ian Rogers1d54e732013-05-02 21:10:01 -07001380 VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001381 }
1382
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001383 void operator ()(const mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001384 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001385 // Note: we are verifying the references in obj but not obj itself, this is because obj must
1386 // be live or else how did we find it in the live bitmap?
1387 VerifyReferenceVisitor visitor(heap_);
1388 collector::MarkSweep::VisitObjectReferences(obj, visitor);
1389 failed_ = failed_ || visitor.Failed();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001390 }
1391
1392 bool Failed() const {
1393 return failed_;
1394 }
1395
1396 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001397 Heap* const heap_;
1398 mutable bool failed_;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001399};
1400
1401// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001402bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001403 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001404 // Lets sort our allocation stacks so that we can efficiently binary search them.
Ian Rogers1d54e732013-05-02 21:10:01 -07001405 allocation_stack_->Sort();
1406 live_stack_->Sort();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001407 // Perform the verification.
1408 VerifyObjectVisitor visitor(this);
Ian Rogers1d54e732013-05-02 21:10:01 -07001409 Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRoots, &visitor, false, false);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001410 GetLiveBitmap()->Visit(visitor);
1411 // We don't want to verify the objects in the allocation stack since they themselves may be
1412 // pointing to dead objects if they are not reachable.
1413 if (visitor.Failed()) {
1414 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001415 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001416 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001417 return true;
1418}
1419
1420class VerifyReferenceCardVisitor {
1421 public:
1422 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1424 Locks::heap_bitmap_lock_)
Ian Rogers1d54e732013-05-02 21:10:01 -07001425 : heap_(heap), failed_(failed) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001426 }
1427
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001428 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1429 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001430 void operator ()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1431 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001432 // Filter out class references since changing an object's class does not mark the card as dirty.
1433 // Also handles large objects, since the only reference they hold is a class reference.
1434 if (ref != NULL && !ref->IsClass()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001435 accounting::CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001436 // If the object is not dirty and it is referencing something in the live stack other than
1437 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001438 if (!card_table->AddrIsInCardTable(obj)) {
1439 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1440 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001441 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001442 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1443 // kCardDirty - 1 if it didnt get touched since we aged it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001444 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
1445 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
1446 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001447 LOG(ERROR) << "Object " << obj << " found in live stack";
1448 }
1449 if (heap_->GetLiveBitmap()->Test(obj)) {
1450 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1451 }
1452 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1453 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1454
1455 // Print which field of the object is dead.
1456 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001457 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001458 CHECK(klass != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001459 const mirror::ObjectArray<mirror::Field>* fields = is_static ? klass->GetSFields()
1460 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001461 CHECK(fields != NULL);
1462 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001463 const mirror::Field* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001464 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1465 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1466 << PrettyField(cur);
1467 break;
1468 }
1469 }
1470 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001471 const mirror::ObjectArray<mirror::Object>* object_array =
1472 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001473 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1474 if (object_array->Get(i) == ref) {
1475 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1476 }
1477 }
1478 }
1479
1480 *failed_ = true;
1481 }
1482 }
1483 }
1484 }
1485
1486 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001487 Heap* const heap_;
1488 bool* const failed_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001489};
1490
1491class VerifyLiveStackReferences {
1492 public:
1493 VerifyLiveStackReferences(Heap* heap)
1494 : heap_(heap),
1495 failed_(false) {
1496
1497 }
1498
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001499 void operator ()(const mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001500 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1501 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
Ian Rogers1d54e732013-05-02 21:10:01 -07001502 collector::MarkSweep::VisitObjectReferences(obj, visitor);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001503 }
1504
1505 bool Failed() const {
1506 return failed_;
1507 }
1508
1509 private:
Ian Rogers1d54e732013-05-02 21:10:01 -07001510 Heap* const heap_;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001511 bool failed_;
1512};
1513
1514bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001515 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001516
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001517 // We need to sort the live stack since we binary search it.
Ian Rogers1d54e732013-05-02 21:10:01 -07001518 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001519 VerifyLiveStackReferences visitor(this);
1520 GetLiveBitmap()->Visit(visitor);
1521
1522 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001523 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001524 visitor(*it);
1525 }
1526
1527 if (visitor.Failed()) {
1528 DumpSpaces();
1529 return false;
1530 }
1531 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001532}
1533
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001534void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001535 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001536
1537 // Sort the live stack so that we can quickly binary search it later.
Ian Rogers04d7aa92013-03-16 14:29:17 -07001538 if (verify_object_mode_ > kNoHeapVerification) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001539 live_stack_->Sort();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001540 }
1541}
1542
Ian Rogers1d54e732013-05-02 21:10:01 -07001543void Heap::ProcessCards(base::NewTimingLogger& timings) {
1544 // Clear cards and keep track of cards cleared in the mod-union table.
1545 typedef std::vector<space::ContinuousSpace*>::iterator It;
1546 for (It it = continuous_spaces_.begin(), end = continuous_spaces_.end(); it != end; ++it) {
1547 space::ContinuousSpace* space = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001548 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001549 timings.NewSplit("ModUnionClearCards");
1550 image_mod_union_table_->ClearCards(space);
1551 } else if (space->IsZygoteSpace()) {
1552 timings.NewSplit("ZygoteModUnionClearCards");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001553 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001554 } else {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001555 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1556 // were dirty before the GC started.
Ian Rogers1d54e732013-05-02 21:10:01 -07001557 timings.NewSplit("AllocSpaceClearCards");
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001558 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001559 }
1560 }
1561}
1562
Ian Rogers1d54e732013-05-02 21:10:01 -07001563void Heap::PreGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001564 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1565 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001566
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001567 if (verify_pre_gc_heap_) {
1568 thread_list->SuspendAll();
1569 {
1570 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1571 if (!VerifyHeapReferences()) {
1572 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1573 }
1574 }
1575 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001576 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001577
1578 // Check that all objects which reference things in the live stack are on dirty cards.
1579 if (verify_missing_card_marks_) {
1580 thread_list->SuspendAll();
1581 {
1582 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1583 SwapStacks();
1584 // Sort the live stack so that we can quickly binary search it later.
1585 if (!VerifyMissingCardMarks()) {
1586 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1587 }
1588 SwapStacks();
1589 }
1590 thread_list->ResumeAll();
1591 }
1592
1593 if (verify_mod_union_table_) {
1594 thread_list->SuspendAll();
1595 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
1596 zygote_mod_union_table_->Update();
1597 zygote_mod_union_table_->Verify();
Ian Rogers1d54e732013-05-02 21:10:01 -07001598 image_mod_union_table_->Update();
1599 image_mod_union_table_->Verify();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001600 thread_list->ResumeAll();
1601 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001602}
1603
Ian Rogers1d54e732013-05-02 21:10:01 -07001604void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001605 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001607 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1608 // reachable objects.
1609 if (verify_post_gc_heap_) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001610 Thread* self = Thread::Current();
1611 CHECK_NE(self->GetState(), kRunnable);
1612 Locks::mutator_lock_->SharedUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001613 thread_list->SuspendAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001614 {
1615 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1616 // Swapping bound bitmaps does nothing.
1617 gc->SwapBitmaps();
1618 if (!VerifyHeapReferences()) {
1619 LOG(FATAL) << "Post " << gc->GetName() << "GC verification failed";
1620 }
1621 gc->SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001622 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001623 thread_list->ResumeAll();
Ian Rogers1d54e732013-05-02 21:10:01 -07001624 Locks::mutator_lock_->SharedLock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001625 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001626}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001627
Ian Rogers1d54e732013-05-02 21:10:01 -07001628void Heap::PostGcVerification(collector::GarbageCollector* gc) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001629 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001630
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001631 if (verify_system_weaks_) {
1632 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07001633 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001634 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001635 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001636}
1637
Ian Rogers1d54e732013-05-02 21:10:01 -07001638collector::GcType Heap::WaitForConcurrentGcToComplete(Thread* self) {
1639 collector::GcType last_gc_type = collector::kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001640 if (concurrent_gc_) {
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001641 ATRACE_BEGIN("GC: Wait For Concurrent");
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001642 bool do_wait;
1643 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001644 {
1645 // Check if GC is running holding gc_complete_lock_.
Ian Rogers81d425b2012-09-27 16:03:43 -07001646 MutexLock mu(self, *gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001647 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001648 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001649 if (do_wait) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001650 uint64_t wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001651 // We must wait, change thread state then sleep on gc_complete_cond_;
1652 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1653 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001654 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001655 while (is_gc_running_) {
Ian Rogersc604d732012-10-14 16:09:54 -07001656 gc_complete_cond_->Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001657 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001658 last_gc_type = last_gc_type_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001659 wait_time = NanoTime() - wait_start;;
1660 total_wait_time_ += wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001661 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001662 if (wait_time > kLongGcPauseThreshold) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001663 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1664 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001665 }
Mathieu Chartier752a0e62013-06-27 11:03:27 -07001666 ATRACE_END();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001667 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001668 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001669}
1670
Elliott Hughesc967f782012-04-16 10:23:15 -07001671void Heap::DumpForSigQuit(std::ostream& os) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001672 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001673 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Elliott Hughes8b788fe2013-04-17 15:57:01 -07001674 DumpGcPerformanceInfo(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001675}
1676
1677size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001678 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001679}
1680
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001681void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001682 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001683 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001684 << PrettySize(GetMaxMemory());
1685 max_allowed_footprint = GetMaxMemory();
1686 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001687 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001688}
1689
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001690void Heap::GrowForUtilization(collector::GcType gc_type, uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001691 // We know what our utilization is at this moment.
1692 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001693 const size_t bytes_allocated = GetBytesAllocated();
1694 last_gc_size_ = bytes_allocated;
Ian Rogers1d54e732013-05-02 21:10:01 -07001695 last_gc_time_ns_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001696
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001697 size_t target_size;
1698 if (gc_type != collector::kGcTypeSticky) {
1699 // Grow the heap for non sticky GC.
1700 target_size = bytes_allocated / GetTargetHeapUtilization();
1701 if (target_size > bytes_allocated + max_free_) {
1702 target_size = bytes_allocated + max_free_;
1703 } else if (target_size < bytes_allocated + min_free_) {
1704 target_size = bytes_allocated + min_free_;
1705 }
1706 next_gc_type_ = collector::kGcTypeSticky;
1707 } else {
1708 // Based on how close the current heap size is to the target size, decide
1709 // whether or not to do a partial or sticky GC next.
1710 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1711 next_gc_type_ = collector::kGcTypeSticky;
1712 } else {
1713 next_gc_type_ = collector::kGcTypePartial;
1714 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001715
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001716 // If we have freed enough memory, shrink the heap back down.
1717 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1718 target_size = bytes_allocated + max_free_;
1719 } else {
1720 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1721 }
1722 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001723 SetIdealFootprint(target_size);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001724
Ian Rogers1d54e732013-05-02 21:10:01 -07001725 // Calculate when to perform the next ConcurrentGC.
1726 if (concurrent_gc_) {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001727 // Calculate the estimated GC duration.
1728 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1729 // Estimate how many remaining bytes we will have when we need to start the next GC.
1730 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
Ian Rogers1d54e732013-05-02 21:10:01 -07001731 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
1732 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1733 // A never going to happen situation that from the estimated allocation rate we will exceed
1734 // the applications entire footprint with the given estimated allocation rate. Schedule
1735 // another GC straight away.
1736 concurrent_start_bytes_ = bytes_allocated;
1737 } else {
Mathieu Chartier65db8802012-11-20 12:36:46 -08001738 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1739 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1740 // right away.
1741 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001742 }
1743 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1744 DCHECK_LE(max_allowed_footprint_, growth_limit_);
1745 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001746}
1747
jeffhaoc1160702011-10-27 15:48:45 -07001748void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08001749 growth_limit_ = capacity_;
jeffhaoc1160702011-10-27 15:48:45 -07001750 alloc_space_->ClearGrowthLimit();
1751}
1752
Elliott Hughesadb460d2011-10-05 17:02:34 -07001753void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001754 MemberOffset reference_queue_offset,
1755 MemberOffset reference_queueNext_offset,
1756 MemberOffset reference_pendingNext_offset,
1757 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001758 reference_referent_offset_ = reference_referent_offset;
1759 reference_queue_offset_ = reference_queue_offset;
1760 reference_queueNext_offset_ = reference_queueNext_offset;
1761 reference_pendingNext_offset_ = reference_pendingNext_offset;
1762 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1763 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1764 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1765 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1766 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1767 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1768}
1769
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001770mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001771 DCHECK(reference != NULL);
1772 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001773 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001774}
1775
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001776void Heap::ClearReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001777 DCHECK(reference != NULL);
1778 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1779 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1780}
1781
1782// Returns true if the reference object has not yet been enqueued.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001783bool Heap::IsEnqueuable(const mirror::Object* ref) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001784 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001785 const mirror::Object* queue =
1786 ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false);
1787 const mirror::Object* queue_next =
1788 ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001789 return (queue != NULL) && (queue_next == NULL);
1790}
1791
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001792void Heap::EnqueueReference(mirror::Object* ref, mirror::Object** cleared_reference_list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001793 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001794 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false) != NULL);
1795 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false) == NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001796 EnqueuePendingReference(ref, cleared_reference_list);
1797}
1798
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001799void Heap::EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001800 DCHECK(ref != NULL);
1801 DCHECK(list != NULL);
1802
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001803 // TODO: Remove this lock, use atomic stacks for storing references.
1804 MutexLock mu(Thread::Current(), *reference_queue_lock_);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001805 if (*list == NULL) {
1806 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1807 *list = ref;
1808 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001809 mirror::Object* head =
1810 (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001811 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1812 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1813 }
1814}
1815
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001816mirror::Object* Heap::DequeuePendingReference(mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001817 DCHECK(list != NULL);
1818 DCHECK(*list != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001819 mirror::Object* head = (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1820 false);
1821 mirror::Object* ref;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001822
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001823 // Note: the following code is thread-safe because it is only called from ProcessReferences which
1824 // is single threaded.
Elliott Hughesadb460d2011-10-05 17:02:34 -07001825 if (*list == head) {
1826 ref = *list;
1827 *list = NULL;
1828 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001829 mirror::Object* next = head->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1830 false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001831 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1832 ref = head;
1833 }
1834 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1835 return ref;
1836}
1837
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001838void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001839 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08001840 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001841 ArgArray arg_array(NULL, 0);
1842 arg_array.Append(reinterpret_cast<uint32_t>(object));
1843 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07001844 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001845}
1846
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001847void Heap::EnqueueClearedReferences(mirror::Object** cleared) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001848 DCHECK(cleared != NULL);
1849 if (*cleared != NULL) {
Ian Rogers64b6d142012-10-29 16:34:15 -07001850 // When a runtime isn't started there are no reference queues to care about so ignore.
1851 if (LIKELY(Runtime::Current()->IsStarted())) {
1852 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08001853 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001854 ArgArray arg_array(NULL, 0);
1855 arg_array.Append(reinterpret_cast<uint32_t>(*cleared));
1856 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07001857 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07001858 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001859 *cleared = NULL;
1860 }
1861}
1862
Ian Rogers1f539342012-10-03 21:09:42 -07001863void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001864 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07001865 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001866 DCHECK(concurrent_gc_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001867 if (runtime == NULL || !runtime->IsFinishedStarting() ||
Ian Rogers120f1c72012-09-28 17:17:10 -07001868 !runtime->IsConcurrentGcEnabled()) {
1869 return;
1870 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001871 {
1872 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1873 if (runtime->IsShuttingDown()) {
1874 return;
1875 }
1876 }
1877 if (self->IsHandlingStackOverflow()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001878 return;
1879 }
1880
Ian Rogers120f1c72012-09-28 17:17:10 -07001881 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001882 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1883 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001884 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1885 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001886 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001887}
1888
Ian Rogers81d425b2012-09-27 16:03:43 -07001889void Heap::ConcurrentGC(Thread* self) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001890 {
1891 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001892 if (Runtime::Current()->IsShuttingDown()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001893 return;
1894 }
Mathieu Chartier2542d662012-06-21 17:14:11 -07001895 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001896
Mathieu Chartier65db8802012-11-20 12:36:46 -08001897 // Wait for any GCs currently running to finish.
Ian Rogers1d54e732013-05-02 21:10:01 -07001898 if (WaitForConcurrentGcToComplete(self) == collector::kGcTypeNone) {
Mathieu Chartierbdd0fb92013-07-02 10:16:15 -07001899 CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001900 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001901}
1902
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001903void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08001904 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
1905 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
1906 // a space it will hold its lock and can become a cause of jank.
1907 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
1908 // forking.
1909
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001910 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1911 // because that only marks object heads, so a large array looks like lots of empty space. We
1912 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1913 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1914 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1915 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08001916 uint64_t ms_time = MilliTime();
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001917 float utilization =
Ian Rogers1d54e732013-05-02 21:10:01 -07001918 static_cast<float>(alloc_space_->GetBytesAllocated()) / alloc_space_->Size();
1919 if ((utilization > 0.75f) || ((ms_time - last_trim_time_ms_) < 2 * 1000)) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001920 // Don't bother trimming the alloc space if it's more than 75% utilized, or if a
1921 // heap trim occurred in the last two seconds.
1922 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001923 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001924
1925 Thread* self = Thread::Current();
1926 {
1927 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1928 Runtime* runtime = Runtime::Current();
1929 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown()) {
1930 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
1931 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
1932 // as we don't hold the lock while requesting the trim).
1933 return;
1934 }
Ian Rogerse1d490c2012-02-03 09:09:07 -08001935 }
Ian Rogers48931882013-01-22 14:35:16 -08001936
1937 SchedPolicy policy;
1938 get_sched_policy(self->GetTid(), &policy);
1939 if (policy == SP_FOREGROUND || policy == SP_AUDIO_APP) {
1940 // Don't trim the heap if we are a foreground or audio app.
1941 return;
1942 }
1943
Ian Rogers1d54e732013-05-02 21:10:01 -07001944 last_trim_time_ms_ = ms_time;
Ian Rogers120f1c72012-09-28 17:17:10 -07001945 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001946 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1947 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001948 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1949 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001950 CHECK(!env->ExceptionCheck());
1951}
1952
Ian Rogers48931882013-01-22 14:35:16 -08001953size_t Heap::Trim() {
1954 // Handle a requested heap trim on a thread outside of the main GC thread.
1955 return alloc_space_->Trim();
1956}
1957
Ian Rogers1d54e732013-05-02 21:10:01 -07001958} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -07001959} // namespace art