blob: 472031b9ebe1bdac2484e65b8dcaa6097b3786bd [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 Hughes767a1472011-10-26 18:49:02 -070025#include "debugger.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070026#include "gc/atomic_stack.h"
27#include "gc/card_table.h"
28#include "gc/heap_bitmap.h"
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070029#include "gc/large_object_space.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070030#include "gc/mark_sweep.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080031#include "gc/partial_mark_sweep.h"
32#include "gc/sticky_mark_sweep.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070033#include "gc/mod_union_table.h"
34#include "gc/space.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070035#include "image.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070036#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080037#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080038#include "os.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070039#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070041#include "sirt_ref.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070042#include "stl_util.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070043#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070044#include "timing_logger.h"
45#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070046#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070047
48namespace art {
49
Mathieu Chartier2b82db42012-11-14 17:29:05 -080050static const uint64_t kSlowGcThreshold = MsToNs(100);
51static const uint64_t kLongGcPauseThreshold = MsToNs(5);
Mathieu Chartier65db8802012-11-20 12:36:46 -080052static const bool kDumpGcPerformanceOnShutdown = false;
Mathieu Chartier0051be62012-10-12 17:47:11 -070053const double Heap::kDefaultTargetUtilization = 0.5;
54
Elliott Hughesae80b492012-04-24 10:43:17 -070055static bool GenerateImage(const std::string& image_file_name) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080056 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
Brian Carlstrom5643b782012-02-05 12:32:53 -080057 std::vector<std::string> boot_class_path;
58 Split(boot_class_path_string, ':', boot_class_path);
Brian Carlstromb2793372012-03-17 18:27:16 -070059 if (boot_class_path.empty()) {
60 LOG(FATAL) << "Failed to generate image because no boot class path specified";
61 }
Brian Carlstrom5643b782012-02-05 12:32:53 -080062
63 std::vector<char*> arg_vector;
64
65 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -070066 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom5643b782012-02-05 12:32:53 -080067 const char* dex2oat = dex2oat_string.c_str();
68 arg_vector.push_back(strdup(dex2oat));
69
70 std::string image_option_string("--image=");
71 image_option_string += image_file_name;
72 const char* image_option = image_option_string.c_str();
73 arg_vector.push_back(strdup(image_option));
74
75 arg_vector.push_back(strdup("--runtime-arg"));
76 arg_vector.push_back(strdup("-Xms64m"));
77
78 arg_vector.push_back(strdup("--runtime-arg"));
79 arg_vector.push_back(strdup("-Xmx64m"));
80
81 for (size_t i = 0; i < boot_class_path.size(); i++) {
82 std::string dex_file_option_string("--dex-file=");
83 dex_file_option_string += boot_class_path[i];
84 const char* dex_file_option = dex_file_option_string.c_str();
85 arg_vector.push_back(strdup(dex_file_option));
86 }
87
88 std::string oat_file_option_string("--oat-file=");
89 oat_file_option_string += image_file_name;
90 oat_file_option_string.erase(oat_file_option_string.size() - 3);
91 oat_file_option_string += "oat";
92 const char* oat_file_option = oat_file_option_string.c_str();
93 arg_vector.push_back(strdup(oat_file_option));
94
jeffhao8161c032012-10-31 15:50:00 -070095 std::string base_option_string(StringPrintf("--base=0x%x", ART_BASE_ADDRESS));
96 arg_vector.push_back(strdup(base_option_string.c_str()));
Brian Carlstrom5643b782012-02-05 12:32:53 -080097
Elliott Hughes48436bb2012-02-07 15:23:28 -080098 std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom5643b782012-02-05 12:32:53 -080099 LOG(INFO) << command_line;
100
Elliott Hughes48436bb2012-02-07 15:23:28 -0800101 arg_vector.push_back(NULL);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800102 char** argv = &arg_vector[0];
103
104 // fork and exec dex2oat
105 pid_t pid = fork();
106 if (pid == 0) {
107 // no allocation allowed between fork and exec
108
109 // change process groups, so we don't get reaped by ProcessManager
110 setpgid(0, 0);
111
112 execv(dex2oat, argv);
113
114 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
115 return false;
116 } else {
117 STLDeleteElements(&arg_vector);
118
119 // wait for dex2oat to finish
120 int status;
121 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
122 if (got_pid != pid) {
123 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
124 return false;
125 }
126 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
127 LOG(ERROR) << dex2oat << " failed: " << command_line;
128 return false;
129 }
130 }
131 return true;
132}
133
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700134void Heap::UnReserveOatFileAddressRange() {
135 oat_file_map_.reset(NULL);
136}
137
Mathieu Chartier0051be62012-10-12 17:47:11 -0700138Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
139 double target_utilization, size_t capacity,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700140 const std::string& original_image_file_name, bool concurrent_gc)
141 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800142 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700143 concurrent_gc_(concurrent_gc),
144 have_zygote_space_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800145 is_gc_running_(false),
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700146 last_gc_type_(kGcTypeNone),
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700147 enforce_heap_growth_rate_(false),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700148 growth_limit_(growth_limit),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700149 max_allowed_footprint_(initial_size),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700150 concurrent_start_size_(128 * KB),
151 concurrent_min_free_(256 * KB),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800152 concurrent_start_bytes_(concurrent_gc ? initial_size - concurrent_start_size_ :
153 std::numeric_limits<size_t>::max()),
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700154 sticky_gc_count_(0),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700155 total_bytes_freed_(0),
156 total_objects_freed_(0),
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700157 large_object_threshold_(3 * kPageSize),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800158 num_bytes_allocated_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700159 verify_missing_card_marks_(false),
160 verify_system_weaks_(false),
161 verify_pre_gc_heap_(false),
162 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700163 verify_mod_union_table_(false),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700164 partial_gc_frequency_(10),
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700165 min_alloc_space_size_for_sticky_gc_(2 * MB),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700166 min_remaining_space_for_sticky_gc_(1 * MB),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700167 last_trim_time_(0),
Mathieu Chartier65db8802012-11-20 12:36:46 -0800168 allocation_rate_(0),
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700169 max_allocation_stack_size_(MB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800170 reference_referent_offset_(0),
171 reference_queue_offset_(0),
172 reference_queueNext_offset_(0),
173 reference_pendingNext_offset_(0),
174 finalizer_reference_zombie_offset_(0),
Mathieu Chartier0051be62012-10-12 17:47:11 -0700175 min_free_(min_free),
176 max_free_(max_free),
177 target_utilization_(target_utilization),
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700178 total_wait_time_(0),
179 measure_allocation_time_(false),
180 total_allocation_time_(0),
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700181 verify_objects_(false) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800182 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800183 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700184 }
185
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700186 live_bitmap_.reset(new HeapBitmap(this));
187 mark_bitmap_.reset(new HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700188
Ian Rogers30fab402012-01-23 15:43:46 -0800189 // Requested begin for the alloc space, to follow the mapped image and oat files
190 byte* requested_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800191 std::string image_file_name(original_image_file_name);
192 if (!image_file_name.empty()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700193 ImageSpace* image_space = NULL;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700194
Brian Carlstrom5643b782012-02-05 12:32:53 -0800195 if (OS::FileExists(image_file_name.c_str())) {
196 // If the /system file exists, it should be up-to-date, don't try to generate
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700197 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800198 } else {
199 // If the /system file didn't exist, we need to use one from the art-cache.
200 // If the cache file exists, try to open, but if it fails, regenerate.
201 // If it does not exist, generate.
202 image_file_name = GetArtCacheFilenameOrDie(image_file_name);
203 if (OS::FileExists(image_file_name.c_str())) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700204 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800205 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700206 if (image_space == NULL) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700207 CHECK(GenerateImage(image_file_name)) << "Failed to generate image: " << image_file_name;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700208 image_space = ImageSpace::Create(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800209 }
210 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700211
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700212 CHECK(image_space != NULL) << "Failed to create space from " << image_file_name;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700213 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800214 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
215 // isn't going to get in the middle
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700216 byte* oat_end_addr = image_space->GetImageHeader().GetOatEnd();
217 CHECK_GT(oat_end_addr, image_space->End());
218
219 // Reserve address range from image_space->End() to image_space->GetImageHeader().GetOatEnd()
220 uintptr_t reserve_begin = RoundUp(reinterpret_cast<uintptr_t>(image_space->End()), kPageSize);
221 uintptr_t reserve_end = RoundUp(reinterpret_cast<uintptr_t>(oat_end_addr), kPageSize);
222 oat_file_map_.reset(MemMap::MapAnonymous("oat file reserve",
223 reinterpret_cast<byte*>(reserve_begin),
224 reserve_end - reserve_begin, PROT_READ));
225
Ian Rogers30fab402012-01-23 15:43:46 -0800226 if (oat_end_addr > requested_begin) {
227 requested_begin = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_end_addr),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700228 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700229 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700230 }
231
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700232 // Allocate the large object space.
233 large_object_space_.reset(FreeListSpace::Create("large object space", NULL, capacity));
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700234 live_bitmap_->SetLargeObjects(large_object_space_->GetLiveObjects());
235 mark_bitmap_->SetLargeObjects(large_object_space_->GetMarkObjects());
236
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700237 UniquePtr<DlMallocSpace> alloc_space(DlMallocSpace::Create("alloc space", initial_size,
238 growth_limit, capacity,
239 requested_begin));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700240 alloc_space_ = alloc_space.release();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700241 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
jeffhao8161c032012-10-31 15:50:00 -0700242 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700243 AddSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700244
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700245 // Spaces are sorted in order of Begin().
246 byte* heap_begin = spaces_.front()->Begin();
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700247 size_t heap_capacity = spaces_.back()->End() - spaces_.front()->Begin();
248 if (spaces_.back()->IsAllocSpace()) {
249 heap_capacity += spaces_.back()->AsAllocSpace()->NonGrowthLimitCapacity();
250 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700251
Ian Rogers30fab402012-01-23 15:43:46 -0800252 // Mark image objects in the live bitmap
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700253 // TODO: C++0x
254 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
255 Space* space = *it;
Ian Rogers30fab402012-01-23 15:43:46 -0800256 if (space->IsImageSpace()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700257 ImageSpace* image_space = space->AsImageSpace();
258 image_space->RecordImageAllocations(image_space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800259 }
260 }
261
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800262 // Allocate the card table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700263 card_table_.reset(CardTable::Create(heap_begin, heap_capacity));
264 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700265
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700266 mod_union_table_.reset(new ModUnionTableToZygoteAllocspace<ModUnionTableReferenceCache>(this));
267 CHECK(mod_union_table_.get() != NULL) << "Failed to create mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700268
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700269 zygote_mod_union_table_.reset(new ModUnionTableCardCache(this));
270 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700271
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700272 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700273 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700274
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800275 // Default mark stack size in bytes.
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700276 static const size_t default_mark_stack_size = 64 * KB;
277 mark_stack_.reset(ObjectStack::Create("dalvik-mark-stack", default_mark_stack_size));
278 allocation_stack_.reset(ObjectStack::Create("dalvik-allocation-stack",
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700279 max_allocation_stack_size_));
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700280 live_stack_.reset(ObjectStack::Create("dalvik-live-stack",
281 max_allocation_stack_size_));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700282
Mathieu Chartier65db8802012-11-20 12:36:46 -0800283 // It's still too early to take a lock because there are no threads yet, but we can create locks
284 // now. We don't create it earlier to make it clear that you can't use locks during heap
285 // initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700286 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogersc604d732012-10-14 16:09:54 -0700287 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
288 *gc_complete_lock_));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700289
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700290 // Create the reference queue lock, this is required so for parrallel object scanning in the GC.
291 reference_queue_lock_.reset(new Mutex("reference queue lock"));
292
Mathieu Chartier65db8802012-11-20 12:36:46 -0800293 last_gc_time_ = NanoTime();
294 last_gc_size_ = GetBytesAllocated();
295
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800296 // Create our garbage collectors.
297 for (size_t i = 0; i < 2; ++i) {
298 const bool concurrent = i != 0;
299 mark_sweep_collectors_.push_back(new MarkSweep(this, concurrent));
300 mark_sweep_collectors_.push_back(new PartialMarkSweep(this, concurrent));
301 mark_sweep_collectors_.push_back(new StickyMarkSweep(this, concurrent));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700302 }
303
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800304 CHECK(max_allowed_footprint_ != 0);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800305 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800306 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700307 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700308}
309
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700310void Heap::CreateThreadPool() {
311 // TODO: Make sysconf(_SC_NPROCESSORS_CONF) be a helper function?
312 // Use the number of processors - 1 since the thread doing the GC does work while its waiting for
313 // workers to complete.
314 thread_pool_.reset(new ThreadPool(sysconf(_SC_NPROCESSORS_CONF) - 1));
315}
316
317void Heap::DeleteThreadPool() {
318 thread_pool_.reset(NULL);
319}
320
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700321// Sort spaces based on begin address
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700322struct SpaceSorter {
323 bool operator ()(const ContinuousSpace* a, const ContinuousSpace* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700324 return a->Begin() < b->Begin();
325 }
326};
327
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700328void Heap::AddSpace(ContinuousSpace* space) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700329 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700330 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700331 DCHECK(space->GetLiveBitmap() != NULL);
332 live_bitmap_->AddSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700333 DCHECK(space->GetMarkBitmap() != NULL);
334 mark_bitmap_->AddSpaceBitmap(space->GetMarkBitmap());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800335 spaces_.push_back(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700336 if (space->IsAllocSpace()) {
337 alloc_space_ = space->AsAllocSpace();
338 }
339
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700340 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
341 std::sort(spaces_.begin(), spaces_.end(), SpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700342
343 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
344 // avoid redundant marking.
345 bool seen_zygote = false, seen_alloc = false;
346 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
347 Space* space = *it;
348 if (space->IsImageSpace()) {
349 DCHECK(!seen_zygote);
350 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700351 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700352 DCHECK(!seen_alloc);
353 seen_zygote = true;
354 } else if (space->IsAllocSpace()) {
355 seen_alloc = true;
356 }
357 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800358}
359
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700360void Heap::DumpGcPerformanceInfo() {
361 // Dump cumulative timings.
362 LOG(INFO) << "Dumping cumulative Gc timings";
363 uint64_t total_duration = 0;
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800364
365 // Dump cumulative loggers for each GC type.
366 // TODO: C++0x
367 uint64_t total_paused_time = 0;
368 for (Collectors::const_iterator it = mark_sweep_collectors_.begin();
369 it != mark_sweep_collectors_.end(); ++it) {
370 MarkSweep* collector = *it;
371 const CumulativeLogger& logger = collector->GetCumulativeTimings();
372 if (logger.GetTotalNs() != 0) {
373 logger.Dump();
374 const uint64_t total_ns = logger.GetTotalNs();
375 const uint64_t total_pause_ns = (*it)->GetTotalPausedTime();
376 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
377 const uint64_t freed_bytes = collector->GetTotalFreedBytes();
378 const uint64_t freed_objects = collector->GetTotalFreedObjects();
379 LOG(INFO)
380 << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
381 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
382 << collector->GetName() << " freed: " << freed_objects
383 << " objects with total size " << PrettySize(freed_bytes) << "\n"
384 << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
385 << PrettySize(freed_bytes / seconds) << "/s\n";
386 total_duration += total_ns;
387 total_paused_time += total_pause_ns;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700388 }
389 }
390 uint64_t allocation_time = static_cast<uint64_t>(total_allocation_time_) * kTimeAdjust;
391 size_t total_objects_allocated = GetTotalObjectsAllocated();
392 size_t total_bytes_allocated = GetTotalBytesAllocated();
393 if (total_duration != 0) {
394 const double total_seconds = double(total_duration / 1000) / 1000000.0;
395 LOG(INFO) << "Total time spent in GC: " << PrettyDuration(total_duration);
396 LOG(INFO) << "Mean GC size throughput: "
397 << PrettySize(GetTotalBytesFreed() / total_seconds) << "/s";
398 LOG(INFO) << "Mean GC object throughput: " << GetTotalObjectsFreed() / total_seconds << "/s";
399 }
400 LOG(INFO) << "Total number of allocations: " << total_objects_allocated;
401 LOG(INFO) << "Total bytes allocated " << PrettySize(total_bytes_allocated);
402 if (measure_allocation_time_) {
403 LOG(INFO) << "Total time spent allocating: " << PrettyDuration(allocation_time);
404 LOG(INFO) << "Mean allocation time: "
405 << PrettyDuration(allocation_time / total_objects_allocated);
406 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800407 LOG(INFO) << "Total mutator paused time: " << PrettyDuration(total_paused_time);
408 LOG(INFO) << "Total time waiting for GC to complete time: " << PrettyDuration(total_wait_time_);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700409}
410
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800411Heap::~Heap() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700412 if (kDumpGcPerformanceOnShutdown) {
413 DumpGcPerformanceInfo();
414 }
415
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800416 STLDeleteElements(&mark_sweep_collectors_);
417
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700418 // If we don't reset then the mark stack complains in it's destructor.
419 allocation_stack_->Reset();
420 live_stack_->Reset();
421
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800422 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800423 // We can't take the heap lock here because there might be a daemon thread suspended with the
424 // heap lock held. We know though that no non-daemon threads are executing, and we know that
425 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
426 // 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 -0700427 STLDeleteElements(&spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 delete gc_complete_lock_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700429}
430
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700431ContinuousSpace* Heap::FindSpaceFromObject(const Object* obj) const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700432 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700433 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
434 if ((*it)->Contains(obj)) {
435 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700436 }
437 }
438 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
439 return NULL;
440}
441
442ImageSpace* Heap::GetImageSpace() {
443 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700444 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
445 if ((*it)->IsImageSpace()) {
446 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700447 }
448 }
449 return NULL;
450}
451
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700452DlMallocSpace* Heap::GetAllocSpace() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700453 return alloc_space_;
454}
455
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700456static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700457 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700458 if (used_bytes < chunk_size) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700459 size_t chunk_free_bytes = chunk_size - used_bytes;
460 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
461 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700462 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700463}
464
Ian Rogers50b35e22012-10-04 10:09:15 -0700465Object* Heap::AllocObject(Thread* self, Class* c, size_t byte_count) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700466 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(Class)) ||
467 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
468 strlen(ClassHelper(c).GetDescriptor()) == 0);
469 DCHECK_GE(byte_count, sizeof(Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700470
471 Object* obj = NULL;
472 size_t size = 0;
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700473 uint64_t allocation_start = 0;
474 if (measure_allocation_time_) {
475 allocation_start = NanoTime();
476 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700477
478 // We need to have a zygote space or else our newly allocated large object can end up in the
479 // Zygote resulting in it being prematurely freed.
480 // We can only do this for primive objects since large objects will not be within the card table
481 // range. This also means that we rely on SetClass not dirtying the object's card.
482 if (byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray()) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700483 size = RoundUp(byte_count, kPageSize);
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700484 obj = Allocate(self, large_object_space_.get(), size);
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700485 // Make sure that our large object didn't get placed anywhere within the space interval or else
486 // it breaks the immune range.
487 DCHECK(obj == NULL ||
488 reinterpret_cast<byte*>(obj) < spaces_.front()->Begin() ||
489 reinterpret_cast<byte*>(obj) >= spaces_.back()->End());
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700490 } else {
Ian Rogers50b35e22012-10-04 10:09:15 -0700491 obj = Allocate(self, alloc_space_, byte_count);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700492
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700493 // Ensure that we did not allocate into a zygote space.
494 DCHECK(obj == NULL || !have_zygote_space_ || !FindSpaceFromObject(obj)->IsZygoteSpace());
495 size = alloc_space_->AllocationSize(obj);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700496 }
497
Mathieu Chartier037813d2012-08-23 16:44:59 -0700498 if (LIKELY(obj != NULL)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700499 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700500
501 // Record allocation after since we want to use the atomic add for the atomic fence to guard
502 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700503 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700504
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700505 if (Dbg::IsAllocTrackingEnabled()) {
506 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700507 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700508 if (static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700509 // We already have a request pending, no reason to start more until we update
510 // concurrent_start_bytes_.
511 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700512 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
Ian Rogers1f539342012-10-03 21:09:42 -0700513 SirtRef<Object> ref(self, obj);
514 RequestConcurrentGC(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700515 }
516 VerifyObject(obj);
517
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700518 if (measure_allocation_time_) {
519 total_allocation_time_ += (NanoTime() - allocation_start) / kTimeAdjust;
520 }
521
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700522 return obj;
523 }
Mathieu Chartier037813d2012-08-23 16:44:59 -0700524 int64_t total_bytes_free = GetFreeMemory();
525 size_t max_contiguous_allocation = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700527 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
528 if ((*it)->IsAllocSpace()) {
529 (*it)->AsAllocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700530 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700531 }
Elliott Hughes418dfe72011-10-06 18:56:27 -0700532
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700533 std::string msg(StringPrintf("Failed to allocate a %zd-byte %s (%lld total bytes free; largest possible contiguous allocation %zd bytes)",
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700534 byte_count, PrettyDescriptor(c).c_str(), total_bytes_free, max_contiguous_allocation));
Ian Rogers50b35e22012-10-04 10:09:15 -0700535 self->ThrowOutOfMemoryError(msg.c_str());
Elliott Hughes418dfe72011-10-06 18:56:27 -0700536 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700537}
538
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700539bool Heap::IsHeapAddress(const Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700540 // Note: we deliberately don't take the lock here, and mustn't test anything that would
541 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700542 if (obj == NULL) {
543 return true;
544 }
545 if (!IsAligned<kObjectAlignment>(obj)) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700546 return false;
547 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800548 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800549 if (spaces_[i]->Contains(obj)) {
550 return true;
551 }
552 }
Mathieu Chartier0b0b5152012-10-15 13:53:46 -0700553 // Note: Doing this only works for the free list version of the large object space since the
554 // multiple memory map version uses a lock to do the contains check.
555 return large_object_space_->Contains(obj);
Elliott Hughesa2501992011-08-26 19:39:54 -0700556}
557
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700558bool Heap::IsLiveObjectLocked(const Object* obj) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700559 Locks::heap_bitmap_lock_->AssertReaderHeld(Thread::Current());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700560 return IsHeapAddress(obj) && GetLiveBitmap()->Test(obj);
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700561}
562
Elliott Hughes3e465b12011-09-02 18:26:12 -0700563#if VERIFY_OBJECT_ENABLED
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700564void Heap::VerifyObject(const Object* obj) {
jeffhao4eb68ed2012-10-17 16:41:07 -0700565 if (obj == NULL || this == NULL || !verify_objects_ || Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700566 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700567 return;
568 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700569 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700570}
571#endif
572
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700573void Heap::DumpSpaces() {
574 // TODO: C++0x auto
575 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700576 ContinuousSpace* space = *it;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700577 SpaceBitmap* live_bitmap = space->GetLiveBitmap();
578 SpaceBitmap* mark_bitmap = space->GetMarkBitmap();
579 LOG(INFO) << space << " " << *space << "\n"
580 << live_bitmap << " " << *live_bitmap << "\n"
581 << mark_bitmap << " " << *mark_bitmap;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700582 }
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700583 if (large_object_space_.get() != NULL) {
584 large_object_space_->Dump(LOG(INFO));
585 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700586}
587
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700588void Heap::VerifyObjectBody(const Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700589 if (!IsAligned<kObjectAlignment>(obj)) {
590 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700591 }
592
Ian Rogersf0bbeab2012-10-10 18:26:27 -0700593 // TODO: the bitmap tests below are racy if VerifyObjectBody is called without the
594 // heap_bitmap_lock_.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700595 if (!GetLiveBitmap()->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700596 // Check the allocation stack / live stack.
597 if (!std::binary_search(live_stack_->Begin(), live_stack_->End(), obj) &&
598 std::find(allocation_stack_->Begin(), allocation_stack_->End(), obj) ==
599 allocation_stack_->End()) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700600 if (large_object_space_->GetLiveObjects()->Test(obj)) {
601 DumpSpaces();
602 LOG(FATAL) << "Object is dead: " << obj;
603 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700604 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700605 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700606
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700607 // Ignore early dawn of the universe verifications
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700608 if (!VERIFY_OBJECT_FAST && GetObjectsAllocated() > 10) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700609 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
610 Object::ClassOffset().Int32Value();
611 const Class* c = *reinterpret_cast<Class* const *>(raw_addr);
612 if (c == NULL) {
613 LOG(FATAL) << "Null class in object: " << obj;
614 } else if (!IsAligned<kObjectAlignment>(c)) {
615 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
616 } else if (!GetLiveBitmap()->Test(c)) {
617 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
618 }
619 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
620 // Note: we don't use the accessors here as they have internal sanity checks
621 // that we don't want to run
622 raw_addr = reinterpret_cast<const byte*>(c) + Object::ClassOffset().Int32Value();
623 const Class* c_c = *reinterpret_cast<Class* const *>(raw_addr);
624 raw_addr = reinterpret_cast<const byte*>(c_c) + Object::ClassOffset().Int32Value();
625 const Class* c_c_c = *reinterpret_cast<Class* const *>(raw_addr);
626 CHECK_EQ(c_c, c_c_c);
627 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700628}
629
Brian Carlstrom78128a62011-09-15 17:21:19 -0700630void Heap::VerificationCallback(Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700631 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700632 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700633}
634
635void Heap::VerifyHeap() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700636 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700637 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700638}
639
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700640void Heap::RecordAllocation(size_t size, Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700641 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700642 DCHECK_GT(size, 0u);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700643 num_bytes_allocated_ += size;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700644
645 if (Runtime::Current()->HasStatsEnabled()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700646 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700647 ++thread_stats->allocated_objects;
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700648 thread_stats->allocated_bytes += size;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700649
650 // TODO: Update these atomically.
651 RuntimeStats* global_stats = Runtime::Current()->GetStats();
652 ++global_stats->allocated_objects;
653 global_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700654 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700655
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700656 // This is safe to do since the GC will never free objects which are neither in the allocation
657 // stack or the live bitmap.
658 while (!allocation_stack_->AtomicPushBack(obj)) {
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700659 CollectGarbageInternal(kGcTypeSticky, kGcCauseForAlloc, false);
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700660 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700661}
662
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700664 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
665 num_bytes_allocated_ -= freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700666
667 if (Runtime::Current()->HasStatsEnabled()) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700668 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700669 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700670 thread_stats->freed_bytes += freed_bytes;
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700671
672 // TODO: Do this concurrently.
673 RuntimeStats* global_stats = Runtime::Current()->GetStats();
674 global_stats->freed_objects += freed_objects;
675 global_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700676 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700677}
678
Ian Rogers50b35e22012-10-04 10:09:15 -0700679Object* Heap::TryToAllocate(Thread* self, AllocSpace* space, size_t alloc_size, bool grow) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700680 // Should we try to use a CAS here and fix up num_bytes_allocated_ later with AllocationSize?
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800681 if (num_bytes_allocated_ + alloc_size > max_allowed_footprint_) {
682 // max_allowed_footprint_ <= growth_limit_ so it is safe to check in here.
683 if (num_bytes_allocated_ + alloc_size > growth_limit_) {
684 // Completely out of memory.
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700685 return NULL;
686 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700687
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800688 if (enforce_heap_growth_rate_) {
689 if (grow) {
690 // Grow the heap by alloc_size extra bytes.
691 max_allowed_footprint_ = std::min(max_allowed_footprint_ + alloc_size, growth_limit_);
692 VLOG(gc) << "Grow heap to " << PrettySize(max_allowed_footprint_)
693 << " for a " << PrettySize(alloc_size) << " allocation";
694 } else {
695 return NULL;
696 }
697 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700698 }
699
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700700 return space->Alloc(self, alloc_size);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700701}
702
Ian Rogers50b35e22012-10-04 10:09:15 -0700703Object* Heap::Allocate(Thread* self, AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700704 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
705 // done in the runnable state where suspension is expected.
Ian Rogers81d425b2012-09-27 16:03:43 -0700706 DCHECK_EQ(self->GetState(), kRunnable);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700707 self->AssertThreadSuspensionIsAllowable();
Brian Carlstromb82b6872011-10-26 17:18:07 -0700708
Ian Rogers50b35e22012-10-04 10:09:15 -0700709 Object* ptr = TryToAllocate(self, space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700710 if (ptr != NULL) {
711 return ptr;
712 }
713
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700714 // The allocation failed. If the GC is running, block until it completes, and then retry the
715 // allocation.
Ian Rogers81d425b2012-09-27 16:03:43 -0700716 GcType last_gc = WaitForConcurrentGcToComplete(self);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700717 if (last_gc != kGcTypeNone) {
718 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Ian Rogers50b35e22012-10-04 10:09:15 -0700719 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700720 if (ptr != NULL) {
721 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700722 }
723 }
724
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700725 // Loop through our different Gc types and try to Gc until we get enough free memory.
726 for (size_t i = static_cast<size_t>(last_gc) + 1; i < static_cast<size_t>(kGcTypeMax); ++i) {
727 bool run_gc = false;
728 GcType gc_type = static_cast<GcType>(i);
729 switch (gc_type) {
730 case kGcTypeSticky: {
731 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700732 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
733 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700734 break;
735 }
736 case kGcTypePartial:
737 run_gc = have_zygote_space_;
738 break;
739 case kGcTypeFull:
740 run_gc = true;
741 break;
742 default:
743 break;
744 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700745
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700746 if (run_gc) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700747 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700748 GcType gc_type_ran = CollectGarbageInternal(gc_type, kGcCauseForAlloc, false);
Mathieu Chartier65db8802012-11-20 12:36:46 -0800749 DCHECK_GE(static_cast<size_t>(gc_type_ran), i);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700750 i = static_cast<size_t>(gc_type_ran);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700751
752 // Did we free sufficient memory for the allocation to succeed?
Ian Rogers50b35e22012-10-04 10:09:15 -0700753 ptr = TryToAllocate(self, space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700754 if (ptr != NULL) {
755 return ptr;
756 }
757 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700758 }
759
760 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700761 // Try harder, growing the heap if necessary.
Ian Rogers50b35e22012-10-04 10:09:15 -0700762 ptr = TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700763 if (ptr != NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700764 return ptr;
765 }
766
Elliott Hughes81ff3182012-03-23 20:35:56 -0700767 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
768 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
769 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700770
Elliott Hughes418dfe72011-10-06 18:56:27 -0700771 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700772 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
773 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700774
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700775 // We don't need a WaitForConcurrentGcToComplete here either.
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700776 CollectGarbageInternal(kGcTypeFull, kGcCauseForAlloc, true);
Ian Rogers50b35e22012-10-04 10:09:15 -0700777 return TryToAllocate(self, space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700778}
779
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700780void Heap::SetTargetHeapUtilization(float target) {
781 DCHECK_GT(target, 0.0f); // asserted in Java code
782 DCHECK_LT(target, 1.0f);
783 target_utilization_ = target;
784}
785
786int64_t Heap::GetMaxMemory() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700787 return growth_limit_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700788}
789
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700790int64_t Heap::GetTotalMemory() const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700791 return GetMaxMemory();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700792}
793
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700794int64_t Heap::GetFreeMemory() const {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700795 return GetMaxMemory() - num_bytes_allocated_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700796}
797
Mathieu Chartier155dfe92012-10-09 14:24:49 -0700798size_t Heap::GetTotalBytesFreed() const {
799 return total_bytes_freed_;
800}
801
802size_t Heap::GetTotalObjectsFreed() const {
803 return total_objects_freed_;
804}
805
806size_t Heap::GetTotalObjectsAllocated() const {
807 size_t total = large_object_space_->GetTotalObjectsAllocated();
808 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
809 Space* space = *it;
810 if (space->IsAllocSpace()) {
811 total += space->AsAllocSpace()->GetTotalObjectsAllocated();
812 }
813 }
814 return total;
815}
816
817size_t Heap::GetTotalBytesAllocated() const {
818 size_t total = large_object_space_->GetTotalBytesAllocated();
819 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
820 Space* space = *it;
821 if (space->IsAllocSpace()) {
822 total += space->AsAllocSpace()->GetTotalBytesAllocated();
823 }
824 }
825 return total;
826}
827
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700828class InstanceCounter {
829 public:
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700830 InstanceCounter(Class* c, bool count_assignable, size_t* const count)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700831 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700832 : class_(c), count_assignable_(count_assignable), count_(count) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700833
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700834 }
835
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700836 void operator()(const Object* o) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
837 const Class* instance_class = o->GetClass();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700838 if (count_assignable_) {
839 if (instance_class == class_) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700840 ++*count_;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700841 }
842 } else {
843 if (instance_class != NULL && class_->IsAssignableFrom(instance_class)) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700844 ++*count_;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700845 }
846 }
847 }
848
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700849 private:
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700850 Class* class_;
851 bool count_assignable_;
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700852 size_t* const count_;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700853};
854
855int64_t Heap::CountInstances(Class* c, bool count_assignable) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700856 size_t count = 0;
857 InstanceCounter counter(c, count_assignable, &count);
Ian Rogers50b35e22012-10-04 10:09:15 -0700858 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700859 GetLiveBitmap()->Visit(counter);
860 return count;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700861}
862
Ian Rogers30fab402012-01-23 15:43:46 -0800863void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700864 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
865 // last GC will not have necessarily been cleared.
Ian Rogers81d425b2012-09-27 16:03:43 -0700866 Thread* self = Thread::Current();
867 WaitForConcurrentGcToComplete(self);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700868 CollectGarbageInternal(kGcTypeFull, kGcCauseExplicit, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700869}
870
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700871void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700872 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800873 // Do this before acquiring the zygote creation lock so that we don't get lock order violations.
874 CollectGarbage(false);
Ian Rogers81d425b2012-09-27 16:03:43 -0700875 Thread* self = Thread::Current();
876 MutexLock mu(self, zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700877
878 // Try to see if we have any Zygote spaces.
879 if (have_zygote_space_) {
880 return;
881 }
882
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700883 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
884
885 {
886 // Flush the alloc stack.
Ian Rogers81d425b2012-09-27 16:03:43 -0700887 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700888 FlushAllocStack();
889 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700890
891 // Replace the first alloc space we find with a zygote space.
892 // TODO: C++0x auto
893 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
894 if ((*it)->IsAllocSpace()) {
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700895 DlMallocSpace* zygote_space = (*it)->AsAllocSpace();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700896
897 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
898 // of the remaining available heap memory.
899 alloc_space_ = zygote_space->CreateZygoteSpace();
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700900 alloc_space_->SetFootprintLimit(alloc_space_->Capacity());
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700901
902 // Change the GC retention policy of the zygote space to only collect when full.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -0700903 zygote_space->SetGcRetentionPolicy(kGcRetentionPolicyFullCollect);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700904 AddSpace(alloc_space_);
905 have_zygote_space_ = true;
906 break;
907 }
908 }
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700909
Ian Rogers5f5a2c02012-09-17 10:52:08 -0700910 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700911 // TODO: C++0x
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800912 for (Collectors::const_iterator it = mark_sweep_collectors_.begin();
913 it != mark_sweep_collectors_.end(); ++it) {
914 (*it)->ResetCumulativeStatistics();
Mathieu Chartier0325e622012-09-05 14:22:51 -0700915 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700916}
917
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700918void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700919 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
920 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700921 allocation_stack_->Reset();
922}
923
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700924size_t Heap::GetUsedMemorySize() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700925 return num_bytes_allocated_;
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700926}
927
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700928void Heap::MarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, ObjectStack* stack) {
929 Object** limit = stack->End();
930 for (Object** it = stack->Begin(); it != limit; ++it) {
931 const Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700932 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700933 if (LIKELY(bitmap->HasAddress(obj))) {
934 bitmap->Set(obj);
935 } else {
936 large_objects->Set(obj);
937 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700938 }
939}
940
Mathieu Chartierd8195f12012-10-05 12:21:28 -0700941void Heap::UnMarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, ObjectStack* stack) {
942 Object** limit = stack->End();
943 for (Object** it = stack->Begin(); it != limit; ++it) {
944 const Object* obj = *it;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700945 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700946 if (LIKELY(bitmap->HasAddress(obj))) {
947 bitmap->Clear(obj);
948 } else {
949 large_objects->Clear(obj);
950 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700951 }
952}
953
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700954GcType Heap::CollectGarbageInternal(GcType gc_type, GcCause gc_cause, bool clear_soft_references) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700955 Thread* self = Thread::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -0800956 ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
Ian Rogers81d425b2012-09-27 16:03:43 -0700957 Locks::mutator_lock_->AssertNotHeld(self);
Carl Shapiro58551df2011-07-24 03:09:51 -0700958
Ian Rogers120f1c72012-09-28 17:17:10 -0700959 if (self->IsHandlingStackOverflow()) {
960 LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
961 }
962
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700963 // Ensure there is only one GC at a time.
964 bool start_collect = false;
965 while (!start_collect) {
966 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700967 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700968 if (!is_gc_running_) {
969 is_gc_running_ = true;
970 start_collect = true;
971 }
972 }
973 if (!start_collect) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700974 WaitForConcurrentGcToComplete(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700975 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
976 // Not doing at the moment to ensure soft references are cleared.
977 }
978 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700979 gc_complete_lock_->AssertNotHeld(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700980
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700981 if (gc_cause == kGcCauseForAlloc && Runtime::Current()->HasStatsEnabled()) {
982 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
983 ++Thread::Current()->GetStats()->gc_for_alloc_count;
984 }
985
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700986 // We need to do partial GCs every now and then to avoid the heap growing too much and
987 // fragmenting.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700988 if (gc_type == kGcTypeSticky && ++sticky_gc_count_ > partial_gc_frequency_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700989 gc_type = have_zygote_space_ ? kGcTypePartial : kGcTypeFull;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700990 }
Mathieu Chartier0325e622012-09-05 14:22:51 -0700991 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700992 sticky_gc_count_ = 0;
993 }
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800994
Mathieu Chartier65db8802012-11-20 12:36:46 -0800995 uint64_t gc_start_time = NanoTime();
996 uint64_t gc_start_size = GetBytesAllocated();
997 // Approximate allocation rate in bytes / second.
998 DCHECK_NE(gc_start_time, last_gc_time_);
999 uint64_t ms_delta = NsToMs(gc_start_time - last_gc_time_);
1000 if (ms_delta != 0) {
1001 allocation_rate_ = (gc_start_size - last_gc_size_) * 1000 / ms_delta;
1002 VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1003 }
1004
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001005 DCHECK_LT(gc_type, kGcTypeMax);
1006 DCHECK_NE(gc_type, kGcTypeNone);
1007 MarkSweep* collector = NULL;
1008 for (Collectors::iterator it = mark_sweep_collectors_.begin();
1009 it != mark_sweep_collectors_.end(); ++it) {
1010 MarkSweep* cur_collector = *it;
1011 if (cur_collector->IsConcurrent() == concurrent_gc_ && cur_collector->GetGcType() == gc_type) {
1012 collector = cur_collector;
1013 break;
1014 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001015 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001016 CHECK(collector != NULL)
1017 << "Could not find garbage collector with concurrent=" << concurrent_gc_
1018 << " and type=" << gc_type;
1019 collector->clear_soft_references_ = clear_soft_references;
1020 collector->Run();
1021 total_objects_freed_ += collector->GetFreedObjects();
1022 total_bytes_freed_ += collector->GetFreedBytes();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001023
Mathieu Chartier65db8802012-11-20 12:36:46 -08001024 const size_t duration = collector->GetDuration();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001025 std::vector<uint64_t> pauses = collector->GetPauseTimes();
1026 bool was_slow = duration > kSlowGcThreshold ||
1027 (gc_cause == kGcCauseForAlloc && duration > kLongGcPauseThreshold);
1028 for (size_t i = 0; i < pauses.size(); ++i) {
1029 if (pauses[i] > kLongGcPauseThreshold) {
1030 was_slow = true;
1031 }
1032 }
1033
1034 if (was_slow) {
1035 const size_t percent_free = GetPercentFree();
1036 const size_t current_heap_size = GetUsedMemorySize();
1037 const size_t total_memory = GetTotalMemory();
1038 std::ostringstream pause_string;
1039 for (size_t i = 0; i < pauses.size(); ++i) {
1040 pause_string << PrettyDuration((pauses[i] / 1000) * 1000)
1041 << ((i != pauses.size() - 1) ? ", " : "");
1042 }
1043 LOG(INFO) << gc_cause << " " << collector->GetName()
1044 << "GC freed " << PrettySize(collector->GetFreedBytes()) << ", "
1045 << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1046 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1047 << " total " << PrettyDuration((duration / 1000) * 1000);
1048 if (VLOG_IS_ON(heap)) {
1049 collector->GetTimings().Dump();
1050 }
1051 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001052
Ian Rogers15bf2d32012-08-28 17:33:04 -07001053 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001054 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001055 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001056 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -07001057 // Wake anyone who may have been waiting for the GC to complete.
Ian Rogersc604d732012-10-14 16:09:54 -07001058 gc_complete_cond_->Broadcast(self);
Ian Rogers15bf2d32012-08-28 17:33:04 -07001059 }
1060 // Inform DDMS that a GC completed.
1061 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001062 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001063}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001064
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001065void Heap::UpdateAndMarkModUnion(MarkSweep* mark_sweep, TimingLogger& timings, GcType gc_type) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001066 if (gc_type == kGcTypeSticky) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001067 // 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 -07001068 // cards.
1069 return;
1070 }
1071
1072 // Update zygote mod union table.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001073 if (gc_type == kGcTypePartial) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001074 zygote_mod_union_table_->Update();
1075 timings.AddSplit("UpdateZygoteModUnionTable");
1076
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001077 zygote_mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001078 timings.AddSplit("ZygoteMarkReferences");
1079 }
1080
1081 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
1082 mod_union_table_->Update();
1083 timings.AddSplit("UpdateModUnionTable");
1084
1085 // Scans all objects in the mod-union table.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001086 mod_union_table_->MarkReferences(mark_sweep);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001087 timings.AddSplit("MarkImageToAllocSpaceReferences");
1088}
1089
1090void Heap::RootMatchesObjectVisitor(const Object* root, void* arg) {
1091 Object* obj = reinterpret_cast<Object*>(arg);
1092 if (root == obj) {
1093 LOG(INFO) << "Object " << obj << " is a root";
1094 }
1095}
1096
1097class ScanVisitor {
1098 public:
1099 void operator ()(const Object* obj) const {
1100 LOG(INFO) << "Would have rescanned object " << obj;
1101 }
1102};
1103
1104class VerifyReferenceVisitor {
1105 public:
1106 VerifyReferenceVisitor(Heap* heap, bool* failed)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001107 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1108 Locks::heap_bitmap_lock_)
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001109 : heap_(heap),
1110 failed_(failed) {
1111 }
1112
1113 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1114 // analysis.
1115 void operator ()(const Object* obj, const Object* ref, const MemberOffset& /* offset */,
1116 bool /* is_static */) const NO_THREAD_SAFETY_ANALYSIS {
1117 // Verify that the reference is live.
1118 if (ref != NULL && !IsLive(ref)) {
1119 CardTable* card_table = heap_->GetCardTable();
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001120 ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1121 ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001122
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001123 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001124 LOG(ERROR) << "Object " << obj << " references dead object " << ref << "\n"
1125 << "IsDirty = " << (*card_addr == CardTable::kCardDirty) << "\n"
1126 << "Obj type " << PrettyTypeOf(obj) << "\n"
1127 << "Ref type " << PrettyTypeOf(ref);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001128 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001129 void* cover_begin = card_table->AddrFromCard(card_addr);
1130 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001131 CardTable::kCardSize);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001132 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001133 << "-" << cover_end;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001134 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1135
1136 // Print out how the object is live.
1137 if (bitmap->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001138 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1139 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001140 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj)) {
1141 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1142 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001143 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1144 LOG(ERROR) << "Object " << obj << " found in live stack";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001145 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001146 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001147 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001148 }
1149
1150 // Attempt to see if the card table missed the reference.
1151 ScanVisitor scan_visitor;
1152 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001153 card_table->Scan(bitmap, byte_cover_begin, byte_cover_begin + CardTable::kCardSize,
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001154 scan_visitor, VoidFunctor());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001155
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001156 // Search to see if any of the roots reference our object.
1157 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1158 Runtime::Current()->VisitRoots(&Heap::RootMatchesObjectVisitor, arg);
1159 *failed_ = true;
1160 }
1161 }
1162
1163 bool IsLive(const Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001164 if (heap_->GetLiveBitmap()->Test(obj)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001165 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001166 }
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001167 ObjectStack* alloc_stack = heap_->allocation_stack_.get();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001168 // 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 -08001169 // If the object is not either in the live bitmap or allocation stack, so the object must be
1170 // dead.
1171 return std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001172 }
1173
1174 private:
1175 Heap* heap_;
1176 bool* failed_;
1177};
1178
1179class VerifyObjectVisitor {
1180 public:
1181 VerifyObjectVisitor(Heap* heap)
1182 : heap_(heap),
1183 failed_(false) {
1184
1185 }
1186
1187 void operator ()(const Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001189 VerifyReferenceVisitor visitor(heap_, const_cast<bool*>(&failed_));
1190 MarkSweep::VisitObjectReferences(obj, visitor);
1191 }
1192
1193 bool Failed() const {
1194 return failed_;
1195 }
1196
1197 private:
1198 Heap* heap_;
1199 bool failed_;
1200};
1201
1202// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001203bool Heap::VerifyHeapReferences() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001204 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001205 // Lets sort our allocation stacks so that we can efficiently binary search them.
1206 std::sort(allocation_stack_->Begin(), allocation_stack_->End());
1207 std::sort(live_stack_->Begin(), live_stack_->End());
1208 // Perform the verification.
1209 VerifyObjectVisitor visitor(this);
1210 GetLiveBitmap()->Visit(visitor);
1211 // We don't want to verify the objects in the allocation stack since they themselves may be
1212 // pointing to dead objects if they are not reachable.
1213 if (visitor.Failed()) {
1214 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001215 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001216 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001217 return true;
1218}
1219
1220class VerifyReferenceCardVisitor {
1221 public:
1222 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1223 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1224 Locks::heap_bitmap_lock_)
1225 : heap_(heap),
1226 failed_(failed) {
1227 }
1228
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001229 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1230 // annotalysis on visitors.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001231 void operator ()(const Object* obj, const Object* ref, const MemberOffset& offset,
1232 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001233 // Filter out class references since changing an object's class does not mark the card as dirty.
1234 // Also handles large objects, since the only reference they hold is a class reference.
1235 if (ref != NULL && !ref->IsClass()) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001236 CardTable* card_table = heap_->GetCardTable();
1237 // If the object is not dirty and it is referencing something in the live stack other than
1238 // class, then it must be on a dirty card.
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001239 if (!card_table->AddrIsInCardTable(obj)) {
1240 LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
1241 *failed_ = true;
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001242 } else if (!card_table->IsDirty(obj)) {
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001243 // Card should be either kCardDirty if it got re-dirtied after we aged it, or
1244 // kCardDirty - 1 if it didnt get touched since we aged it.
Mathieu Chartierd8195f12012-10-05 12:21:28 -07001245 ObjectStack* live_stack = heap_->live_stack_.get();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001246 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001247 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1248 LOG(ERROR) << "Object " << obj << " found in live stack";
1249 }
1250 if (heap_->GetLiveBitmap()->Test(obj)) {
1251 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1252 }
1253 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1254 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1255
1256 // Print which field of the object is dead.
1257 if (!obj->IsObjectArray()) {
1258 const Class* klass = is_static ? obj->AsClass() : obj->GetClass();
1259 CHECK(klass != NULL);
1260 const ObjectArray<Field>* fields = is_static ? klass->GetSFields() : klass->GetIFields();
1261 CHECK(fields != NULL);
1262 for (int32_t i = 0; i < fields->GetLength(); ++i) {
1263 const Field* cur = fields->Get(i);
1264 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1265 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1266 << PrettyField(cur);
1267 break;
1268 }
1269 }
1270 } else {
1271 const ObjectArray<Object>* object_array = obj->AsObjectArray<Object>();
1272 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1273 if (object_array->Get(i) == ref) {
1274 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1275 }
1276 }
1277 }
1278
1279 *failed_ = true;
1280 }
1281 }
1282 }
1283 }
1284
1285 private:
1286 Heap* heap_;
1287 bool* failed_;
1288};
1289
1290class VerifyLiveStackReferences {
1291 public:
1292 VerifyLiveStackReferences(Heap* heap)
1293 : heap_(heap),
1294 failed_(false) {
1295
1296 }
1297
1298 void operator ()(const Object* obj) const
1299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1300 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
1301 MarkSweep::VisitObjectReferences(obj, visitor);
1302 }
1303
1304 bool Failed() const {
1305 return failed_;
1306 }
1307
1308 private:
1309 Heap* heap_;
1310 bool failed_;
1311};
1312
1313bool Heap::VerifyMissingCardMarks() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001314 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001315
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001316 // We need to sort the live stack since we binary search it.
1317 std::sort(live_stack_->Begin(), live_stack_->End());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001318 VerifyLiveStackReferences visitor(this);
1319 GetLiveBitmap()->Visit(visitor);
1320
1321 // We can verify objects in the live stack since none of these should reference dead objects.
1322 for (Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
1323 visitor(*it);
1324 }
1325
1326 if (visitor.Failed()) {
1327 DumpSpaces();
1328 return false;
1329 }
1330 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001331}
1332
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001333void Heap::SwapStacks() {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001334 allocation_stack_.swap(live_stack_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001335
1336 // Sort the live stack so that we can quickly binary search it later.
1337 if (VERIFY_OBJECT_ENABLED) {
1338 std::sort(live_stack_->Begin(), live_stack_->End());
1339 }
1340}
1341
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001342void Heap::ProcessCards(TimingLogger& timings) {
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001343 // Clear image space cards and keep track of cards we cleared in the mod-union table.
1344 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1345 ContinuousSpace* space = *it;
1346 if (space->IsImageSpace()) {
1347 mod_union_table_->ClearCards(*it);
1348 timings.AddSplit("ModUnionClearCards");
1349 } else if (space->GetGcRetentionPolicy() == kGcRetentionPolicyFullCollect) {
1350 zygote_mod_union_table_->ClearCards(space);
1351 timings.AddSplit("ZygoteModUnionClearCards");
1352 } else {
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001353 // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
1354 // were dirty before the GC started.
1355 card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), VoidFunctor());
1356 timings.AddSplit("AllocSpaceClearCards");
Mathieu Chartier7469ebf2012-09-24 16:28:36 -07001357 }
1358 }
1359}
1360
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001361void Heap::PreGcVerification(GarbageCollector* gc) {
1362 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1363 Thread* self = Thread::Current();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001364
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001365 if (verify_pre_gc_heap_) {
1366 thread_list->SuspendAll();
1367 {
1368 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1369 if (!VerifyHeapReferences()) {
1370 LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed";
1371 }
1372 }
1373 thread_list->ResumeAll();
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001374 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001375
1376 // Check that all objects which reference things in the live stack are on dirty cards.
1377 if (verify_missing_card_marks_) {
1378 thread_list->SuspendAll();
1379 {
1380 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1381 SwapStacks();
1382 // Sort the live stack so that we can quickly binary search it later.
1383 if (!VerifyMissingCardMarks()) {
1384 LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
1385 }
1386 SwapStacks();
1387 }
1388 thread_list->ResumeAll();
1389 }
1390
1391 if (verify_mod_union_table_) {
1392 thread_list->SuspendAll();
1393 ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
1394 zygote_mod_union_table_->Update();
1395 zygote_mod_union_table_->Verify();
1396 mod_union_table_->Update();
1397 mod_union_table_->Verify();
1398 thread_list->ResumeAll();
1399 }
Mathieu Chartier4da7f2f2012-11-13 12:51:01 -08001400}
1401
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001402void Heap::PreSweepingGcVerification(GarbageCollector* gc) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001403 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001404 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001405
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001406 // Called before sweeping occurs since we want to make sure we are not going so reclaim any
1407 // reachable objects.
1408 if (verify_post_gc_heap_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001409 thread_list->SuspendAll();
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001410 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1411 // Swapping bound bitmaps does nothing.
1412 live_bitmap_.swap(mark_bitmap_);
1413 if (!VerifyHeapReferences()) {
1414 LOG(FATAL) << "Post " << gc->GetName() << "Gc verification failed";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001415 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001416 live_bitmap_.swap(mark_bitmap_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001417 thread_list->ResumeAll();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001418 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001419}
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001420
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001421void Heap::PostGcVerification(GarbageCollector* gc) {
1422 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001423
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001424 if (verify_system_weaks_) {
1425 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
1426 MarkSweep* mark_sweep = down_cast<MarkSweep*>(gc);
1427 mark_sweep->VerifySystemWeaks();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001428 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001429}
1430
Ian Rogers81d425b2012-09-27 16:03:43 -07001431GcType Heap::WaitForConcurrentGcToComplete(Thread* self) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001432 GcType last_gc_type = kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001433 if (concurrent_gc_) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001434 bool do_wait;
1435 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001436 {
1437 // Check if GC is running holding gc_complete_lock_.
Ian Rogers81d425b2012-09-27 16:03:43 -07001438 MutexLock mu(self, *gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001439 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001440 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 if (do_wait) {
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001442 uint64_t wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001443 // We must wait, change thread state then sleep on gc_complete_cond_;
1444 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1445 {
Ian Rogers81d425b2012-09-27 16:03:43 -07001446 MutexLock mu(self, *gc_complete_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001447 while (is_gc_running_) {
Ian Rogersc604d732012-10-14 16:09:54 -07001448 gc_complete_cond_->Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001449 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001450 last_gc_type = last_gc_type_;
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001451 wait_time = NanoTime() - wait_start;;
1452 total_wait_time_ += wait_time;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001453 }
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001454 if (wait_time > kLongGcPauseThreshold) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001455 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1456 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001457 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001458 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001459 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001460}
1461
Elliott Hughesc967f782012-04-16 10:23:15 -07001462void Heap::DumpForSigQuit(std::ostream& os) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001463 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetUsedMemorySize()) << "/"
1464 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
Mathieu Chartier155dfe92012-10-09 14:24:49 -07001465 DumpGcPerformanceInfo();
Elliott Hughesc967f782012-04-16 10:23:15 -07001466}
1467
1468size_t Heap::GetPercentFree() {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001469 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory());
Elliott Hughesc967f782012-04-16 10:23:15 -07001470}
1471
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001472void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001473 if (max_allowed_footprint > GetMaxMemory()) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001474 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001475 << PrettySize(GetMaxMemory());
1476 max_allowed_footprint = GetMaxMemory();
1477 }
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -07001478 max_allowed_footprint_ = max_allowed_footprint;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001479}
1480
Mathieu Chartier65db8802012-11-20 12:36:46 -08001481void Heap::GrowForUtilization(uint64_t gc_duration) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001482 // We know what our utilization is at this moment.
1483 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
Mathieu Chartier65db8802012-11-20 12:36:46 -08001484 const size_t bytes_allocated = GetBytesAllocated();
1485 last_gc_size_ = bytes_allocated;
1486 last_gc_time_ = NanoTime();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001487
Mathieu Chartier65db8802012-11-20 12:36:46 -08001488 size_t target_size = bytes_allocated / GetTargetHeapUtilization();
1489 if (target_size > bytes_allocated + max_free_) {
1490 target_size = bytes_allocated + max_free_;
1491 } else if (target_size < bytes_allocated + min_free_) {
1492 target_size = bytes_allocated + min_free_;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001493 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001494
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001495 SetIdealFootprint(target_size);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001496
1497 // Calculate when to perform the next ConcurrentGC if we have enough free memory.
1498 if (concurrent_gc_ && GetFreeMemory() >= concurrent_min_free_) {
1499 // Calculate the estimated GC duration.
1500 double gc_duration_seconds = NsToMs(gc_duration) / 1000.0;
1501 // Estimate how many remaining bytes we will have when we need to start the next GC.
1502 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
1503 if (remaining_bytes < max_allowed_footprint_) {
1504 // Start a concurrent GC when we get close to the estimated remaining bytes. When the
1505 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1506 // right away.
1507 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
1508 } else {
1509 // The estimated rate is so high that we should request another GC straight away.
1510 concurrent_start_bytes_ = bytes_allocated;
1511 }
1512 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1513 DCHECK_LE(max_allowed_footprint_, growth_limit_);
1514 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001515}
1516
jeffhaoc1160702011-10-27 15:48:45 -07001517void Heap::ClearGrowthLimit() {
jeffhaoc1160702011-10-27 15:48:45 -07001518 alloc_space_->ClearGrowthLimit();
1519}
1520
Elliott Hughesadb460d2011-10-05 17:02:34 -07001521void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001522 MemberOffset reference_queue_offset,
1523 MemberOffset reference_queueNext_offset,
1524 MemberOffset reference_pendingNext_offset,
1525 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001526 reference_referent_offset_ = reference_referent_offset;
1527 reference_queue_offset_ = reference_queue_offset;
1528 reference_queueNext_offset_ = reference_queueNext_offset;
1529 reference_pendingNext_offset_ = reference_pendingNext_offset;
1530 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1531 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1532 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1533 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1534 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1535 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1536}
1537
1538Object* Heap::GetReferenceReferent(Object* reference) {
1539 DCHECK(reference != NULL);
1540 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1541 return reference->GetFieldObject<Object*>(reference_referent_offset_, true);
1542}
1543
1544void Heap::ClearReferenceReferent(Object* reference) {
1545 DCHECK(reference != NULL);
1546 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1547 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1548}
1549
1550// Returns true if the reference object has not yet been enqueued.
1551bool Heap::IsEnqueuable(const Object* ref) {
1552 DCHECK(ref != NULL);
1553 const Object* queue = ref->GetFieldObject<Object*>(reference_queue_offset_, false);
1554 const Object* queue_next = ref->GetFieldObject<Object*>(reference_queueNext_offset_, false);
1555 return (queue != NULL) && (queue_next == NULL);
1556}
1557
1558void Heap::EnqueueReference(Object* ref, Object** cleared_reference_list) {
1559 DCHECK(ref != NULL);
1560 CHECK(ref->GetFieldObject<Object*>(reference_queue_offset_, false) != NULL);
1561 CHECK(ref->GetFieldObject<Object*>(reference_queueNext_offset_, false) == NULL);
1562 EnqueuePendingReference(ref, cleared_reference_list);
1563}
1564
1565void Heap::EnqueuePendingReference(Object* ref, Object** list) {
1566 DCHECK(ref != NULL);
1567 DCHECK(list != NULL);
1568
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001569 // TODO: Remove this lock, use atomic stacks for storing references.
1570 MutexLock mu(Thread::Current(), *reference_queue_lock_);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001571 if (*list == NULL) {
1572 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1573 *list = ref;
1574 } else {
1575 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1576 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1577 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1578 }
1579}
1580
1581Object* Heap::DequeuePendingReference(Object** list) {
1582 DCHECK(list != NULL);
1583 DCHECK(*list != NULL);
1584 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1585 Object* ref;
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001586
Mathieu Chartierd22d5482012-11-06 17:14:12 -08001587 // Note: the following code is thread-safe because it is only called from ProcessReferences which
1588 // is single threaded.
Elliott Hughesadb460d2011-10-05 17:02:34 -07001589 if (*list == head) {
1590 ref = *list;
1591 *list = NULL;
1592 } else {
1593 Object* next = head->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1594 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1595 ref = head;
1596 }
1597 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1598 return ref;
1599}
1600
Ian Rogers5d4bdc22011-11-02 22:15:43 -07001601void Heap::AddFinalizerReference(Thread* self, Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001602 ScopedObjectAccess soa(self);
Elliott Hughes77405792012-03-15 15:22:12 -07001603 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001604 args[0].SetL(object);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001605 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self, NULL, args,
1606 NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001607}
1608
1609size_t Heap::GetBytesAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001610 return num_bytes_allocated_;
1611}
1612
1613size_t Heap::GetObjectsAllocated() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001614 size_t total = 0;
1615 // TODO: C++0x
1616 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1617 Space* space = *it;
1618 if (space->IsAllocSpace()) {
1619 total += space->AsAllocSpace()->GetNumObjectsAllocated();
1620 }
1621 }
1622 return total;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001623}
1624
1625size_t Heap::GetConcurrentStartSize() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001626 return concurrent_start_size_;
1627}
1628
1629size_t Heap::GetConcurrentMinFree() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001630 return concurrent_min_free_;
Elliott Hughesadb460d2011-10-05 17:02:34 -07001631}
1632
1633void Heap::EnqueueClearedReferences(Object** cleared) {
1634 DCHECK(cleared != NULL);
1635 if (*cleared != NULL) {
Ian Rogers64b6d142012-10-29 16:34:15 -07001636 // When a runtime isn't started there are no reference queues to care about so ignore.
1637 if (LIKELY(Runtime::Current()->IsStarted())) {
1638 ScopedObjectAccess soa(Thread::Current());
1639 JValue args[1];
1640 args[0].SetL(*cleared);
1641 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(), NULL,
1642 args, NULL);
1643 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001644 *cleared = NULL;
1645 }
1646}
1647
Ian Rogers1f539342012-10-03 21:09:42 -07001648void Heap::RequestConcurrentGC(Thread* self) {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001649 // Make sure that we can do a concurrent GC.
Ian Rogers120f1c72012-09-28 17:17:10 -07001650 Runtime* runtime = Runtime::Current();
Mathieu Chartier65db8802012-11-20 12:36:46 -08001651 DCHECK(concurrent_gc_);
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001652 if (runtime == NULL || !runtime->IsFinishedStarting() ||
Ian Rogers120f1c72012-09-28 17:17:10 -07001653 !runtime->IsConcurrentGcEnabled()) {
1654 return;
1655 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001656 {
1657 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1658 if (runtime->IsShuttingDown()) {
1659 return;
1660 }
1661 }
1662 if (self->IsHandlingStackOverflow()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001663 return;
1664 }
1665
Ian Rogers120f1c72012-09-28 17:17:10 -07001666 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001667 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1668 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001669 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1670 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001671 CHECK(!env->ExceptionCheck());
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001672}
1673
Ian Rogers81d425b2012-09-27 16:03:43 -07001674void Heap::ConcurrentGC(Thread* self) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001675 {
1676 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier65db8802012-11-20 12:36:46 -08001677 if (Runtime::Current()->IsShuttingDown()) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001678 return;
1679 }
Mathieu Chartier2542d662012-06-21 17:14:11 -07001680 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001681
Mathieu Chartier65db8802012-11-20 12:36:46 -08001682 // Wait for any GCs currently running to finish.
Ian Rogers81d425b2012-09-27 16:03:43 -07001683 if (WaitForConcurrentGcToComplete(self) == kGcTypeNone) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001684 if (alloc_space_->Size() > min_alloc_space_size_for_sticky_gc_) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001685 CollectGarbageInternal(kGcTypeSticky, kGcCauseBackground, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001686 } else {
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001687 CollectGarbageInternal(kGcTypePartial, kGcCauseBackground, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001688 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001689 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001690}
1691
Mathieu Chartier3056d0c2012-10-19 10:49:56 -07001692void Heap::Trim() {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001693 alloc_space_->Trim();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001694}
1695
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001696void Heap::RequestHeapTrim() {
1697 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1698 // because that only marks object heads, so a large array looks like lots of empty space. We
1699 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1700 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1701 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1702 // not how much use we're making of those pages.
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001703 uint64_t ms_time = NsToMs(NanoTime());
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001704 float utilization =
1705 static_cast<float>(alloc_space_->GetNumBytesAllocated()) / alloc_space_->Size();
1706 if ((utilization > 0.75f) || ((ms_time - last_trim_time_) < 2 * 1000)) {
1707 // Don't bother trimming the alloc space if it's more than 75% utilized, or if a
1708 // heap trim occurred in the last two seconds.
1709 return;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001710 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001711
1712 Thread* self = Thread::Current();
1713 {
1714 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
1715 Runtime* runtime = Runtime::Current();
1716 if (runtime == NULL || !runtime->IsFinishedStarting() || runtime->IsShuttingDown()) {
1717 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
1718 // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
1719 // as we don't hold the lock while requesting the trim).
1720 return;
1721 }
Ian Rogerse1d490c2012-02-03 09:09:07 -08001722 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001723 last_trim_time_ = ms_time;
Ian Rogers120f1c72012-09-28 17:17:10 -07001724 JNIEnv* env = self->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001725 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1726 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001727 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1728 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001729 CHECK(!env->ExceptionCheck());
1730}
1731
Carl Shapiro69759ea2011-07-21 18:13:35 -07001732} // namespace art