blob: 2f7cb2406484adb42a7e7476d69a9330e7d72a8a [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
Brian Carlstrom5643b782012-02-05 12:32:53 -080019#include <sys/types.h>
20#include <sys/wait.h>
21
Brian Carlstrom58ae9412011-10-04 00:56:06 -070022#include <limits>
Carl Shapiro58551df2011-07-24 03:09:51 -070023#include <vector>
24
Elliott Hughes1aa246d2012-12-13 09:29:36 -080025#include "base/stl_util.h"
Ian Rogers48931882013-01-22 14:35:16 -080026#include "cutils/sched_policy.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070027#include "debugger.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070028#include "gc/atomic_stack.h"
29#include "gc/card_table.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "gc/card_table-inl.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070031#include "gc/heap_bitmap.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032#include "gc/heap_bitmap-inl.h"
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070033#include "gc/large_object_space.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070034#include "gc/mark_sweep.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "gc/mark_sweep-inl.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080036#include "gc/partial_mark_sweep.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "gc/space_bitmap-inl.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080038#include "gc/sticky_mark_sweep.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070039#include "gc/mod_union_table.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "gc/mod_union_table-inl.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070041#include "gc/space.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070042#include "image.h"
Jeff Hao5d917302013-02-27 17:57:33 -080043#include "invoke_arg_array_builder.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/class-inl.h"
45#include "mirror/field-inl.h"
46#include "mirror/object.h"
47#include "mirror/object-inl.h"
48#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080049#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080050#include "os.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070051#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070052#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070053#include "sirt_ref.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070054#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070055#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070056#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070057
58namespace art {
59
Mathieu Chartier2b82db42012-11-14 17:29:05 -080060static const uint64_t kSlowGcThreshold = MsToNs(100);
61static const uint64_t kLongGcPauseThreshold = MsToNs(5);
Mathieu Chartier65db8802012-11-20 12:36:46 -080062static const bool kDumpGcPerformanceOnShutdown = false;
Mathieu Chartier0051be62012-10-12 17:47:11 -070063const double Heap::kDefaultTargetUtilization = 0.5;
64
Elliott Hughesae80b492012-04-24 10:43:17 -070065static bool GenerateImage(const std::string& image_file_name) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080066 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
Brian Carlstrom5643b782012-02-05 12:32:53 -080067 std::vector<std::string> boot_class_path;
68 Split(boot_class_path_string, ':', boot_class_path);
Brian Carlstromb2793372012-03-17 18:27:16 -070069 if (boot_class_path.empty()) {
70 LOG(FATAL) << "Failed to generate image because no boot class path specified";
71 }
Brian Carlstrom5643b782012-02-05 12:32:53 -080072
73 std::vector<char*> arg_vector;
74
75 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -070076 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom5643b782012-02-05 12:32:53 -080077 const char* dex2oat = dex2oat_string.c_str();
78 arg_vector.push_back(strdup(dex2oat));
79
80 std::string image_option_string("--image=");
81 image_option_string += image_file_name;
82 const char* image_option = image_option_string.c_str();
83 arg_vector.push_back(strdup(image_option));
84
85 arg_vector.push_back(strdup("--runtime-arg"));
86 arg_vector.push_back(strdup("-Xms64m"));
87
88 arg_vector.push_back(strdup("--runtime-arg"));
89 arg_vector.push_back(strdup("-Xmx64m"));
90
91 for (size_t i = 0; i < boot_class_path.size(); i++) {
92 std::string dex_file_option_string("--dex-file=");
93 dex_file_option_string += boot_class_path[i];
94 const char* dex_file_option = dex_file_option_string.c_str();
95 arg_vector.push_back(strdup(dex_file_option));
96 }
97
98 std::string oat_file_option_string("--oat-file=");
99 oat_file_option_string += image_file_name;
100 oat_file_option_string.erase(oat_file_option_string.size() - 3);
101 oat_file_option_string += "oat";
102 const char* oat_file_option = oat_file_option_string.c_str();
103 arg_vector.push_back(strdup(oat_file_option));
104
jeffhao8161c032012-10-31 15:50:00 -0700105 std::string base_option_string(StringPrintf("--base=0x%x", ART_BASE_ADDRESS));
106 arg_vector.push_back(strdup(base_option_string.c_str()));
Brian Carlstrom5643b782012-02-05 12:32:53 -0800107
Brian Carlstrom265091e2013-01-30 14:08:26 -0800108 if (!kIsTargetBuild) {
109 arg_vector.push_back(strdup("--host"));
110 }
111
Elliott Hughes48436bb2012-02-07 15:23:28 -0800112 std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom5643b782012-02-05 12:32:53 -0800113 LOG(INFO) << command_line;
114
Elliott Hughes48436bb2012-02-07 15:23:28 -0800115 arg_vector.push_back(NULL);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800116 char** argv = &arg_vector[0];
117
118 // fork and exec dex2oat
119 pid_t pid = fork();
120 if (pid == 0) {
121 // no allocation allowed between fork and exec
122
123 // change process groups, so we don't get reaped by ProcessManager
124 setpgid(0, 0);
125
126 execv(dex2oat, argv);
127
128 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
129 return false;
130 } else {
131 STLDeleteElements(&arg_vector);
132
133 // wait for dex2oat to finish
134 int status;
135 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
136 if (got_pid != pid) {
137 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
138 return false;
139 }
140 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
141 LOG(ERROR) << dex2oat << " failed: " << command_line;
142 return false;
143 }
144 }
145 return true;
146}
147
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700148void Heap::UnReserveOatFileAddressRange() {
149 oat_file_map_.reset(NULL);
150}
151
Mathieu Chartier0051be62012-10-12 17:47:11 -0700152Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
153 double target_utilization, size_t capacity,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700154 const std::string& original_image_file_name, bool concurrent_gc)
155 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800156 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700157 concurrent_gc_(concurrent_gc),
158 have_zygote_space_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800159 is_gc_running_(false),
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700160 last_gc_type_(kGcTypeNone),
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700161 enforce_heap_growth_rate_(false),
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800162 capacity_(capacity),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700163 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700164 max_allowed_footprint_(initial_size),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700165 concurrent_start_size_(128 * KB),
166 concurrent_min_free_(256 * KB),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800167 concurrent_start_bytes_(concurrent_gc ? initial_size - concurrent_start_size_ :
168 std::numeric_limits<size_t>::max()),
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700169 sticky_gc_count_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700170 total_bytes_freed_(0),
171 total_objects_freed_(0),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700172 large_object_threshold_(3 * kPageSize),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800173 num_bytes_allocated_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700174 verify_missing_card_marks_(false),
175 verify_system_weaks_(false),
176 verify_pre_gc_heap_(false),
177 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700178 verify_mod_union_table_(false),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700179 partial_gc_frequency_(10),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700180 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700181 min_remaining_space_for_sticky_gc_(1 * MB),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700182 last_trim_time_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800183 allocation_rate_(0),
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700184 max_allocation_stack_size_(MB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800185 reference_referent_offset_(0),
186 reference_queue_offset_(0),
187 reference_queueNext_offset_(0),
188 reference_pendingNext_offset_(0),
189 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700190 min_free_(min_free),
191 max_free_(max_free),
192 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700193 total_wait_time_(0),
194 measure_allocation_time_(false),
195 total_allocation_time_(0),
Ian Rogers04d7aa92013-03-16 14:29:17 -0700196 verify_object_mode_(kHeapVerificationNotPermitted) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800197 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800198 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700199 }
200
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700201 live_bitmap_.reset(new HeapBitmap(this));
202 mark_bitmap_.reset(new HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700203
Ian Rogers30fab402012-01-23 15:43:46 -0800204 // Requested begin for the alloc space, to follow the mapped image and oat files
205 byte* requested_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800206 std::string image_file_name(original_image_file_name);
207 if (!image_file_name.empty()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700208 ImageSpace* image_space = NULL;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700209
Brian Carlstrom5643b782012-02-05 12:32:53 -0800210 if (OS::FileExists(image_file_name.c_str())) {
211 // If the /system file exists, it should be up-to-date, don't try to generate
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700212 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800213 } else {
214 // If the /system file didn't exist, we need to use one from the art-cache.
215 // If the cache file exists, try to open, but if it fails, regenerate.
216 // If it does not exist, generate.
217 image_file_name = GetArtCacheFilenameOrDie(image_file_name);
218 if (OS::FileExists(image_file_name.c_str())) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700219 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800220 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700221 if (image_space == NULL) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700222 CHECK(GenerateImage(image_file_name)) << "Failed to generate image: " << image_file_name;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700223 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800224 }
225 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700226
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700227 CHECK(image_space != NULL) << "Failed to create space from " << image_file_name;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700228 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800229 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
230 // isn't going to get in the middle
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800231 byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
232 CHECK_GT(oat_file_end_addr, image_space->End());
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700233
234 // Reserve address range from image_space->End() to image_space->GetImageHeader().GetOatEnd()
235 uintptr_t reserve_begin = RoundUp(reinterpret_cast<uintptr_t>(image_space->End()), kPageSize);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800236 uintptr_t reserve_end = RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr), kPageSize);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700237 oat_file_map_.reset(MemMap::MapAnonymous("oat file reserve",
238 reinterpret_cast<byte*>(reserve_begin),
Ian Rogers10c5b782013-01-10 10:40:53 -0800239 reserve_end - reserve_begin, PROT_NONE));
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700240
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800241 if (oat_file_end_addr > requested_begin) {
242 requested_begin = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_file_end_addr),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700243 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700244 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700245 }
246
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700247 // Allocate the large object space.
Ian Rogers22a20862013-03-16 16:34:57 -0700248 const bool kUseFreeListSpaceForLOS = false;
249 if (kUseFreeListSpaceForLOS) {
250 large_object_space_.reset(FreeListSpace::Create("large object space", NULL, capacity));
251 } else {
252 large_object_space_.reset(LargeObjectMapSpace::Create("large object space"));
253 }
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700254 live_bitmap_->SetLargeObjects(large_object_space_->GetLiveObjects());
255 mark_bitmap_->SetLargeObjects(large_object_space_->GetMarkObjects());
256
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700257 UniquePtr<DlMallocSpace> alloc_space(DlMallocSpace::Create("alloc space", initial_size,
258 growth_limit, capacity,
259 requested_begin));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700260 alloc_space_ = alloc_space.release();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700261 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
jeffhao8161c032012-10-31 15:50:00 -0700262 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700263 AddSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700264
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700265 // Spaces are sorted in order of Begin().
266 byte* heap_begin = spaces_.front()->Begin();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700267 size_t heap_capacity = spaces_.back()->End() - spaces_.front()->Begin();
268 if (spaces_.back()->IsAllocSpace()) {
269 heap_capacity += spaces_.back()->AsAllocSpace()->NonGrowthLimitCapacity();
270 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700271
Ian Rogers30fab402012-01-23 15:43:46 -0800272 // Mark image objects in the live bitmap
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700273 // TODO: C++0x
274 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
275 Space* space = *it;
Ian Rogers30fab402012-01-23 15:43:46 -0800276 if (space->IsImageSpace()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700277 ImageSpace* image_space = space->AsImageSpace();
278 image_space->RecordImageAllocations(image_space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800279 }
280 }
281
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800282 // Allocate the card table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700283 card_table_.reset(CardTable::Create(heap_begin, heap_capacity));
284 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700285
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700286 mod_union_table_.reset(new ModUnionTableToZygoteAllocspace<ModUnionTableReferenceCache>(this));
287 CHECK(mod_union_table_.get() != NULL) << "Failed to create mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700288
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700289 zygote_mod_union_table_.reset(new ModUnionTableCardCache(this));
290 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700291
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700292 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700293 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800295 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700296 static const size_t default_mark_stack_size = 64 * KB;
Ian Rogersa40307e2013-02-22 11:32:44 -0800297 mark_stack_.reset(ObjectStack::Create("mark stack", default_mark_stack_size));
298 allocation_stack_.reset(ObjectStack::Create("allocation stack",
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700299 max_allocation_stack_size_));
Ian Rogersa40307e2013-02-22 11:32:44 -0800300 live_stack_.reset(ObjectStack::Create("live stack",
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700301 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700302
Mathieu Chartier65db8802012-11-20 12:36:46 -0800303 // It's still too early to take a lock because there are no threads yet, but we can create locks
304 // now. We don't create it earlier to make it clear that you can't use locks during heap
305 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700306 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700307 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
308 *gc_complete_lock_));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700309
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700310 // Create the reference queue lock, this is required so for parrallel object scanning in the GC.
311 reference_queue_lock_.reset(new Mutex("reference queue lock"));
312
Mathieu Chartier65db8802012-11-20 12:36:46 -0800313 last_gc_time_ = NanoTime();
314 last_gc_size_ = GetBytesAllocated();
315
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800316 // Create our garbage collectors.
317 for (size_t i = 0; i < 2; ++i) {
318 const bool concurrent = i != 0;
319 mark_sweep_collectors_.push_back(new MarkSweep(this, concurrent));
320 mark_sweep_collectors_.push_back(new PartialMarkSweep(this, concurrent));
321 mark_sweep_collectors_.push_back(new StickyMarkSweep(this, concurrent));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700322 }
323
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800324 CHECK(max_allowed_footprint_ != 0);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800325 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800326 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700327 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700328}
329
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700330void Heap::CreateThreadPool() {
331 // TODO: Make sysconf(_SC_NPROCESSORS_CONF) be a helper function?
332 // Use the number of processors - 1 since the thread doing the GC does work while its waiting for
333 // workers to complete.
334 thread_pool_.reset(new ThreadPool(sysconf(_SC_NPROCESSORS_CONF) - 1));
335}
336
337void Heap::DeleteThreadPool() {
338 thread_pool_.reset(NULL);
339}
340
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700341// Sort spaces based on begin address
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700342struct SpaceSorter {
343 bool operator ()(const ContinuousSpace* a, const ContinuousSpace* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700344 return a->Begin() < b->Begin();
345 }
346};
347
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700348void Heap::AddSpace(ContinuousSpace* space) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700349 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700350 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700351 DCHECK(space->GetLiveBitmap() != NULL);
352 live_bitmap_->AddSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700353 DCHECK(space->GetMarkBitmap() != NULL);
354 mark_bitmap_->AddSpaceBitmap(space->GetMarkBitmap());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800355 spaces_.push_back(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700356 if (space->IsAllocSpace()) {
357 alloc_space_ = space->AsAllocSpace();
358 }
359
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700360 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
361 std::sort(spaces_.begin(), spaces_.end(), SpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700362
363 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
364 // avoid redundant marking.
365 bool seen_zygote = false, seen_alloc = false;
366 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
367 Space* space = *it;
368 if (space->IsImageSpace()) {
369 DCHECK(!seen_zygote);
370 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700371 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700372 DCHECK(!seen_alloc);
373 seen_zygote = true;
374 } else if (space->IsAllocSpace()) {
375 seen_alloc = true;
376 }
377 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800378}
379
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700380void Heap::DumpGcPerformanceInfo() {
381 // Dump cumulative timings.
382 LOG(INFO) << "Dumping cumulative Gc timings";
383 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800384
385 // Dump cumulative loggers for each GC type.
386 // TODO: C++0x
387 uint64_t total_paused_time = 0;
388 for (Collectors::const_iterator it = mark_sweep_collectors_.begin();
Sameer Abu Asala8439542013-02-14 16:06:42 -0800389 it != mark_sweep_collectors_.end(); ++it) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800390 MarkSweep* collector = *it;
Sameer Abu Asala8439542013-02-14 16:06:42 -0800391 CumulativeLogger& logger = collector->GetCumulativeTimings();
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800392 if (logger.GetTotalNs() != 0) {
Sameer Abu Asala8439542013-02-14 16:06:42 -0800393 LOG(INFO) << Dumpable<CumulativeLogger>(logger);
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800394 const uint64_t total_ns = logger.GetTotalNs();
395 const uint64_t total_pause_ns = (*it)->GetTotalPausedTime();
396 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
397 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
398 const uint64_t freed_objects = collector->GetTotalFreedObjects();
399 LOG(INFO)
400 << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
401 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
402 << collector->GetName() << " freed: " << freed_objects
403 << " objects with total size " << PrettySize(freed_bytes) << "\n"
404 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
405 << PrettySize(freed_bytes / seconds) << "/s\n";
406 total_duration += total_ns;
407 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700408 }
409 }
410 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
411 size_t total_objects_allocated = GetTotalObjectsAllocated();
412 size_t total_bytes_allocated = GetTotalBytesAllocated();
413 if (total_duration != 0) {
414 const double total_seconds = double(total_duration / 1000) / 1000000.0;
415 LOG(INFO) << "Total time spent in GC: " << PrettyDuration(total_duration);
416 LOG(INFO) << "Mean GC size throughput: "
417 << PrettySize(GetTotalBytesFreed() / total_seconds) << "/s";
Elliott Hughes80537bb2013-01-04 16:37:26 -0800418 LOG(INFO) << "Mean GC object throughput: "
419 << (GetTotalObjectsFreed() / total_seconds) << " objects/s";
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700420 }
421 LOG(INFO) << "Total number of allocations: " << total_objects_allocated;
422 LOG(INFO) << "Total bytes allocated " << PrettySize(total_bytes_allocated);
423 if (measure_allocation_time_) {
424 LOG(INFO) << "Total time spent allocating: " << PrettyDuration(allocation_time);
425 LOG(INFO) << "Mean allocation time: "
426 << PrettyDuration(allocation_time / total_objects_allocated);
427 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800428 LOG(INFO) << "Total mutator paused time: " << PrettyDuration(total_paused_time);
Elliott Hughes80537bb2013-01-04 16:37:26 -0800429 LOG(INFO) << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700430}
431
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800432Heap::~Heap() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700433 if (kDumpGcPerformanceOnShutdown) {
434 DumpGcPerformanceInfo();
435 }
436
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800437 STLDeleteElements(&mark_sweep_collectors_);
438
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700439 // If we don't reset then the mark stack complains in it's destructor.
440 allocation_stack_->Reset();
441 live_stack_->Reset();
442
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800443 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800444 // We can't take the heap lock here because there might be a daemon thread suspended with the
445 // heap lock held. We know though that no non-daemon threads are executing, and we know that
446 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
447 // those threads can't resume. We're the only running thread, and we can do whatever we like...
Carl Shapiro58551df2011-07-24 03:09:51 -0700448 STLDeleteElements(&spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700449 delete gc_complete_lock_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700450}
451
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800452ContinuousSpace* Heap::FindSpaceFromObject(const mirror::Object* obj) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700453 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700454 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
455 if ((*it)->Contains(obj)) {
456 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700457 }
458 }
459 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
460 return NULL;
461}
462
463ImageSpace* Heap::GetImageSpace() {
464 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700465 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
466 if ((*it)->IsImageSpace()) {
467 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700468 }
469 }
470 return NULL;
471}
472
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700473DlMallocSpace* Heap::GetAllocSpace() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700474 return alloc_space_;
475}
476
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700477static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700478 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700479 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700480 size_t chunk_free_bytes = chunk_size - used_bytes;
481 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
482 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700483 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700484}
485
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800486mirror::Object* Heap::AllocObject(Thread* self, mirror::Class* c, size_t byte_count) {
487 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(mirror::Class)) ||
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700488 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
489 strlen(ClassHelper(c).GetDescriptor()) == 0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800490 DCHECK_GE(byte_count, sizeof(mirror::Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700491
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800492 mirror::Object* obj = NULL;
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700493 size_t size = 0;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700494 uint64_t allocation_start = 0;
495 if (measure_allocation_time_) {
496 allocation_start = NanoTime();
497 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700498
499 // We need to have a zygote space or else our newly allocated large object can end up in the
500 // Zygote resulting in it being prematurely freed.
501 // We can only do this for primive objects since large objects will not be within the card table
502 // range. This also means that we rely on SetClass not dirtying the object's card.
Ian Rogers22a20862013-03-16 16:34:57 -0700503 if (byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700504 size = RoundUp(byte_count, kPageSize);
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700505 obj = Allocate(self, large_object_space_.get(), size);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700506 // Make sure that our large object didn't get placed anywhere within the space interval or else
507 // it breaks the immune range.
508 DCHECK(obj == NULL ||
509 reinterpret_cast<byte*>(obj) < spaces_.front()->Begin() ||
510 reinterpret_cast<byte*>(obj) >= spaces_.back()->End());
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700511 } else {
Ian Rogers50b35e22012-10-04 10:09:15 -0700512 obj = Allocate(self, alloc_space_, byte_count);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700513
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700514 // Ensure that we did not allocate into a zygote space.
515 DCHECK(obj == NULL || !have_zygote_space_ || !FindSpaceFromObject(obj)->IsZygoteSpace());
516 size = alloc_space_->AllocationSize(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700517 }
518
Mathieu Chartier037813d2012-08-23 16:44:59 -0700519 if (LIKELY(obj != NULL)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700521
522 // Record allocation after since we want to use the atomic add for the atomic fence to guard
523 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700524 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700525
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 if (Dbg::IsAllocTrackingEnabled()) {
527 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700528 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700529 if (static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700530 // We already have a request pending, no reason to start more until we update
531 // concurrent_start_bytes_.
532 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700533 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800534 SirtRef<mirror::Object> ref(self, obj);
Ian Rogers1f539342012-10-03 21:09:42 -0700535 RequestConcurrentGC(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700536 }
537 VerifyObject(obj);
538
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700539 if (measure_allocation_time_) {
540 total_allocation_time_ += (NanoTime() - allocation_start) / kTimeAdjust;
541 }
542
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700543 return obj;
544 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800545 std::ostringstream oss;
Mathieu Chartier037813d2012-08-23 16:44:59 -0700546 int64_t total_bytes_free = GetFreeMemory();
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800547 uint64_t alloc_space_size = alloc_space_->GetNumBytesAllocated();
548 uint64_t large_object_size = large_object_space_->GetNumObjectsAllocated();
549 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
550 << " free bytes; allocation space size " << alloc_space_size
551 << "; large object space size " << large_object_size;
552 // If the allocation failed due to fragmentation, print out the largest continuous allocation.
553 if (total_bytes_free >= byte_count) {
554 size_t max_contiguous_allocation = 0;
555 // TODO: C++0x auto
556 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
557 if ((*it)->IsAllocSpace()) {
558 (*it)->AsAllocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
559 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700560 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800561 oss << "; failed due to fragmentation (largest possible contiguous allocation "
562 << max_contiguous_allocation << " bytes)";
Carl Shapiro58551df2011-07-24 03:09:51 -0700563 }
Mathieu Chartier80de7a62012-11-27 17:21:50 -0800564 self->ThrowOutOfMemoryError(oss.str().c_str());
Elliott Hughes418dfe72011-10-06 18:56:27 -0700565 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700566}
567
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800568bool Heap::IsHeapAddress(const mirror::Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700569 // Note: we deliberately don't take the lock here, and mustn't test anything that would
570 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700571 if (obj == NULL) {
572 return true;
573 }
574 if (!IsAligned<kObjectAlignment>(obj)) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700575 return false;
576 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800577 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800578 if (spaces_[i]->Contains(obj)) {
579 return true;
580 }
581 }
Mathieu Chartier0b0b5152012-10-15 13:53:46 -0700582 return large_object_space_->Contains(obj);
Elliott Hughesa2501992011-08-26 19:39:54 -0700583}
584
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800585bool Heap::IsLiveObjectLocked(const mirror::Object* obj) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700586 Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700587 return IsHeapAddress(obj) && GetLiveBitmap()->Test(obj);
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700588}
589
Ian Rogers04d7aa92013-03-16 14:29:17 -0700590void Heap::VerifyObjectImpl(const mirror::Object* obj) {
591 if (Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700592 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700593 return;
594 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700595 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700596}
Elliott Hughes92b3b562011-09-08 16:32:26 -0700597
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700598void Heap::DumpSpaces() {
599 // TODO: C++0x auto
600 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700601 ContinuousSpace* space = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700602 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
603 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
604 LOG(INFO) << space << " " << *space << "\n"
605 << live_bitmap << " " << *live_bitmap << "\n"
606 << mark_bitmap << " " << *mark_bitmap;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700607 }
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700608 if (large_object_space_.get() != NULL) {
609 large_object_space_->Dump(LOG(INFO));
610 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700611}
612
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800613void Heap::VerifyObjectBody(const mirror::Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700614 if (!IsAligned<kObjectAlignment>(obj)) {
615 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700616 }
617
Ian Rogersf0bbeab2012-10-10 18:26:27 -0700618 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
619 // heap_bitmap_lock_.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700620 if (!GetLiveBitmap()->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700621 // Check the allocation stack / live stack.
622 if (!std::binary_search(live_stack_->Begin(), live_stack_->End(), obj) &&
623 std::find(allocation_stack_->Begin(), allocation_stack_->End(), obj) ==
624 allocation_stack_->End()) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700625 if (large_object_space_->GetLiveObjects()->Test(obj)) {
626 DumpSpaces();
627 LOG(FATAL) << "Object is dead: " << obj;
628 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700629 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700630 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700631
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700632 // Ignore early dawn of the universe verifications
Ian Rogers04d7aa92013-03-16 14:29:17 -0700633 if (verify_object_mode_ != kVerifyAllFast && GetObjectsAllocated() > 10) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700634 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800635 mirror::Object::ClassOffset().Int32Value();
636 const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700637 if (c == NULL) {
638 LOG(FATAL) << "Null class in object: " << obj;
639 } else if (!IsAligned<kObjectAlignment>(c)) {
640 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
641 } else if (!GetLiveBitmap()->Test(c)) {
642 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
643 }
644 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
645 // Note: we don't use the accessors here as they have internal sanity checks
646 // that we don't want to run
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800647 raw_addr = reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
648 const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
649 raw_addr = reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
650 const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(raw_addr);
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700651 CHECK_EQ(c_c, c_c_c);
652 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700653}
654
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800655void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700656 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700657 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700658}
659
660void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700661 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700662 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700663}
664
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800665void Heap::RecordAllocation(size_t size, mirror::Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700666 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700667 DCHECK_GT(size, 0u);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700668 num_bytes_allocated_ += size;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700669
670 if (Runtime::Current()->HasStatsEnabled()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700671 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700672 ++thread_stats->allocated_objects;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700673 thread_stats->allocated_bytes += size;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700674
675 // TODO: Update these atomically.
676 RuntimeStats* global_stats = Runtime::Current()->GetStats();
677 ++global_stats->allocated_objects;
678 global_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700679 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700680
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700681 // This is safe to do since the GC will never free objects which are neither in the allocation
682 // stack or the live bitmap.
683 while (!allocation_stack_->AtomicPushBack(obj)) {
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700684 CollectGarbageInternal(kGcTypeSticky, kGcCauseForAlloc, false);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700685 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700686}
687
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700688void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700689 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
690 num_bytes_allocated_ -= freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700691
692 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700693 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700694 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700695 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700696
697 // TODO: Do this concurrently.
698 RuntimeStats* global_stats = Runtime::Current()->GetStats();
699 global_stats->freed_objects += freed_objects;
700 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700701 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700702}
703
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800704mirror::Object* Heap::TryToAllocate(Thread* self, AllocSpace* space, size_t alloc_size, bool grow) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700705 // Should we try to use a CAS here and fix up num_bytes_allocated_ later with AllocationSize?
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800706 if (num_bytes_allocated_ + alloc_size > max_allowed_footprint_) {
707 // max_allowed_footprint_ <= growth_limit_ so it is safe to check in here.
708 if (num_bytes_allocated_ + alloc_size > growth_limit_) {
709 // Completely out of memory.
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700710 return NULL;
711 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700712
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800713 if (enforce_heap_growth_rate_) {
714 if (grow) {
715 // Grow the heap by alloc_size extra bytes.
716 max_allowed_footprint_ = std::min(max_allowed_footprint_ + alloc_size, growth_limit_);
717 VLOG(gc) << "Grow heap to " << PrettySize(max_allowed_footprint_)
718 << " for a " << PrettySize(alloc_size) << " allocation";
719 } else {
720 return NULL;
721 }
722 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700723 }
724
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700725 return space->Alloc(self, alloc_size);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700726}
727
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800728mirror::Object* Heap::Allocate(Thread* self, AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700729 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
730 // done in the runnable state where suspension is expected.
Ian Rogers81d425b2012-09-27 16:03:43 -0700731 DCHECK_EQ(self->GetState(), kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700732 self->AssertThreadSuspensionIsAllowable();
Brian Carlstromb82b6872011-10-26 17:18:07 -0700733
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800734 mirror::Object* ptr = TryToAllocate(self, space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700735 if (ptr != NULL) {
736 return ptr;
737 }
738
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700739 // The allocation failed. If the GC is running, block until it completes, and then retry the
740 // allocation.
Ian Rogers81d425b2012-09-27 16:03:43 -0700741 GcType last_gc = WaitForConcurrentGcToComplete(self);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700742 if (last_gc != kGcTypeNone) {
743 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Ian Rogers50b35e22012-10-04 10:09:15 -0700744 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700745 if (ptr != NULL) {
746 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700747 }
748 }
749
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700750 // Loop through our different Gc types and try to Gc until we get enough free memory.
751 for (size_t i = static_cast<size_t>(last_gc) + 1; i < static_cast<size_t>(kGcTypeMax); ++i) {
752 bool run_gc = false;
753 GcType gc_type = static_cast<GcType>(i);
754 switch (gc_type) {
755 case kGcTypeSticky: {
756 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700757 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
758 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700759 break;
760 }
761 case kGcTypePartial:
762 run_gc = have_zygote_space_;
763 break;
764 case kGcTypeFull:
765 run_gc = true;
766 break;
767 default:
768 break;
769 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700770
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700771 if (run_gc) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700772 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700773 GcType gc_type_ran = CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier65db8802012-11-20 12:36:46 -0800774 DCHECK_GE(static_cast<size_t>(gc_type_ran), i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700775 i = static_cast<size_t>(gc_type_ran);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700776
777 // Did we free sufficient memory for the allocation to succeed?
Ian Rogers50b35e22012-10-04 10:09:15 -0700778 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700779 if (ptr != NULL) {
780 return ptr;
781 }
782 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700783 }
784
785 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700786 // Try harder, growing the heap if necessary.
Ian Rogers50b35e22012-10-04 10:09:15 -0700787 ptr = TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700788 if (ptr != NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700789 return ptr;
790 }
791
Elliott Hughes81ff3182012-03-23 20:35:56 -0700792 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
793 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
794 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700795
Elliott Hughes418dfe72011-10-06 18:56:27 -0700796 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700797 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
798 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700799
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700800 // We don't need a WaitForConcurrentGcToComplete here either.
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700801 CollectGarbageInternal(kGcTypeFull, kGcCauseForAlloc, true);
Ian Rogers50b35e22012-10-04 10:09:15 -0700802 return TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700803}
804
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700805void Heap::SetTargetHeapUtilization(float target) {
806 DCHECK_GT(target, 0.0f); // asserted in Java code
807 DCHECK_LT(target, 1.0f);
808 target_utilization_ = target;
809}
810
811int64_t Heap::GetMaxMemory() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700812 return growth_limit_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700813}
814
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700815int64_t Heap::GetTotalMemory() const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700816 return GetMaxMemory();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700817}
818
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700819int64_t Heap::GetFreeMemory() const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700820 return GetMaxMemory() - num_bytes_allocated_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700821}
822
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700823size_t Heap::GetTotalBytesFreed() const {
824 return total_bytes_freed_;
825}
826
827size_t Heap::GetTotalObjectsFreed() const {
828 return total_objects_freed_;
829}
830
831size_t Heap::GetTotalObjectsAllocated() const {
832 size_t total = large_object_space_->GetTotalObjectsAllocated();
833 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
834 Space* space = *it;
835 if (space->IsAllocSpace()) {
836 total += space->AsAllocSpace()->GetTotalObjectsAllocated();
837 }
838 }
839 return total;
840}
841
842size_t Heap::GetTotalBytesAllocated() const {
843 size_t total = large_object_space_->GetTotalBytesAllocated();
844 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
845 Space* space = *it;
846 if (space->IsAllocSpace()) {
847 total += space->AsAllocSpace()->GetTotalBytesAllocated();
848 }
849 }
850 return total;
851}
852
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700853class InstanceCounter {
854 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800855 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700856 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800857 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700858 }
859
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800860 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800861 for (size_t i = 0; i < classes_.size(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800862 const mirror::Class* instance_class = o->GetClass();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800863 if (use_is_assignable_from_) {
864 if (instance_class != NULL && classes_[i]->IsAssignableFrom(instance_class)) {
865 ++counts_[i];
866 }
867 } else {
868 if (instance_class == classes_[i]) {
869 ++counts_[i];
870 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700871 }
872 }
873 }
874
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700875 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800876 const std::vector<mirror::Class*>& classes_;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800877 bool use_is_assignable_from_;
878 uint64_t* const counts_;
879
880 DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700881};
882
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800883void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800884 uint64_t* counts) {
885 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
886 // is empty, so the live bitmap is the only place we need to look.
887 Thread* self = Thread::Current();
888 self->TransitionFromRunnableToSuspended(kNative);
889 CollectGarbage(false);
890 self->TransitionFromSuspendedToRunnable();
891
892 InstanceCounter counter(classes, use_is_assignable_from, counts);
893 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700894 GetLiveBitmap()->Visit(counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700895}
896
Elliott Hughes3b78c942013-01-15 17:35:41 -0800897class InstanceCollector {
898 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800899 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800900 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
901 : class_(c), max_count_(max_count), instances_(instances) {
902 }
903
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800904 void operator()(const mirror::Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
905 const mirror::Class* instance_class = o->GetClass();
Elliott Hughes3b78c942013-01-15 17:35:41 -0800906 if (instance_class == class_) {
907 if (max_count_ == 0 || instances_.size() < max_count_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800908 instances_.push_back(const_cast<mirror::Object*>(o));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800909 }
910 }
911 }
912
913 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800914 mirror::Class* class_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800915 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800916 std::vector<mirror::Object*>& instances_;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800917
918 DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
919};
920
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800921void Heap::GetInstances(mirror::Class* c, int32_t max_count,
922 std::vector<mirror::Object*>& instances) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800923 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
924 // is empty, so the live bitmap is the only place we need to look.
925 Thread* self = Thread::Current();
926 self->TransitionFromRunnableToSuspended(kNative);
927 CollectGarbage(false);
928 self->TransitionFromSuspendedToRunnable();
929
930 InstanceCollector collector(c, max_count, instances);
931 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
932 GetLiveBitmap()->Visit(collector);
933}
934
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800935class ReferringObjectsFinder {
936 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800937 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
938 std::vector<mirror::Object*>& referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800939 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
940 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
941 }
942
943 // For bitmap Visit.
944 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
945 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 void operator()(const mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800947 MarkSweep::VisitObjectReferences(o, *this);
948 }
949
950 // For MarkSweep::VisitObjectReferences.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800951 void operator ()(const mirror::Object* referrer, const mirror::Object* object,
952 const MemberOffset&, bool) const {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800953 if (object == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800954 referring_objects_.push_back(const_cast<mirror::Object*>(referrer));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800955 }
956 }
957
958 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800959 mirror::Object* object_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800960 uint32_t max_count_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800961 std::vector<mirror::Object*>& referring_objects_;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800962
963 DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
964};
965
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800966void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
967 std::vector<mirror::Object*>& referring_objects) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800968 // We only want reachable instances, so do a GC. This also ensures that the alloc stack
969 // is empty, so the live bitmap is the only place we need to look.
970 Thread* self = Thread::Current();
971 self->TransitionFromRunnableToSuspended(kNative);
972 CollectGarbage(false);
973 self->TransitionFromSuspendedToRunnable();
974
975 ReferringObjectsFinder finder(o, max_count, referring_objects);
976 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
977 GetLiveBitmap()->Visit(finder);
978}
979
Ian Rogers30fab402012-01-23 15:43:46 -0800980void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700981 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
982 // last GC will not have necessarily been cleared.
Ian Rogers81d425b2012-09-27 16:03:43 -0700983 Thread* self = Thread::Current();
984 WaitForConcurrentGcToComplete(self);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700985 CollectGarbageInternal(kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700986}
987
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700988void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700989 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800990 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
991 CollectGarbage(false);
Ian Rogers81d425b2012-09-27 16:03:43 -0700992 Thread* self = Thread::Current();
993 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700994
995 // Try to see if we have any Zygote spaces.
996 if (have_zygote_space_) {
997 return;
998 }
999
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001000 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
1001
1002 {
1003 // Flush the alloc stack.
Ian Rogers81d425b2012-09-27 16:03:43 -07001004 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001005 FlushAllocStack();
1006 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001007
1008 // Replace the first alloc space we find with a zygote space.
1009 // TODO: C++0x auto
1010 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1011 if ((*it)->IsAllocSpace()) {
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001012 DlMallocSpace* zygote_space = (*it)->AsAllocSpace();
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001013
1014 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
1015 // of the remaining available heap memory.
1016 alloc_space_ = zygote_space->CreateZygoteSpace();
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001017 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001018
1019 // Change the GC retention policy of the zygote space to only collect when full.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001020 zygote_space->SetGcRetentionPolicy(kGcRetentionPolicyFullCollect);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001021 AddSpace(alloc_space_);
1022 have_zygote_space_ = true;
1023 break;
1024 }
1025 }
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001026
Ian Rogers5f5a2c02012-09-17 10:52:08 -07001027 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001028 // TODO: C++0x
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001029 for (Collectors::const_iterator it = mark_sweep_collectors_.begin();
1030 it != mark_sweep_collectors_.end(); ++it) {
1031 (*it)->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001032 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001033}
1034
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001035void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001036 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1037 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001038 allocation_stack_->Reset();
1039}
1040
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001041size_t Heap::GetUsedMemorySize() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001042 return num_bytes_allocated_;
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001043}
1044
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001045void Heap::MarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001046 mirror::Object** limit = stack->End();
1047 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1048 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001049 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001050 if (LIKELY(bitmap->HasAddress(obj))) {
1051 bitmap->Set(obj);
1052 } else {
1053 large_objects->Set(obj);
1054 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001055 }
1056}
1057
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001058void Heap::UnMarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, ObjectStack* stack) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001059 mirror::Object** limit = stack->End();
1060 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1061 const mirror::Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001062 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001063 if (LIKELY(bitmap->HasAddress(obj))) {
1064 bitmap->Clear(obj);
1065 } else {
1066 large_objects->Clear(obj);
1067 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001068 }
1069}
1070
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001071GcType Heap::CollectGarbageInternal(GcType gc_type, GcCause gc_cause, bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001072 Thread* self = Thread::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001073 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -07001074 Locks::mutator_lock_->AssertNotHeld(self);
Carl Shapiro58551df2011-07-24 03:09:51 -07001075
Ian Rogers120f1c72012-09-28 17:17:10 -07001076 if (self->IsHandlingStackOverflow()) {
1077 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1078 }
1079
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001080 // Ensure there is only one GC at a time.
1081 bool start_collect = false;
1082 while (!start_collect) {
1083 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001084 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001085 if (!is_gc_running_) {
1086 is_gc_running_ = true;
1087 start_collect = true;
1088 }
1089 }
1090 if (!start_collect) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001091 WaitForConcurrentGcToComplete(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001092 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
1093 // Not doing at the moment to ensure soft references are cleared.
1094 }
1095 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001096 gc_complete_lock_->AssertNotHeld(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001097
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001098 if (gc_cause == kGcCauseForAlloc && Runtime::Current()->HasStatsEnabled()) {
1099 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
1100 ++Thread::Current()->GetStats()->gc_for_alloc_count;
1101 }
1102
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001103 // We need to do partial GCs every now and then to avoid the heap growing too much and
1104 // fragmenting.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001105 if (gc_type == kGcTypeSticky && ++sticky_gc_count_ > partial_gc_frequency_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001106 gc_type = have_zygote_space_ ? kGcTypePartial : kGcTypeFull;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001107 }
Mathieu Chartier0325e622012-09-05 14:22:51 -07001108 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001109 sticky_gc_count_ = 0;
1110 }
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001111
Mathieu Chartier65db8802012-11-20 12:36:46 -08001112 uint64_t gc_start_time = NanoTime();
1113 uint64_t gc_start_size = GetBytesAllocated();
1114 // Approximate allocation rate in bytes / second.
Jeff Hao9bd02812013-02-08 14:29:50 -08001115 if (UNLIKELY(gc_start_time == last_gc_time_)) {
1116 LOG(WARNING) << "Timers are broken (gc_start_time == last_gc_time_).";
1117 }
Mathieu Chartier65db8802012-11-20 12:36:46 -08001118 uint64_t ms_delta = NsToMs(gc_start_time - last_gc_time_);
1119 if (ms_delta != 0) {
1120 allocation_rate_ = (gc_start_size - last_gc_size_) * 1000 / ms_delta;
1121 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1122 }
1123
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001124 DCHECK_LT(gc_type, kGcTypeMax);
1125 DCHECK_NE(gc_type, kGcTypeNone);
1126 MarkSweep* collector = NULL;
1127 for (Collectors::iterator it = mark_sweep_collectors_.begin();
1128 it != mark_sweep_collectors_.end(); ++it) {
1129 MarkSweep* cur_collector = *it;
1130 if (cur_collector->IsConcurrent() == concurrent_gc_ && cur_collector->GetGcType() == gc_type) {
1131 collector = cur_collector;
1132 break;
1133 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001134 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001135 CHECK(collector != NULL)
1136 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1137 << " and type=" << gc_type;
1138 collector->clear_soft_references_ = clear_soft_references;
1139 collector->Run();
1140 total_objects_freed_ += collector->GetFreedObjects();
1141 total_bytes_freed_ += collector->GetFreedBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001142
Mathieu Chartier65db8802012-11-20 12:36:46 -08001143 const size_t duration = collector->GetDuration();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001144 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1145 bool was_slow = duration > kSlowGcThreshold ||
1146 (gc_cause == kGcCauseForAlloc && duration > kLongGcPauseThreshold);
1147 for (size_t i = 0; i < pauses.size(); ++i) {
1148 if (pauses[i] > kLongGcPauseThreshold) {
1149 was_slow = true;
1150 }
1151 }
1152
1153 if (was_slow) {
1154 const size_t percent_free = GetPercentFree();
1155 const size_t current_heap_size = GetUsedMemorySize();
1156 const size_t total_memory = GetTotalMemory();
1157 std::ostringstream pause_string;
1158 for (size_t i = 0; i < pauses.size(); ++i) {
1159 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1160 << ((i != pauses.size() - 1) ? ", " : "");
1161 }
1162 LOG(INFO) << gc_cause << " " << collector->GetName()
Sameer Abu Asala8439542013-02-14 16:06:42 -08001163 << "GC freed " << PrettySize(collector->GetFreedBytes()) << ", "
1164 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1165 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1166 << " total " << PrettyDuration((duration / 1000) * 1000);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001167 if (VLOG_IS_ON(heap)) {
Sameer Abu Asala8439542013-02-14 16:06:42 -08001168 LOG(INFO) << Dumpable<TimingLogger>(collector->GetTimings());
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001169 }
1170 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001171
Ian Rogers15bf2d32012-08-28 17:33:04 -07001172 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001173 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001174 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001175 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -07001176 // Wake anyone who may have been waiting for the GC to complete.
Ian Rogersc604d732012-10-14 16:09:54 -07001177 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001178 }
1179 // Inform DDMS that a GC completed.
1180 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001181 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001182}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001183
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001184void Heap::UpdateAndMarkModUnion(MarkSweep* mark_sweep, TimingLogger& timings, GcType gc_type) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001185 if (gc_type == kGcTypeSticky) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001186 // 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 -07001187 // cards.
1188 return;
1189 }
1190
1191 // Update zygote mod union table.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001192 if (gc_type == kGcTypePartial) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001193 zygote_mod_union_table_->Update();
1194 timings.AddSplit("UpdateZygoteModUnionTable");
1195
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001196 zygote_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001197 timings.AddSplit("ZygoteMarkReferences");
1198 }
1199
1200 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
1201 mod_union_table_->Update();
1202 timings.AddSplit("UpdateModUnionTable");
1203
1204 // Scans all objects in the mod-union table.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001205 mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001206 timings.AddSplit("MarkImageToAllocSpaceReferences");
1207}
1208
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001209void Heap::RootMatchesObjectVisitor(const mirror::Object* root, void* arg) {
1210 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001211 if (root == obj) {
1212 LOG(INFO) << "Object " << obj << " is a root";
1213 }
1214}
1215
1216class ScanVisitor {
1217 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001218 void operator ()(const mirror::Object* obj) const {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001219 LOG(INFO) << "Would have rescanned object " << obj;
1220 }
1221};
1222
1223class VerifyReferenceVisitor {
1224 public:
1225 VerifyReferenceVisitor(Heap* heap, bool* failed)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1227 Locks::heap_bitmap_lock_)
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001228 : heap_(heap),
1229 failed_(failed) {
1230 }
1231
1232 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1233 // analysis.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001234 void operator ()(const mirror::Object* obj, const mirror::Object* ref,
1235 const MemberOffset& /* offset */, bool /* is_static */) const
1236 NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001237 // Verify that the reference is live.
1238 if (ref != NULL && !IsLive(ref)) {
1239 CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001240 ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1241 ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001242
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001243 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001244 LOG(ERROR) << "Object " << obj << " references dead object " << ref << "\n"
1245 << "IsDirty = " << (*card_addr == CardTable::kCardDirty) << "\n"
1246 << "Obj type " << PrettyTypeOf(obj) << "\n"
1247 << "Ref type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001248 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001249 void* cover_begin = card_table->AddrFromCard(card_addr);
1250 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001251 CardTable::kCardSize);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001252 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001253 << "-" << cover_end;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001254 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1255
1256 // Print out how the object is live.
1257 if (bitmap->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001258 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1259 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001260 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj)) {
1261 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1262 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001263 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1264 LOG(ERROR) << "Object " << obj << " found in live stack";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001265 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001266 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001267 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001268 }
1269
1270 // Attempt to see if the card table missed the reference.
1271 ScanVisitor scan_visitor;
1272 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001273 card_table->Scan(bitmap, byte_cover_begin, byte_cover_begin + CardTable::kCardSize,
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001274 scan_visitor, VoidFunctor());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001275
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001276 // Search to see if any of the roots reference our object.
1277 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1278 Runtime::Current()->VisitRoots(&Heap::RootMatchesObjectVisitor, arg);
1279 *failed_ = true;
1280 }
1281 }
1282
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001283 bool IsLive(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001284 if (heap_->GetLiveBitmap()->Test(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001285 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001286 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001287 ObjectStack* alloc_stack = heap_->allocation_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001288 // At this point we need to search the allocation since things in the live stack may get swept.
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001289 // If the object is not either in the live bitmap or allocation stack, so the object must be
1290 // dead.
1291 return std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001292 }
1293
1294 private:
1295 Heap* heap_;
1296 bool* failed_;
1297};
1298
1299class VerifyObjectVisitor {
1300 public:
1301 VerifyObjectVisitor(Heap* heap)
1302 : heap_(heap),
1303 failed_(false) {
1304
1305 }
1306
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001307 void operator ()(const mirror::Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001309 VerifyReferenceVisitor visitor(heap_, const_cast<bool*>(&failed_));
1310 MarkSweep::VisitObjectReferences(obj, visitor);
1311 }
1312
1313 bool Failed() const {
1314 return failed_;
1315 }
1316
1317 private:
1318 Heap* heap_;
1319 bool failed_;
1320};
1321
1322// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001323bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001324 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001325 // Lets sort our allocation stacks so that we can efficiently binary search them.
1326 std::sort(allocation_stack_->Begin(), allocation_stack_->End());
1327 std::sort(live_stack_->Begin(), live_stack_->End());
1328 // Perform the verification.
1329 VerifyObjectVisitor visitor(this);
1330 GetLiveBitmap()->Visit(visitor);
1331 // We don't want to verify the objects in the allocation stack since they themselves may be
1332 // pointing to dead objects if they are not reachable.
1333 if (visitor.Failed()) {
1334 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001335 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001336 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001337 return true;
1338}
1339
1340class VerifyReferenceCardVisitor {
1341 public:
1342 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1344 Locks::heap_bitmap_lock_)
1345 : heap_(heap),
1346 failed_(failed) {
1347 }
1348
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001349 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1350 // annotalysis on visitors.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001351 void operator ()(const mirror::Object* obj, const mirror::Object* ref, const MemberOffset& offset,
1352 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001353 // Filter out class references since changing an object's class does not mark the card as dirty.
1354 // Also handles large objects, since the only reference they hold is a class reference.
1355 if (ref != NULL && !ref->IsClass()) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001356 CardTable* card_table = heap_->GetCardTable();
1357 // If the object is not dirty and it is referencing something in the live stack other than
1358 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001359 if (!card_table->AddrIsInCardTable(obj)) {
1360 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1361 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001362 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001363 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1364 // kCardDirty - 1 if it didnt get touched since we aged it.
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001365 ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001366 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001367 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1368 LOG(ERROR) << "Object " << obj << " found in live stack";
1369 }
1370 if (heap_->GetLiveBitmap()->Test(obj)) {
1371 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1372 }
1373 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1374 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1375
1376 // Print which field of the object is dead.
1377 if (!obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001378 const mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001379 CHECK(klass != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001380 const mirror::ObjectArray<mirror::Field>* fields = is_static ? klass->GetSFields()
1381 : klass->GetIFields();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001382 CHECK(fields != NULL);
1383 for (int32_t i = 0; i < fields->GetLength(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001384 const mirror::Field* cur = fields->Get(i);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001385 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1386 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1387 << PrettyField(cur);
1388 break;
1389 }
1390 }
1391 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001392 const mirror::ObjectArray<mirror::Object>* object_array =
1393 obj->AsObjectArray<mirror::Object>();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001394 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1395 if (object_array->Get(i) == ref) {
1396 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1397 }
1398 }
1399 }
1400
1401 *failed_ = true;
1402 }
1403 }
1404 }
1405 }
1406
1407 private:
1408 Heap* heap_;
1409 bool* failed_;
1410};
1411
1412class VerifyLiveStackReferences {
1413 public:
1414 VerifyLiveStackReferences(Heap* heap)
1415 : heap_(heap),
1416 failed_(false) {
1417
1418 }
1419
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001420 void operator ()(const mirror::Object* obj) const
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001421 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1422 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
1423 MarkSweep::VisitObjectReferences(obj, visitor);
1424 }
1425
1426 bool Failed() const {
1427 return failed_;
1428 }
1429
1430 private:
1431 Heap* heap_;
1432 bool failed_;
1433};
1434
1435bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001436 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001437
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001438 // We need to sort the live stack since we binary search it.
1439 std::sort(live_stack_->Begin(), live_stack_->End());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001440 VerifyLiveStackReferences visitor(this);
1441 GetLiveBitmap()->Visit(visitor);
1442
1443 // We can verify objects in the live stack since none of these should reference dead objects.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001444 for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001445 visitor(*it);
1446 }
1447
1448 if (visitor.Failed()) {
1449 DumpSpaces();
1450 return false;
1451 }
1452 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001453}
1454
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001455void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001456 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001457
1458 // Sort the live stack so that we can quickly binary search it later.
Ian Rogers04d7aa92013-03-16 14:29:17 -07001459 if (verify_object_mode_ > kNoHeapVerification) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001460 std::sort(live_stack_->Begin(), live_stack_->End());
1461 }
1462}
1463
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001464void Heap::ProcessCards(TimingLogger& timings) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001465 // Clear image space cards and keep track of cards we cleared in the mod-union table.
1466 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1467 ContinuousSpace* space = *it;
1468 if (space->IsImageSpace()) {
1469 mod_union_table_->ClearCards(*it);
1470 timings.AddSplit("ModUnionClearCards");
1471 } else if (space->GetGcRetentionPolicy() == kGcRetentionPolicyFullCollect) {
1472 zygote_mod_union_table_->ClearCards(space);
1473 timings.AddSplit("ZygoteModUnionClearCards");
1474 } else {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001475 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1476 // were dirty before the GC started.
1477 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
1478 timings.AddSplit("AllocSpaceClearCards");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001479 }
1480 }
1481}
1482
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001483void Heap::PreGcVerification(GarbageCollector* gc) {
1484 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1485 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001486
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001487 if (verify_pre_gc_heap_) {
1488 thread_list->SuspendAll();
1489 {
1490 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1491 if (!VerifyHeapReferences()) {
1492 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1493 }
1494 }
1495 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001496 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001497
1498 // Check that all objects which reference things in the live stack are on dirty cards.
1499 if (verify_missing_card_marks_) {
1500 thread_list->SuspendAll();
1501 {
1502 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1503 SwapStacks();
1504 // Sort the live stack so that we can quickly binary search it later.
1505 if (!VerifyMissingCardMarks()) {
1506 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1507 }
1508 SwapStacks();
1509 }
1510 thread_list->ResumeAll();
1511 }
1512
1513 if (verify_mod_union_table_) {
1514 thread_list->SuspendAll();
1515 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
1516 zygote_mod_union_table_->Update();
1517 zygote_mod_union_table_->Verify();
1518 mod_union_table_->Update();
1519 mod_union_table_->Verify();
1520 thread_list->ResumeAll();
1521 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001522}
1523
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001524void Heap::PreSweepingGcVerification(GarbageCollector* gc) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001525 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001526 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001527
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001528 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1529 // reachable objects.
1530 if (verify_post_gc_heap_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001531 thread_list->SuspendAll();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001532 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1533 // Swapping bound bitmaps does nothing.
1534 live_bitmap_.swap(mark_bitmap_);
1535 if (!VerifyHeapReferences()) {
1536 LOG(FATAL) << "Post " << gc->GetName() << "Gc verification failed";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001537 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001538 live_bitmap_.swap(mark_bitmap_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001539 thread_list->ResumeAll();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001540 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001541}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001542
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001543void Heap::PostGcVerification(GarbageCollector* gc) {
1544 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001545
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001546 if (verify_system_weaks_) {
1547 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1548 MarkSweep* mark_sweep = down_cast<MarkSweep*>(gc);
1549 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001550 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001551}
1552
Ian Rogers81d425b2012-09-27 16:03:43 -07001553GcType Heap::WaitForConcurrentGcToComplete(Thread* self) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001554 GcType last_gc_type = kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001555 if (concurrent_gc_) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001556 bool do_wait;
1557 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001558 {
1559 // Check if GC is running holding gc_complete_lock_.
Ian Rogers81d425b2012-09-27 16:03:43 -07001560 MutexLock mu(self, *gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001561 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001562 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001563 if (do_wait) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001564 uint64_t wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001565 // We must wait, change thread state then sleep on gc_complete_cond_;
1566 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1567 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001568 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001569 while (is_gc_running_) {
Ian Rogersc604d732012-10-14 16:09:54 -07001570 gc_complete_cond_->Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001571 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001572 last_gc_type = last_gc_type_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001573 wait_time = NanoTime() - wait_start;;
1574 total_wait_time_ += wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001575 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001576 if (wait_time > kLongGcPauseThreshold) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001577 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1578 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001579 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001580 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001581 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001582}
1583
Elliott Hughesc967f782012-04-16 10:23:15 -07001584void Heap::DumpForSigQuit(std::ostream& os) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001585 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetUsedMemorySize()) << "/"
1586 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001587 DumpGcPerformanceInfo();
Elliott Hughesc967f782012-04-16 10:23:15 -07001588}
1589
1590size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001591 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001592}
1593
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001594void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001595 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001596 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001597 << PrettySize(GetMaxMemory());
1598 max_allowed_footprint = GetMaxMemory();
1599 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001600 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001601}
1602
Mathieu Chartier65db8802012-11-20 12:36:46 -08001603void Heap::GrowForUtilization(uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001604 // We know what our utilization is at this moment.
1605 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001606 const size_t bytes_allocated = GetBytesAllocated();
1607 last_gc_size_ = bytes_allocated;
1608 last_gc_time_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001609
Mathieu Chartier65db8802012-11-20 12:36:46 -08001610 size_t target_size = bytes_allocated / GetTargetHeapUtilization();
1611 if (target_size > bytes_allocated + max_free_) {
1612 target_size = bytes_allocated + max_free_;
1613 } else if (target_size < bytes_allocated + min_free_) {
1614 target_size = bytes_allocated + min_free_;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001615 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001616
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001617 SetIdealFootprint(target_size);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001618
1619 // Calculate when to perform the next ConcurrentGC if we have enough free memory.
1620 if (concurrent_gc_ && GetFreeMemory() >= concurrent_min_free_) {
1621 // Calculate the estimated GC duration.
1622 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1623 // Estimate how many remaining bytes we will have when we need to start the next GC.
1624 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
1625 if (remaining_bytes < max_allowed_footprint_) {
1626 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1627 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1628 // right away.
1629 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
1630 } else {
1631 // The estimated rate is so high that we should request another GC straight away.
1632 concurrent_start_bytes_ = bytes_allocated;
1633 }
1634 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1635 DCHECK_LE(max_allowed_footprint_, growth_limit_);
1636 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001637}
1638
jeffhaoc1160702011-10-27 15:48:45 -07001639void Heap::ClearGrowthLimit() {
Mathieu Chartier80de7a62012-11-27 17:21:50 -08001640 growth_limit_ = capacity_;
jeffhaoc1160702011-10-27 15:48:45 -07001641 alloc_space_->ClearGrowthLimit();
1642}
1643
Elliott Hughesadb460d2011-10-05 17:02:34 -07001644void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001645 MemberOffset reference_queue_offset,
1646 MemberOffset reference_queueNext_offset,
1647 MemberOffset reference_pendingNext_offset,
1648 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001649 reference_referent_offset_ = reference_referent_offset;
1650 reference_queue_offset_ = reference_queue_offset;
1651 reference_queueNext_offset_ = reference_queueNext_offset;
1652 reference_pendingNext_offset_ = reference_pendingNext_offset;
1653 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1654 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1655 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1656 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1657 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1658 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1659}
1660
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001661mirror::Object* Heap::GetReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001662 DCHECK(reference != NULL);
1663 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001664 return reference->GetFieldObject<mirror::Object*>(reference_referent_offset_, true);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001665}
1666
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001667void Heap::ClearReferenceReferent(mirror::Object* reference) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001668 DCHECK(reference != NULL);
1669 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1670 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1671}
1672
1673// Returns true if the reference object has not yet been enqueued.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001674bool Heap::IsEnqueuable(const mirror::Object* ref) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001675 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001676 const mirror::Object* queue =
1677 ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false);
1678 const mirror::Object* queue_next =
1679 ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001680 return (queue != NULL) && (queue_next == NULL);
1681}
1682
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001683void Heap::EnqueueReference(mirror::Object* ref, mirror::Object** cleared_reference_list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001684 DCHECK(ref != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001685 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queue_offset_, false) != NULL);
1686 CHECK(ref->GetFieldObject<mirror::Object*>(reference_queueNext_offset_, false) == NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001687 EnqueuePendingReference(ref, cleared_reference_list);
1688}
1689
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001690void Heap::EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001691 DCHECK(ref != NULL);
1692 DCHECK(list != NULL);
1693
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001694 // TODO: Remove this lock, use atomic stacks for storing references.
1695 MutexLock mu(Thread::Current(), *reference_queue_lock_);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001696 if (*list == NULL) {
1697 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1698 *list = ref;
1699 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001700 mirror::Object* head =
1701 (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001702 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1703 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1704 }
1705}
1706
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001707mirror::Object* Heap::DequeuePendingReference(mirror::Object** list) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001708 DCHECK(list != NULL);
1709 DCHECK(*list != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001710 mirror::Object* head = (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1711 false);
1712 mirror::Object* ref;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001713
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001714 // Note: the following code is thread-safe because it is only called from ProcessReferences which
1715 // is single threaded.
Elliott Hughesadb460d2011-10-05 17:02:34 -07001716 if (*list == head) {
1717 ref = *list;
1718 *list = NULL;
1719 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001720 mirror::Object* next = head->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_,
1721 false);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001722 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1723 ref = head;
1724 }
1725 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1726 return ref;
1727}
1728
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001729void Heap::AddFinalizerReference(Thread* self, mirror::Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001730 ScopedObjectAccess soa(self);
Jeff Hao5d917302013-02-27 17:57:33 -08001731 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001732 ArgArray arg_array(NULL, 0);
1733 arg_array.Append(reinterpret_cast<uint32_t>(object));
1734 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
Jeff Hao6474d192013-03-26 14:08:09 -07001735 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001736}
1737
1738size_t Heap::GetBytesAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001739 return num_bytes_allocated_;
1740}
1741
1742size_t Heap::GetObjectsAllocated() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001743 size_t total = 0;
1744 // TODO: C++0x
1745 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1746 Space* space = *it;
1747 if (space->IsAllocSpace()) {
1748 total += space->AsAllocSpace()->GetNumObjectsAllocated();
1749 }
1750 }
1751 return total;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001752}
1753
1754size_t Heap::GetConcurrentStartSize() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001755 return concurrent_start_size_;
1756}
1757
1758size_t Heap::GetConcurrentMinFree() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001759 return concurrent_min_free_;
Elliott Hughesadb460d2011-10-05 17:02:34 -07001760}
1761
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001762void Heap::EnqueueClearedReferences(mirror::Object** cleared) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001763 DCHECK(cleared != NULL);
1764 if (*cleared != NULL) {
Ian Rogers64b6d142012-10-29 16:34:15 -07001765 // When a runtime isn't started there are no reference queues to care about so ignore.
1766 if (LIKELY(Runtime::Current()->IsStarted())) {
1767 ScopedObjectAccess soa(Thread::Current());
Jeff Hao5d917302013-02-27 17:57:33 -08001768 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -08001769 ArgArray arg_array(NULL, 0);
1770 arg_array.Append(reinterpret_cast<uint32_t>(*cleared));
1771 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
Jeff Hao6474d192013-03-26 14:08:09 -07001772 arg_array.GetArray(), arg_array.GetNumBytes(), &result, 'V');
Ian Rogers64b6d142012-10-29 16:34:15 -07001773 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001774 *cleared = NULL;
1775 }
1776}
1777
Ian Rogers1f539342012-10-03 21:09:42 -07001778void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001779 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07001780 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001781 DCHECK(concurrent_gc_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001782 if (runtime == NULL || !runtime->IsFinishedStarting() ||
Ian Rogers120f1c72012-09-28 17:17:10 -07001783 !runtime->IsConcurrentGcEnabled()) {
1784 return;
1785 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001786 {
1787 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1788 if (runtime->IsShuttingDown()) {
1789 return;
1790 }
1791 }
1792 if (self->IsHandlingStackOverflow()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001793 return;
1794 }
1795
Ian Rogers120f1c72012-09-28 17:17:10 -07001796 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001797 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1798 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001799 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1800 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001801 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001802}
1803
Ian Rogers81d425b2012-09-27 16:03:43 -07001804void Heap::ConcurrentGC(Thread* self) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001805 {
1806 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001807 if (Runtime::Current()->IsShuttingDown()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001808 return;
1809 }
Mathieu Chartier2542d662012-06-21 17:14:11 -07001810 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001811
Mathieu Chartier65db8802012-11-20 12:36:46 -08001812 // Wait for any GCs currently running to finish.
Ian Rogers81d425b2012-09-27 16:03:43 -07001813 if (WaitForConcurrentGcToComplete(self) == kGcTypeNone) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001814 if (alloc_space_->Size() > min_alloc_space_size_for_sticky_gc_) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001815 CollectGarbageInternal(kGcTypeSticky, kGcCauseBackground, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001816 } else {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001817 CollectGarbageInternal(kGcTypePartial, kGcCauseBackground, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001818 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001819 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001820}
1821
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001822void Heap::RequestHeapTrim() {
Ian Rogers48931882013-01-22 14:35:16 -08001823 // GC completed and now we must decide whether to request a heap trim (advising pages back to the
1824 // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
1825 // a space it will hold its lock and can become a cause of jank.
1826 // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
1827 // forking.
1828
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001829 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1830 // because that only marks object heads, so a large array looks like lots of empty space. We
1831 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1832 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1833 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1834 // not how much use we're making of those pages.
Ian Rogers48931882013-01-22 14:35:16 -08001835 uint64_t ms_time = MilliTime();
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001836 float utilization =
1837 static_cast<float>(alloc_space_->GetNumBytesAllocated()) / alloc_space_->Size();
1838 if ((utilization > 0.75f) || ((ms_time - last_trim_time_) < 2 * 1000)) {
1839 // Don't bother trimming the alloc space if it's more than 75% utilized, or if a
1840 // heap trim occurred in the last two seconds.
1841 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001842 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001843
1844 Thread* self = Thread::Current();
1845 {
1846 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1847 Runtime* runtime = Runtime::Current();
1848 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown()) {
1849 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
1850 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
1851 // as we don't hold the lock while requesting the trim).
1852 return;
1853 }
Ian Rogerse1d490c2012-02-03 09:09:07 -08001854 }
Ian Rogers48931882013-01-22 14:35:16 -08001855
1856 SchedPolicy policy;
1857 get_sched_policy(self->GetTid(), &policy);
1858 if (policy == SP_FOREGROUND || policy == SP_AUDIO_APP) {
1859 // Don't trim the heap if we are a foreground or audio app.
1860 return;
1861 }
1862
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001863 last_trim_time_ = ms_time;
Ian Rogers120f1c72012-09-28 17:17:10 -07001864 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001865 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1866 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001867 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1868 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001869 CHECK(!env->ExceptionCheck());
1870}
1871
Ian Rogers48931882013-01-22 14:35:16 -08001872size_t Heap::Trim() {
1873 // Handle a requested heap trim on a thread outside of the main GC thread.
1874 return alloc_space_->Trim();
1875}
1876
Carl Shapiro69759ea2011-07-21 18:13:35 -07001877} // namespace art