blob: 1626e728cb117e859d6e7d96b7ad8a21c62ebdf2 [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
Mathieu Chartier637e3482012-08-17 10:41:32 -070025#include "atomic.h"
Ian Rogers5d76c432011-10-31 21:42:49 -070026#include "card_table.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070027#include "debugger.h"
Mathieu Chartiercc236d72012-07-20 10:29:05 -070028#include "heap_bitmap.h"
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070029#include "image.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070030#include "mark_sweep.h"
Mathieu Chartierb43b7d42012-06-19 13:15:09 -070031#include "mod_union_table.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080033#include "object_utils.h"
Brian Carlstrom5643b782012-02-05 12:32:53 -080034#include "os.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070035#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036#include "scoped_thread_state_change.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070037#include "space.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070038#include "stl_util.h"
Elliott Hughes8d768a92011-09-14 16:35:25 -070039#include "thread_list.h"
Elliott Hughes767a1472011-10-26 18:49:02 -070040#include "timing_logger.h"
41#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070042#include "well_known_classes.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070043
44namespace art {
45
Ian Rogers30fab402012-01-23 15:43:46 -080046static void UpdateFirstAndLastSpace(Space** first_space, Space** last_space, Space* space) {
47 if (*first_space == NULL) {
48 *first_space = space;
49 *last_space = space;
50 } else {
51 if ((*first_space)->Begin() > space->Begin()) {
52 *first_space = space;
53 } else if (space->Begin() > (*last_space)->Begin()) {
54 *last_space = space;
55 }
56 }
57}
58
Elliott Hughesae80b492012-04-24 10:43:17 -070059static bool GenerateImage(const std::string& image_file_name) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080060 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
Brian Carlstrom5643b782012-02-05 12:32:53 -080061 std::vector<std::string> boot_class_path;
62 Split(boot_class_path_string, ':', boot_class_path);
Brian Carlstromb2793372012-03-17 18:27:16 -070063 if (boot_class_path.empty()) {
64 LOG(FATAL) << "Failed to generate image because no boot class path specified";
65 }
Brian Carlstrom5643b782012-02-05 12:32:53 -080066
67 std::vector<char*> arg_vector;
68
69 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -070070 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom5643b782012-02-05 12:32:53 -080071 const char* dex2oat = dex2oat_string.c_str();
72 arg_vector.push_back(strdup(dex2oat));
73
74 std::string image_option_string("--image=");
75 image_option_string += image_file_name;
76 const char* image_option = image_option_string.c_str();
77 arg_vector.push_back(strdup(image_option));
78
79 arg_vector.push_back(strdup("--runtime-arg"));
80 arg_vector.push_back(strdup("-Xms64m"));
81
82 arg_vector.push_back(strdup("--runtime-arg"));
83 arg_vector.push_back(strdup("-Xmx64m"));
84
85 for (size_t i = 0; i < boot_class_path.size(); i++) {
86 std::string dex_file_option_string("--dex-file=");
87 dex_file_option_string += boot_class_path[i];
88 const char* dex_file_option = dex_file_option_string.c_str();
89 arg_vector.push_back(strdup(dex_file_option));
90 }
91
92 std::string oat_file_option_string("--oat-file=");
93 oat_file_option_string += image_file_name;
94 oat_file_option_string.erase(oat_file_option_string.size() - 3);
95 oat_file_option_string += "oat";
96 const char* oat_file_option = oat_file_option_string.c_str();
97 arg_vector.push_back(strdup(oat_file_option));
98
99 arg_vector.push_back(strdup("--base=0x60000000"));
100
Elliott Hughes48436bb2012-02-07 15:23:28 -0800101 std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom5643b782012-02-05 12:32:53 -0800102 LOG(INFO) << command_line;
103
Elliott Hughes48436bb2012-02-07 15:23:28 -0800104 arg_vector.push_back(NULL);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800105 char** argv = &arg_vector[0];
106
107 // fork and exec dex2oat
108 pid_t pid = fork();
109 if (pid == 0) {
110 // no allocation allowed between fork and exec
111
112 // change process groups, so we don't get reaped by ProcessManager
113 setpgid(0, 0);
114
115 execv(dex2oat, argv);
116
117 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
118 return false;
119 } else {
120 STLDeleteElements(&arg_vector);
121
122 // wait for dex2oat to finish
123 int status;
124 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
125 if (got_pid != pid) {
126 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
127 return false;
128 }
129 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
130 LOG(ERROR) << dex2oat << " failed: " << command_line;
131 return false;
132 }
133 }
134 return true;
135}
136
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800137Heap::Heap(size_t initial_size, size_t growth_limit, size_t capacity,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700138 const std::string& original_image_file_name, bool concurrent_gc)
139 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800140 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700141 concurrent_gc_(concurrent_gc),
142 have_zygote_space_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800143 card_marking_disabled_(false),
144 is_gc_running_(false),
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700145 concurrent_start_bytes_(std::numeric_limits<size_t>::max()),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700146 concurrent_start_size_(128 * KB),
147 concurrent_min_free_(256 * KB),
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700148 sticky_gc_count_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800149 num_bytes_allocated_(0),
150 num_objects_allocated_(0),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700151 last_trim_time_(0),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700152 try_running_gc_(false),
153 requesting_gc_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800154 reference_referent_offset_(0),
155 reference_queue_offset_(0),
156 reference_queueNext_offset_(0),
157 reference_pendingNext_offset_(0),
158 finalizer_reference_zombie_offset_(0),
159 target_utilization_(0.5),
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700160 verify_objects_(false) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800161 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800162 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700163 }
164
Ian Rogers30fab402012-01-23 15:43:46 -0800165 // Compute the bounds of all spaces for allocating live and mark bitmaps
166 // there will be at least one space (the alloc space)
167 Space* first_space = NULL;
168 Space* last_space = NULL;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700169
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700170 live_bitmap_.reset(new HeapBitmap(this));
171 mark_bitmap_.reset(new HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700172
Ian Rogers30fab402012-01-23 15:43:46 -0800173 // Requested begin for the alloc space, to follow the mapped image and oat files
174 byte* requested_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800175 std::string image_file_name(original_image_file_name);
176 if (!image_file_name.empty()) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700177 Space* image_space = NULL;
178
Brian Carlstrom5643b782012-02-05 12:32:53 -0800179 if (OS::FileExists(image_file_name.c_str())) {
180 // If the /system file exists, it should be up-to-date, don't try to generate
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700181 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800182 } else {
183 // If the /system file didn't exist, we need to use one from the art-cache.
184 // If the cache file exists, try to open, but if it fails, regenerate.
185 // If it does not exist, generate.
186 image_file_name = GetArtCacheFilenameOrDie(image_file_name);
187 if (OS::FileExists(image_file_name.c_str())) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700188 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800189 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700190 if (image_space == NULL) {
Brian Carlstrom5643b782012-02-05 12:32:53 -0800191 if (!GenerateImage(image_file_name)) {
192 LOG(FATAL) << "Failed to generate image: " << image_file_name;
193 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700194 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800195 }
196 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700197 if (image_space == NULL) {
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800198 LOG(FATAL) << "Failed to create space from " << image_file_name;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700199 }
Brian Carlstrom5643b782012-02-05 12:32:53 -0800200
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700201 AddSpace(image_space);
202 UpdateFirstAndLastSpace(&first_space, &last_space, image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800203 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
204 // isn't going to get in the middle
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700205 byte* oat_end_addr = GetImageSpace()->GetImageHeader().GetOatEnd();
206 CHECK(oat_end_addr > GetImageSpace()->End());
Ian Rogers30fab402012-01-23 15:43:46 -0800207 if (oat_end_addr > requested_begin) {
208 requested_begin = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_end_addr),
209 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700210 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700211 }
212
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700213 UniquePtr<AllocSpace> alloc_space(Space::CreateAllocSpace(
214 "alloc space", initial_size, growth_limit, capacity, requested_begin));
215 alloc_space_ = alloc_space.release();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700216 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700217 AddSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700218
Ian Rogers30fab402012-01-23 15:43:46 -0800219 UpdateFirstAndLastSpace(&first_space, &last_space, alloc_space_);
220 byte* heap_begin = first_space->Begin();
Ian Rogers3bb17a62012-01-27 23:56:44 -0800221 size_t heap_capacity = (last_space->Begin() - first_space->Begin()) + last_space->NonGrowthLimitCapacity();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700222
Ian Rogers30fab402012-01-23 15:43:46 -0800223 // Mark image objects in the live bitmap
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800224 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800225 Space* space = spaces_[i];
226 if (space->IsImageSpace()) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700227 space->AsImageSpace()->RecordImageAllocations(space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800228 }
229 }
230
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800231 // Allocate the card table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700232 card_table_.reset(CardTable::Create(heap_begin, heap_capacity));
233 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700234
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700235 mod_union_table_.reset(new ModUnionTableToZygoteAllocspace<ModUnionTableReferenceCache>(this));
236 CHECK(mod_union_table_.get() != NULL) << "Failed to create mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700237
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700238 zygote_mod_union_table_.reset(new ModUnionTableCardCache(this));
239 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700240
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700241 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700242 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700243 num_objects_allocated_ = 0;
244
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700245 // Max stack size in bytes.
246 static const size_t max_stack_size = capacity / SpaceBitmap::kAlignment * kWordSize;
247
248 // TODO: Rename MarkStack to a more generic name?
249 mark_stack_.reset(MarkStack::Create("dalvik-mark-stack", max_stack_size));
250 allocation_stack_.reset(MarkStack::Create("dalvik-allocation-stack", max_stack_size));
251 live_stack_.reset(MarkStack::Create("dalvik-live-stack", max_stack_size));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700252
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800253 // It's still too early to take a lock because there are no threads yet,
Elliott Hughes92b3b562011-09-08 16:32:26 -0700254 // but we can create the heap lock now. We don't create it earlier to
255 // make it clear that you can't use locks during heap initialization.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700256 gc_complete_lock_ = new Mutex("GC complete lock");
257 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable"));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700258
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800259 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800260 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700261 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700262}
263
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700264// Sort spaces based on begin address
265class SpaceSorter {
266 public:
267 bool operator () (const Space* a, const Space* b) const {
268 return a->Begin() < b->Begin();
269 }
270};
271
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800272void Heap::AddSpace(Space* space) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700273 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700274 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700275 DCHECK(space->GetLiveBitmap() != NULL);
276 live_bitmap_->AddSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700277 DCHECK(space->GetMarkBitmap() != NULL);
278 mark_bitmap_->AddSpaceBitmap(space->GetMarkBitmap());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800279 spaces_.push_back(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700280 if (space->IsAllocSpace()) {
281 alloc_space_ = space->AsAllocSpace();
282 }
283
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700284 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
285 std::sort(spaces_.begin(), spaces_.end(), SpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700286
287 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
288 // avoid redundant marking.
289 bool seen_zygote = false, seen_alloc = false;
290 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
291 Space* space = *it;
292 if (space->IsImageSpace()) {
293 DCHECK(!seen_zygote);
294 DCHECK(!seen_alloc);
295 } if (space->IsZygoteSpace()) {
296 DCHECK(!seen_alloc);
297 seen_zygote = true;
298 } else if (space->IsAllocSpace()) {
299 seen_alloc = true;
300 }
301 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800302}
303
304Heap::~Heap() {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700305 // If we don't reset then the mark stack complains in it's destructor.
306 allocation_stack_->Reset();
307 live_stack_->Reset();
308
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800309 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800310 // We can't take the heap lock here because there might be a daemon thread suspended with the
311 // heap lock held. We know though that no non-daemon threads are executing, and we know that
312 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
313 // 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 -0700314 STLDeleteElements(&spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315 delete gc_complete_lock_;
316
Carl Shapiro69759ea2011-07-21 18:13:35 -0700317}
318
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700319Space* Heap::FindSpaceFromObject(const Object* obj) const {
320 // TODO: C++0x auto
321 for (Spaces::const_iterator cur = spaces_.begin(); cur != spaces_.end(); ++cur) {
322 if ((*cur)->Contains(obj)) {
323 return *cur;
324 }
325 }
326 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
327 return NULL;
328}
329
330ImageSpace* Heap::GetImageSpace() {
331 // TODO: C++0x auto
332 for (Spaces::const_iterator cur = spaces_.begin(); cur != spaces_.end(); ++cur) {
333 if ((*cur)->IsImageSpace()) {
334 return (*cur)->AsImageSpace();
335 }
336 }
337 return NULL;
338}
339
340AllocSpace* Heap::GetAllocSpace() {
341 return alloc_space_;
342}
343
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700344static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
345 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
346
347 size_t chunk_size = static_cast<size_t>(reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start));
348 size_t chunk_free_bytes = 0;
349 if (used_bytes < chunk_size) {
350 chunk_free_bytes = chunk_size - used_bytes;
351 }
352
353 if (chunk_free_bytes > max_contiguous_allocation) {
354 max_contiguous_allocation = chunk_free_bytes;
355 }
356}
357
358Object* Heap::AllocObject(Class* c, size_t byte_count) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700359 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(Class)) ||
360 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
361 strlen(ClassHelper(c).GetDescriptor()) == 0);
362 DCHECK_GE(byte_count, sizeof(Object));
Mathieu Chartier037813d2012-08-23 16:44:59 -0700363 Object* obj = Allocate(alloc_space_, byte_count);
364 if (LIKELY(obj != NULL)) {
365#if VERIFY_OBJECT_ENABLED
366 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
367 // Verify objects doesn't like objects in allocation stack not being marked as live.
368 live_bitmap_->Set(obj);
369#endif
370
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700372
373 // Record allocation after since we want to use the atomic add for the atomic fence to guard
374 // the SetClass since we do not want the class to appear NULL in another thread.
375 RecordAllocation(alloc_space_, obj);
376
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377 if (Dbg::IsAllocTrackingEnabled()) {
378 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700379 }
Mathieu Chartier637e3482012-08-17 10:41:32 -0700380 const bool request_concurrent_gc = num_bytes_allocated_ >= concurrent_start_bytes_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700381 if (request_concurrent_gc) {
382 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
383 SirtRef<Object> ref(obj);
384 RequestConcurrentGC();
385 }
386 VerifyObject(obj);
387
388 // Additional verification to ensure that we did not allocate into a zygote space.
389 DCHECK(!have_zygote_space_ || !FindSpaceFromObject(obj)->IsZygoteSpace());
390
391 return obj;
392 }
Mathieu Chartier037813d2012-08-23 16:44:59 -0700393 int64_t total_bytes_free = GetFreeMemory();
394 size_t max_contiguous_allocation = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700395 // TODO: C++0x auto
396 for (Spaces::const_iterator cur = spaces_.begin(); cur != spaces_.end(); ++cur) {
397 if ((*cur)->IsAllocSpace()) {
398 (*cur)->AsAllocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700399 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700400 }
Elliott Hughes418dfe72011-10-06 18:56:27 -0700401
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700402 std::string msg(StringPrintf("Failed to allocate a %zd-byte %s (%lld total bytes free; largest possible contiguous allocation %zd bytes)",
403 byte_count,
404 PrettyDescriptor(c).c_str(),
405 total_bytes_free, max_contiguous_allocation));
406 Thread::Current()->ThrowOutOfMemoryError(msg.c_str());
Elliott Hughes418dfe72011-10-06 18:56:27 -0700407 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700408}
409
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700410bool Heap::IsHeapAddress(const Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700411 // Note: we deliberately don't take the lock here, and mustn't test anything that would
412 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700413 if (obj == NULL) {
414 return true;
415 }
416 if (!IsAligned<kObjectAlignment>(obj)) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700417 return false;
418 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800419 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800420 if (spaces_[i]->Contains(obj)) {
421 return true;
422 }
423 }
424 return false;
Elliott Hughesa2501992011-08-26 19:39:54 -0700425}
426
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700427bool Heap::IsLiveObjectLocked(const Object* obj) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 GlobalSynchronization::heap_bitmap_lock_->AssertReaderHeld();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700429 return IsHeapAddress(obj) && GetLiveBitmap()->Test(obj);
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700430}
431
Elliott Hughes3e465b12011-09-02 18:26:12 -0700432#if VERIFY_OBJECT_ENABLED
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433void Heap::VerifyObject(const Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700434 if (obj == NULL || this == NULL || !verify_objects_ || Runtime::Current()->IsShuttingDown() ||
Ian Rogers141d6222012-04-05 12:23:06 -0700435 Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700436 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700437 return;
438 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700439 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700440}
441#endif
442
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700443void Heap::DumpSpaces() {
444 // TODO: C++0x auto
445 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700446 Space* space = *it;
447 LOG(INFO) << *space;
448 LOG(INFO) << *space->GetLiveBitmap();
449 LOG(INFO) << *space->GetMarkBitmap();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700450 }
451}
452
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700453// We want to avoid bit rotting.
454void Heap::VerifyObjectBody(const Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700455 if (!IsAligned<kObjectAlignment>(obj)) {
456 LOG(FATAL) << "Object isn't aligned: " << obj;
457 } else if (!GetLiveBitmap()->Test(obj)) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700458 DumpSpaces();
459 LOG(FATAL) << "Object is dead: " << obj;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700460 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700461
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700462 // Ignore early dawn of the universe verifications
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700463 if (!VERIFY_OBJECT_FAST && num_objects_allocated_ > 10) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700464 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
465 Object::ClassOffset().Int32Value();
466 const Class* c = *reinterpret_cast<Class* const *>(raw_addr);
467 if (c == NULL) {
468 LOG(FATAL) << "Null class in object: " << obj;
469 } else if (!IsAligned<kObjectAlignment>(c)) {
470 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
471 } else if (!GetLiveBitmap()->Test(c)) {
472 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
473 }
474 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
475 // Note: we don't use the accessors here as they have internal sanity checks
476 // that we don't want to run
477 raw_addr = reinterpret_cast<const byte*>(c) + Object::ClassOffset().Int32Value();
478 const Class* c_c = *reinterpret_cast<Class* const *>(raw_addr);
479 raw_addr = reinterpret_cast<const byte*>(c_c) + Object::ClassOffset().Int32Value();
480 const Class* c_c_c = *reinterpret_cast<Class* const *>(raw_addr);
481 CHECK_EQ(c_c, c_c_c);
482 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700483}
484
Brian Carlstrom78128a62011-09-15 17:21:19 -0700485void Heap::VerificationCallback(Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700486 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700487 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700488}
489
490void Heap::VerifyHeap() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700491 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700492 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700493}
494
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700495void Heap::RecordAllocation(AllocSpace* space, const Object* obj) {
496 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700497 size_t size = space->AllocationSize(obj);
498 DCHECK_GT(size, 0u);
Mathieu Chartier637e3482012-08-17 10:41:32 -0700499 COMPILE_ASSERT(sizeof(size_t) == sizeof(int32_t),
500 int32_t_must_be_same_size_as_size_t_for_used_atomic_operations);
Mathieu Chartier556fad32012-08-20 16:13:20 -0700501 android_atomic_add(size, reinterpret_cast<volatile int32_t*>(
502 reinterpret_cast<size_t>(&num_bytes_allocated_)));
503 android_atomic_add(1, reinterpret_cast<volatile int32_t*>(
504 reinterpret_cast<size_t>(&num_objects_allocated_)));
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700505
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700506 if (Runtime::Current()->HasStatsEnabled()) {
507 RuntimeStats* global_stats = Runtime::Current()->GetStats();
508 RuntimeStats* thread_stats = Thread::Current()->GetStats();
509 ++global_stats->allocated_objects;
510 ++thread_stats->allocated_objects;
511 global_stats->allocated_bytes += size;
512 thread_stats->allocated_bytes += size;
513 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700514 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700515
516 DCHECK(obj);
517
518 allocation_stack_->AtomicPush(obj);
Carl Shapiro58551df2011-07-24 03:09:51 -0700519}
520
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700521void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier637e3482012-08-17 10:41:32 -0700522 COMPILE_ASSERT(sizeof(size_t) == sizeof(int32_t),
523 int32_t_must_be_same_size_as_size_t_for_used_atomic_operations);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700524 DCHECK_LE(freed_objects, num_objects_allocated_);
Mathieu Chartier637e3482012-08-17 10:41:32 -0700525 android_atomic_add(-static_cast<int32_t>(freed_objects),
Mathieu Chartier556fad32012-08-20 16:13:20 -0700526 reinterpret_cast<volatile int32_t*>(
527 reinterpret_cast<size_t>(&num_objects_allocated_)));
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700528
529 DCHECK_LE(freed_bytes, num_bytes_allocated_);
Mathieu Chartier637e3482012-08-17 10:41:32 -0700530 android_atomic_add(-static_cast<int32_t>(freed_bytes),
Mathieu Chartier556fad32012-08-20 16:13:20 -0700531 reinterpret_cast<volatile int32_t*>(
532 reinterpret_cast<size_t>(&num_bytes_allocated_)));
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700533
534 if (Runtime::Current()->HasStatsEnabled()) {
535 RuntimeStats* global_stats = Runtime::Current()->GetStats();
536 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700537 global_stats->freed_objects += freed_objects;
538 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700539 global_stats->freed_bytes += freed_bytes;
540 thread_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700541 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700542}
543
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700544Object* Heap::Allocate(AllocSpace* space, size_t alloc_size) {
545 Thread* self = Thread::Current();
Ian Rogers0399dde2012-06-06 17:09:28 -0700546 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
547 // done in the runnable state where suspension is expected.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700548#ifndef NDEBUG
549 {
550 MutexLock mu(*GlobalSynchronization::thread_suspend_count_lock_);
551 CHECK_EQ(self->GetState(), kRunnable);
552 }
553 self->AssertThreadSuspensionIsAllowable();
554#endif
Brian Carlstromb82b6872011-10-26 17:18:07 -0700555
Ian Rogers30fab402012-01-23 15:43:46 -0800556 Object* ptr = space->AllocWithoutGrowth(alloc_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700557 if (ptr != NULL) {
558 return ptr;
559 }
560
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700561 // The allocation failed. If the GC is running, block until it completes else request a
562 // foreground partial collection.
563 if (!WaitForConcurrentGcToComplete()) {
564 // No concurrent GC so perform a foreground collection.
565 if (Runtime::Current()->HasStatsEnabled()) {
566 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
567 ++Thread::Current()->GetStats()->gc_for_alloc_count;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700568 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700569 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700570 CollectGarbageInternal(have_zygote_space_ ? GC_PARTIAL : GC_FULL, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700571 self->TransitionFromSuspendedToRunnable();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700572 }
573
Ian Rogers30fab402012-01-23 15:43:46 -0800574 ptr = space->AllocWithoutGrowth(alloc_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700575 if (ptr != NULL) {
576 return ptr;
577 }
578
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700579 const size_t alloc_space_size = alloc_space_->Size();
580 if (alloc_space_size > kMinAllocSpaceSizeForStickyGC &&
581 alloc_space_->Capacity() - alloc_space_size < kMinRemainingSpaceForStickyGC) {
582 // Partial GC didn't free enough memory, try a full GC.
583 if (Runtime::Current()->HasStatsEnabled()) {
584 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
585 ++Thread::Current()->GetStats()->gc_for_alloc_count;
586 }
587
588 // Don't bother trying a young GC unless we have a few MB AllocSpace.
589 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
590 CollectGarbageInternal(GC_STICKY, false);
591 self->TransitionFromSuspendedToRunnable();
592
593 ptr = space->AllocWithoutGrowth(alloc_size);
594 if (ptr != NULL) {
595 return ptr;
596 }
597 }
598
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700599 if (!have_zygote_space_) {
600 // Partial GC didn't free enough memory, try a full GC.
601 if (Runtime::Current()->HasStatsEnabled()) {
602 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
603 ++Thread::Current()->GetStats()->gc_for_alloc_count;
604 }
605 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700606 CollectGarbageInternal(GC_PARTIAL, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700607 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700608
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700609 ptr = space->AllocWithoutGrowth(alloc_size);
610 if (ptr != NULL) {
611 return ptr;
612 }
613 }
614
615 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700616 // Try harder, growing the heap if necessary.
Ian Rogers30fab402012-01-23 15:43:46 -0800617 ptr = space->AllocWithGrowth(alloc_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700618 if (ptr != NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800619 size_t new_footprint = space->GetFootprintLimit();
Elliott Hughes418dfe72011-10-06 18:56:27 -0700620 // OLD-TODO: may want to grow a little bit more so that the amount of
Carl Shapiro58551df2011-07-24 03:09:51 -0700621 // free space is equal to the old free space + the
622 // utilization slop for the new allocation.
Ian Rogers3bb17a62012-01-27 23:56:44 -0800623 VLOG(gc) << "Grow heap (frag case) to " << PrettySize(new_footprint)
Ian Rogers162a31c2012-01-31 16:14:31 -0800624 << " for a " << PrettySize(alloc_size) << " allocation";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700625 return ptr;
626 }
627
Elliott Hughes81ff3182012-03-23 20:35:56 -0700628 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
629 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
630 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700631
Elliott Hughes418dfe72011-10-06 18:56:27 -0700632 // OLD-TODO: wait for the finalizers from the previous GC to finish
Ian Rogers3bb17a62012-01-27 23:56:44 -0800633 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size) << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700634
635 if (Runtime::Current()->HasStatsEnabled()) {
636 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
637 ++Thread::Current()->GetStats()->gc_for_alloc_count;
638 }
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700639 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700640 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700641 CollectGarbageInternal(GC_FULL, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700642 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700643 return space->AllocWithGrowth(alloc_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700644}
645
Elliott Hughesbf86d042011-08-31 17:53:14 -0700646int64_t Heap::GetMaxMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700647 size_t total = 0;
648 // TODO: C++0x auto
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700649 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
650 Space* space = *it;
651 if (space->IsAllocSpace()) {
652 total += space->AsAllocSpace()->Capacity();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700653 }
654 }
655 return total;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700656}
657
658int64_t Heap::GetTotalMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700659 return GetMaxMemory();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700660}
661
662int64_t Heap::GetFreeMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700663 return GetMaxMemory() - num_bytes_allocated_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700664}
665
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700666class InstanceCounter {
667 public:
668 InstanceCounter(Class* c, bool count_assignable)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_)
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700670 : class_(c), count_assignable_(count_assignable), count_(0) {
671 }
672
673 size_t GetCount() {
674 return count_;
675 }
676
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700677 static void Callback(Object* o, void* arg)
678 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700679 reinterpret_cast<InstanceCounter*>(arg)->VisitInstance(o);
680 }
681
682 private:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700683 void VisitInstance(Object* o) SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700684 Class* instance_class = o->GetClass();
685 if (count_assignable_) {
686 if (instance_class == class_) {
687 ++count_;
688 }
689 } else {
690 if (instance_class != NULL && class_->IsAssignableFrom(instance_class)) {
691 ++count_;
692 }
693 }
694 }
695
696 Class* class_;
697 bool count_assignable_;
698 size_t count_;
699};
700
701int64_t Heap::CountInstances(Class* c, bool count_assignable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700703 InstanceCounter counter(c, count_assignable);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700704 GetLiveBitmap()->Walk(InstanceCounter::Callback, &counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700705 return counter.GetCount();
706}
707
Ian Rogers30fab402012-01-23 15:43:46 -0800708void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700709 // If we just waited for a GC to complete then we do not need to do another
710 // GC unless we clear soft references.
711 if (!WaitForConcurrentGcToComplete() || clear_soft_references) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700712 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700713 CollectGarbageInternal(have_zygote_space_ ? GC_PARTIAL : GC_FULL, clear_soft_references);
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700714 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700715}
716
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700717void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700718 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
719 MutexLock mu(zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700720
721 // Try to see if we have any Zygote spaces.
722 if (have_zygote_space_) {
723 return;
724 }
725
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700726 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
727
728 {
729 // Flush the alloc stack.
730 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
731 FlushAllocStack();
732 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700733
734 // Replace the first alloc space we find with a zygote space.
735 // TODO: C++0x auto
736 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
737 if ((*it)->IsAllocSpace()) {
738 AllocSpace* zygote_space = (*it)->AsAllocSpace();
739
740 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
741 // of the remaining available heap memory.
742 alloc_space_ = zygote_space->CreateZygoteSpace();
743
744 // Change the GC retention policy of the zygote space to only collect when full.
745 zygote_space->SetGcRetentionPolicy(GCRP_FULL_COLLECT);
746 AddSpace(alloc_space_);
747 have_zygote_space_ = true;
748 break;
749 }
750 }
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700751
752 // Reset this since we now count the ZygoteSpace in the total heap size.
753 num_bytes_allocated_ = 0;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700754}
755
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700756void Heap::FlushAllocStack() {
757 MarkStackAsLive(allocation_stack_.get());
758 allocation_stack_->Reset();
759}
760
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700761size_t Heap::GetUsedMemorySize() const {
762 size_t total = num_bytes_allocated_;
763 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
764 if ((*it)->IsZygoteSpace()) {
765 total += (*it)->AsAllocSpace()->Size();
766 }
767 }
768 return total;
769}
770
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700771void Heap::MarkStackAsLive(MarkStack* alloc_stack) {
772 // We can just assume everything is inside the alloc_space_'s bitmap since we should only have
773 // fresh allocations.
774 SpaceBitmap* live_bitmap = alloc_space_->GetLiveBitmap();
775
776 // Empty the allocation stack.
777 const size_t count = alloc_stack->Size();
778 for (size_t i = 0; i < count; ++i) {
779 const Object* obj = alloc_stack->Get(i);
780 DCHECK(obj != NULL);
781 live_bitmap->Set(obj);
782 }
783}
784
785void Heap::UnMarkStack(MarkStack* alloc_stack) {
786 SpaceBitmap* mark_bitmap = alloc_space_->GetMarkBitmap();
787
788 // Clear all of the things in the AllocStack.
789 size_t count = alloc_stack->Size();
790 for (size_t i = 0;i < count;++i) {
791 const Object* obj = alloc_stack->Get(i);
792 DCHECK(obj != NULL);
793 if (mark_bitmap->Test(obj)) {
794 mark_bitmap->Clear(obj);
795 }
796 }
797}
798
799void Heap::CollectGarbageInternal(GcType gc_type, bool clear_soft_references) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700800 GlobalSynchronization::mutator_lock_->AssertNotHeld();
801#ifndef NDEBUG
802 {
803 MutexLock mu(*GlobalSynchronization::thread_suspend_count_lock_);
804 CHECK_EQ(Thread::Current()->GetState(), kWaitingPerformingGc);
805 }
806#endif
Carl Shapiro58551df2011-07-24 03:09:51 -0700807
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700808 // Ensure there is only one GC at a time.
809 bool start_collect = false;
810 while (!start_collect) {
811 {
812 MutexLock mu(*gc_complete_lock_);
813 if (!is_gc_running_) {
814 is_gc_running_ = true;
815 start_collect = true;
816 }
817 }
818 if (!start_collect) {
819 WaitForConcurrentGcToComplete();
820 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
821 // Not doing at the moment to ensure soft references are cleared.
822 }
823 }
824 gc_complete_lock_->AssertNotHeld();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700825
826 // We need to do partial GCs every now and then to avoid the heap growing too much and
827 // fragmenting.
828 if (gc_type == GC_STICKY && ++sticky_gc_count_ > kPartialGCFrequency) {
829 gc_type = GC_PARTIAL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700830 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700831 if (gc_type != GC_STICKY) {
832 sticky_gc_count_ = 0;
833 }
834
Mathieu Chartier637e3482012-08-17 10:41:32 -0700835 if (concurrent_gc_) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700836 CollectGarbageConcurrentMarkSweepPlan(gc_type, clear_soft_references);
837 } else {
838 CollectGarbageMarkSweepPlan(gc_type, clear_soft_references);
839 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700840
Ian Rogers15bf2d32012-08-28 17:33:04 -0700841 {
842 MutexLock mu(*gc_complete_lock_);
843 is_gc_running_ = false;
844 // Wake anyone who may have been waiting for the GC to complete.
845 gc_complete_cond_->Broadcast();
846 }
847 // Inform DDMS that a GC completed.
848 Dbg::GcDidFinish();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700849}
Mathieu Chartiera6399032012-06-11 18:49:50 -0700850
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700851void Heap::CollectGarbageMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
852 TimingLogger timings("CollectGarbageInternal", true);
Mathieu Chartier662618f2012-06-06 12:01:47 -0700853
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700854 // Suspend all threads are get exclusive access to the heap.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700855 uint64_t start_time = NanoTime();
Elliott Hughes8d768a92011-09-14 16:35:25 -0700856 ThreadList* thread_list = Runtime::Current()->GetThreadList();
857 thread_list->SuspendAll();
Mathieu Chartier662618f2012-06-06 12:01:47 -0700858 timings.AddSplit("SuspendAll");
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700859 GlobalSynchronization::mutator_lock_->AssertExclusiveHeld();
Elliott Hughes83df2ac2011-10-11 16:37:54 -0700860
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700861 size_t bytes_freed = 0;
Elliott Hughesadb460d2011-10-05 17:02:34 -0700862 Object* cleared_references = NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700863 {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700864 MarkSweep mark_sweep(mark_stack_.get());
Carl Shapiro58551df2011-07-24 03:09:51 -0700865
866 mark_sweep.Init();
Elliott Hughes307f75d2011-10-12 18:04:40 -0700867 timings.AddSplit("Init");
Carl Shapiro58551df2011-07-24 03:09:51 -0700868
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700869 // Make sure that the tables have the correct pointer for the mark sweep.
870 mod_union_table_->Init(&mark_sweep);
871 zygote_mod_union_table_->Init(&mark_sweep);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700872
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700873 // Swap allocation stack and live stack, enabling us to have new allocations during this GC.
874 MarkStack* temp = allocation_stack_.release();
875 allocation_stack_.reset(live_stack_.release());
876 live_stack_.reset(temp);
877
878 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
879 // TODO: Investigate using a mark stack instead of a vector.
880 std::vector<byte*> dirty_cards;
881 if (gc_type == GC_STICKY) {
882 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
883 card_table_->GetDirtyCards(*it, dirty_cards);
884 }
885 }
886
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700887 // Clear image space cards and keep track of cards we cleared in the mod-union table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700888 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
889 Space* space = *it;
890 if (space->IsImageSpace()) {
891 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700892 timings.AddSplit("ClearModUnionCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700893 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
894 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700895 timings.AddSplit("ClearZygoteCards");
896 } else {
897 card_table_->ClearSpaceCards(space);
898 timings.AddSplit("ClearCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700899 }
900 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700901
902#if VERIFY_MOD_UNION
903 mod_union_table_->Verify();
904 zygote_mod_union_table_->Verify();
905#endif
906
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700907 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700908 if (gc_type == GC_PARTIAL) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700909 // Copy the mark bits over from the live bits, do this as early as possible or else we can
910 // accidentally un-mark roots.
911 // Needed for scanning dirty objects.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700912 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
913 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
914 mark_sweep.CopyMarkBits(*it);
915 }
916 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700917 timings.AddSplit("CopyMarkBits");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700918
919 // We can assume that everything < alloc_space_ start is marked at this point.
920 mark_sweep.SetCondemned(reinterpret_cast<Object*>(alloc_space_->Begin()));
921 } else if (gc_type == GC_STICKY) {
922 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
923 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
924 mark_sweep.CopyMarkBits(*it);
925 }
926 }
927 timings.AddSplit("CopyMarkBits");
928
929 if (VERIFY_OBJECT_ENABLED) {
930 UnMarkStack(live_stack_.get());
931 }
932
933 mark_sweep.SetCondemned(reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700934 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700935
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700936 MarkStackAsLive(live_stack_.get());
937
Carl Shapiro58551df2011-07-24 03:09:51 -0700938 mark_sweep.MarkRoots();
Elliott Hughes307f75d2011-10-12 18:04:40 -0700939 timings.AddSplit("MarkRoots");
Carl Shapiro58551df2011-07-24 03:09:51 -0700940
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700941 // Roots are marked on the bitmap and the mark_stack is empty.
Ian Rogers5d76c432011-10-31 21:42:49 -0700942 DCHECK(mark_sweep.IsMarkStackEmpty());
Carl Shapiro58551df2011-07-24 03:09:51 -0700943
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700944 // Update zygote mod union table.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700945 zygote_mod_union_table_->Update();
946 timings.AddSplit("UpdateZygoteModUnionTable");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700947
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700948 zygote_mod_union_table_->MarkReferences();
949 timings.AddSplit("ZygoteMarkReferences");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700950
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700951 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700952 mod_union_table_->Update();
Mathieu Chartiere6e06512012-06-26 15:00:26 -0700953 timings.AddSplit("UpdateModUnionTable");
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700954
955 // Scans all objects in the mod-union table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700956 mod_union_table_->MarkReferences();
Mathieu Chartiere6e06512012-06-26 15:00:26 -0700957 timings.AddSplit("MarkImageToAllocSpaceReferences");
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700958
959 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700960 if (gc_type != GC_STICKY) {
961 live_stack_->Reset();
962 mark_sweep.RecursiveMark(gc_type == GC_PARTIAL, timings);
963 } else {
964 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
965 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700966
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700967 // Need to process references the swap since it uses IsMarked.
Ian Rogers30fab402012-01-23 15:43:46 -0800968 mark_sweep.ProcessReferences(clear_soft_references);
Elliott Hughes307f75d2011-10-12 18:04:40 -0700969 timings.AddSplit("ProcessReferences");
Carl Shapiro58551df2011-07-24 03:09:51 -0700970
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700971 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
972 mark_sweep.SweepSystemWeaks(false);
973 timings.AddSplit("SweepSystemWeaks");
974
975 // Need to swap for VERIFY_OBJECT_ENABLED since we put things in the live bitmap after they
976 // have been allocated.
977 const bool swap = true;
978
979 if (swap) {
980 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
981 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
982 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark bit
983 // instead, resulting in no new allocated objects being incorrectly freed by sweep.
984 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
985 Space* space = *it;
986 // We only allocate into AllocSpace, so we only need to swap AllocSpaces.
987 if (space->GetGcRetentionPolicy() == GCRP_ALWAYS_COLLECT) {
988 live_bitmap_->ReplaceBitmap(space->GetLiveBitmap(), space->GetMarkBitmap());
989 mark_bitmap_->ReplaceBitmap(space->GetMarkBitmap(), space->GetLiveBitmap());
990 space->AsAllocSpace()->SwapBitmaps();
991 }
Mathieu Chartier654d3a22012-07-11 17:54:18 -0700992 }
993 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700994
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700995#ifndef NDEBUG
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700996 // Verify that we only reach marked objects from the image space
997 mark_sweep.VerifyImageRoots();
998 timings.AddSplit("VerifyImageRoots");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700999#endif
Carl Shapiro58551df2011-07-24 03:09:51 -07001000
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001001 if (gc_type != GC_STICKY) {
1002 mark_sweep.Sweep(gc_type == GC_PARTIAL, swap);
1003 } else {
1004 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
1005 }
Elliott Hughes307f75d2011-10-12 18:04:40 -07001006 timings.AddSplit("Sweep");
Elliott Hughesadb460d2011-10-05 17:02:34 -07001007
1008 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001009 bytes_freed = mark_sweep.GetFreedBytes();
Carl Shapiro58551df2011-07-24 03:09:51 -07001010 }
1011
1012 GrowForUtilization();
Elliott Hughes307f75d2011-10-12 18:04:40 -07001013 timings.AddSplit("GrowForUtilization");
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001014
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001015 thread_list->ResumeAll();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001016 timings.AddSplit("ResumeAll");
Elliott Hughesadb460d2011-10-05 17:02:34 -07001017
1018 EnqueueClearedReferences(&cleared_references);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001019 RequestHeapTrim();
Mathieu Chartier662618f2012-06-06 12:01:47 -07001020 timings.AddSplit("Finish");
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001021
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001022 // If the GC was slow, then print timings in the log.
1023 uint64_t duration = (NanoTime() - start_time) / 1000 * 1000;
1024 if (duration > MsToNs(50)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001025 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001026 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001027 const size_t total_memory = GetTotalMemory();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001028 LOG(INFO) << (gc_type == GC_PARTIAL ? "Partial " : (gc_type == GC_STICKY ? "Sticky " : ""))
Mathieu Chartier637e3482012-08-17 10:41:32 -07001029 << "GC freed " << PrettySize(bytes_freed) << ", " << percent_free << "% free, "
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001030 << PrettySize(current_heap_size) << "/" << PrettySize(total_memory) << ", "
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001031 << "paused " << PrettyDuration(duration);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001032 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001033
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001034 if (VLOG_IS_ON(heap)) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001035 timings.Dump();
1036 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001037}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001038
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001039void Heap::CollectGarbageConcurrentMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
1040 TimingLogger timings("ConcurrentCollectGarbageInternal", true);
1041 uint64_t root_begin = NanoTime(), root_end = 0, dirty_begin = 0, dirty_end = 0;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001042
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001043 // Suspend all threads are get exclusive access to the heap.
1044 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1045 thread_list->SuspendAll();
1046 timings.AddSplit("SuspendAll");
1047 GlobalSynchronization::mutator_lock_->AssertExclusiveHeld();
1048
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001049 size_t bytes_freed = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001050 Object* cleared_references = NULL;
1051 {
1052 MarkSweep mark_sweep(mark_stack_.get());
1053 timings.AddSplit("ctor");
1054
1055 mark_sweep.Init();
1056 timings.AddSplit("Init");
1057
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001058 // Swap the stacks, this is safe sunce all the mutators are suspended at this point.
1059 MarkStack* temp = allocation_stack_.release();
1060 allocation_stack_.reset(live_stack_.release());
1061 live_stack_.reset(temp);
1062
1063 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
1064 // TODO: Investigate using a mark stack instead of a vector.
1065 std::vector<byte*> dirty_cards;
1066 if (gc_type == GC_STICKY) {
1067 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1068 card_table_->GetDirtyCards(*it, dirty_cards);
1069 }
1070 }
1071
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001072 // Make sure that the tables have the correct pointer for the mark sweep.
1073 mod_union_table_->Init(&mark_sweep);
1074 zygote_mod_union_table_->Init(&mark_sweep);
1075
1076 // Clear image space cards and keep track of cards we cleared in the mod-union table.
1077 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1078 Space* space = *it;
1079 if (space->IsImageSpace()) {
1080 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001081 timings.AddSplit("ModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001082 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1083 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001084 timings.AddSplit("ZygoteModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001085 } else {
1086 card_table_->ClearSpaceCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001087 timings.AddSplit("ClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001088 }
1089 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001090
1091#if VERIFY_MOD_UNION
1092 mod_union_table_->Verify();
1093 zygote_mod_union_table_->Verify();
1094#endif
1095
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001096
1097 {
1098 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001099
1100 if (gc_type == GC_PARTIAL) {
1101 // Copy the mark bits over from the live bits, do this as early as possible or else we can
1102 // accidentally un-mark roots.
1103 // Needed for scanning dirty objects.
1104 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
1105 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1106 mark_sweep.CopyMarkBits(*it);
1107 }
1108 }
1109 timings.AddSplit("CopyMarkBits");
1110 mark_sweep.SetCondemned(reinterpret_cast<Object*>(alloc_space_->Begin()));
1111 } else if (gc_type == GC_STICKY) {
1112 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
1113 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1114 mark_sweep.CopyMarkBits(*it);
1115 }
1116 }
1117 timings.AddSplit("CopyMarkBits");
1118 // We need to unmark the new objects since we marked them as live earlier to avoid verify
1119 // objects failing.
1120 if (VERIFY_OBJECT_ENABLED) {
1121 UnMarkStack(live_stack_.get());
1122 }
1123 mark_sweep.SetCondemned(reinterpret_cast<Object*>(alloc_space_->Begin()));
1124 }
1125
1126 // TODO: Investigate whether or not this is really necessary for sticky mark bits.
1127 MarkStackAsLive(live_stack_.get());
1128
1129 if (gc_type != GC_STICKY) {
1130 live_stack_->Reset();
1131 mark_sweep.MarkRoots();
1132 timings.AddSplit("MarkRoots");
1133 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001134 }
1135
1136 // Roots are marked on the bitmap and the mark_stack is empty.
1137 DCHECK(mark_sweep.IsMarkStackEmpty());
1138
1139 // Allow mutators to go again, acquire share on mutator_lock_ to continue.
1140 thread_list->ResumeAll();
1141 {
1142 ReaderMutexLock reader_lock(*GlobalSynchronization::mutator_lock_);
1143 root_end = NanoTime();
1144 timings.AddSplit("RootEnd");
1145
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001146 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
1147 if (gc_type != GC_STICKY) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001148 // Update zygote mod union table.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001149 if (gc_type == GC_PARTIAL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001150 zygote_mod_union_table_->Update();
1151 timings.AddSplit("UpdateZygoteModUnionTable");
1152
1153 zygote_mod_union_table_->MarkReferences();
1154 timings.AddSplit("ZygoteMarkReferences");
1155 }
1156
1157 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
1158 mod_union_table_->Update();
1159 timings.AddSplit("UpdateModUnionTable");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001160
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001161 // Scans all objects in the mod-union table.
1162 mod_union_table_->MarkReferences();
1163 timings.AddSplit("MarkImageToAllocSpaceReferences");
1164
1165 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001166 mark_sweep.RecursiveMark(gc_type == GC_PARTIAL, timings);
1167 } else {
1168 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
1169 mark_sweep.DisableFinger();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001170 }
1171 }
1172 // Release share on mutator_lock_ and then get exclusive access.
1173 dirty_begin = NanoTime();
1174 thread_list->SuspendAll();
1175 timings.AddSplit("ReSuspend");
1176 GlobalSynchronization::mutator_lock_->AssertExclusiveHeld();
1177
1178 {
1179 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001180
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001181 // Re-mark root set.
1182 mark_sweep.ReMarkRoots();
1183 timings.AddSplit("ReMarkRoots");
1184
1185 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001186 mark_sweep.RecursiveMarkDirtyObjects(false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001187 timings.AddSplit("RecursiveMarkDirtyObjects");
1188 }
1189 {
1190 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
1191 mark_sweep.ProcessReferences(clear_soft_references);
1192 timings.AddSplit("ProcessReferences");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001193
1194 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
1195 mark_sweep.SweepSystemWeaks(false);
1196 timings.AddSplit("SweepSystemWeaks");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001197 }
1198 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
1199 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
1200 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark
1201 // bit instead, resulting in no new allocated objects being incorrectly freed by sweep.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001202 bool swap = true;
1203 if (swap) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001204 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
1205 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1206 Space* space = *it;
1207 // We never allocate into zygote spaces.
1208 if (space->GetGcRetentionPolicy() == GCRP_ALWAYS_COLLECT) {
1209 live_bitmap_->ReplaceBitmap(space->GetLiveBitmap(), space->GetMarkBitmap());
1210 mark_bitmap_->ReplaceBitmap(space->GetMarkBitmap(), space->GetLiveBitmap());
1211 space->AsAllocSpace()->SwapBitmaps();
1212 }
1213 }
1214 }
1215
1216 if (kIsDebugBuild) {
1217 // Verify that we only reach marked objects from the image space.
1218 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
1219 mark_sweep.VerifyImageRoots();
1220 timings.AddSplit("VerifyImageRoots");
1221 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001222
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001223 thread_list->ResumeAll();
1224 dirty_end = NanoTime();
1225 GlobalSynchronization::mutator_lock_->AssertNotHeld();
1226
1227 {
1228 // TODO: this lock shouldn't be necessary (it's why we did the bitmap flip above).
1229 WriterMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001230 if (gc_type != GC_STICKY) {
1231 mark_sweep.Sweep(gc_type == GC_PARTIAL, swap);
1232 } else {
1233 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
1234 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001235 timings.AddSplit("Sweep");
1236 }
1237
1238 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001239 bytes_freed = mark_sweep.GetFreedBytes();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001240 }
1241
1242 GrowForUtilization();
1243 timings.AddSplit("GrowForUtilization");
1244
1245 EnqueueClearedReferences(&cleared_references);
1246 RequestHeapTrim();
1247 timings.AddSplit("Finish");
1248
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001249 // If the GC was slow, then print timings in the log.
1250 uint64_t pause_roots = (root_end - root_begin) / 1000 * 1000;
1251 uint64_t pause_dirty = (dirty_end - dirty_begin) / 1000 * 1000;
Mathieu Chartier637e3482012-08-17 10:41:32 -07001252 uint64_t duration = (NanoTime() - root_begin) / 1000 * 1000;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001253 if (pause_roots > MsToNs(5) || pause_dirty > MsToNs(5)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001254 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001255 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001256 const size_t total_memory = GetTotalMemory();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001257 LOG(INFO) << (gc_type == GC_PARTIAL ? "Partial " : (gc_type == GC_STICKY ? "Sticky " : ""))
Mathieu Chartier637e3482012-08-17 10:41:32 -07001258 << "Concurrent GC freed " << PrettySize(bytes_freed) << ", " << percent_free
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001259 << "% free, " << PrettySize(current_heap_size) << "/"
Mathieu Chartier637e3482012-08-17 10:41:32 -07001260 << PrettySize(total_memory) << ", " << "paused " << PrettyDuration(pause_roots)
1261 << "+" << PrettyDuration(pause_dirty) << " total " << PrettyDuration(duration);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001262 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001263
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001264 if (VLOG_IS_ON(heap)) {
1265 timings.Dump();
1266 }
Carl Shapiro69759ea2011-07-21 18:13:35 -07001267}
1268
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -07001269bool Heap::WaitForConcurrentGcToComplete() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001270 if (concurrent_gc_) {
1271 bool do_wait = false;
1272 uint64_t wait_start;
1273 {
1274 // Check if GC is running holding gc_complete_lock_.
1275 MutexLock mu(*gc_complete_lock_);
1276 if (is_gc_running_) {
1277 wait_start = NanoTime();
1278 do_wait = true;
1279 }
Mathieu Chartiera6399032012-06-11 18:49:50 -07001280 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001281 if (do_wait) {
1282 // We must wait, change thread state then sleep on gc_complete_cond_;
1283 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1284 {
1285 MutexLock mu(*gc_complete_lock_);
1286 while (is_gc_running_) {
1287 gc_complete_cond_->Wait(*gc_complete_lock_);
1288 }
1289 }
1290 uint64_t wait_time = NanoTime() - wait_start;
1291 if (wait_time > MsToNs(5)) {
1292 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1293 }
1294 return true;
1295 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001296 }
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -07001297 return false;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001298}
1299
Elliott Hughesc967f782012-04-16 10:23:15 -07001300void Heap::DumpForSigQuit(std::ostream& os) {
1301 os << "Heap: " << GetPercentFree() << "% free, "
1302 << PrettySize(num_bytes_allocated_) << "/" << PrettySize(GetTotalMemory())
Elliott Hughesae80b492012-04-24 10:43:17 -07001303 << "; " << num_objects_allocated_ << " objects\n";
Elliott Hughesc967f782012-04-16 10:23:15 -07001304}
1305
1306size_t Heap::GetPercentFree() {
1307 size_t total = GetTotalMemory();
1308 return 100 - static_cast<size_t>(100.0f * static_cast<float>(num_bytes_allocated_) / total);
1309}
1310
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001311void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001312 AllocSpace* alloc_space = alloc_space_;
1313 // TODO: Behavior for multiple alloc spaces?
1314 size_t alloc_space_capacity = alloc_space->Capacity();
1315 if (max_allowed_footprint > alloc_space_capacity) {
1316 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint)
1317 << " to " << PrettySize(alloc_space_capacity);
1318 max_allowed_footprint = alloc_space_capacity;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001319 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001320 alloc_space->SetFootprintLimit(max_allowed_footprint);
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001321}
1322
Ian Rogers3bb17a62012-01-27 23:56:44 -08001323// kHeapIdealFree is the ideal maximum free size, when we grow the heap for utilization.
Shih-wei Liao7f1caab2011-10-06 12:11:04 -07001324static const size_t kHeapIdealFree = 2 * MB;
Ian Rogers3bb17a62012-01-27 23:56:44 -08001325// kHeapMinFree guarantees that you always have at least 512 KB free, when you grow for utilization,
1326// regardless of target utilization ratio.
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001327static const size_t kHeapMinFree = kHeapIdealFree / 4;
1328
Carl Shapiro69759ea2011-07-21 18:13:35 -07001329void Heap::GrowForUtilization() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001330 size_t target_size;
1331 bool use_footprint_limit = false;
1332 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001333 // We know what our utilization is at this moment.
1334 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
1335 target_size = num_bytes_allocated_ / Heap::GetTargetHeapUtilization();
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001336
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001337 if (target_size > num_bytes_allocated_ + kHeapIdealFree) {
1338 target_size = num_bytes_allocated_ + kHeapIdealFree;
1339 } else if (target_size < num_bytes_allocated_ + kHeapMinFree) {
1340 target_size = num_bytes_allocated_ + kHeapMinFree;
1341 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001342
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001343 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001344 if (GetTotalMemory() - GetUsedMemorySize() < concurrent_min_free_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001345 // Not enough free memory to perform concurrent GC.
1346 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1347 } else {
1348 // Compute below to avoid holding both the statistics and the alloc space lock
1349 use_footprint_limit = true;
1350 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001351 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001352
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001353 if (use_footprint_limit) {
1354 size_t foot_print_limit = alloc_space_->GetFootprintLimit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001355 concurrent_start_bytes_ = foot_print_limit - concurrent_start_size_;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001356 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001357 SetIdealFootprint(target_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001358}
1359
jeffhaoc1160702011-10-27 15:48:45 -07001360void Heap::ClearGrowthLimit() {
jeffhaoc1160702011-10-27 15:48:45 -07001361 WaitForConcurrentGcToComplete();
jeffhaoc1160702011-10-27 15:48:45 -07001362 alloc_space_->ClearGrowthLimit();
1363}
1364
Elliott Hughesadb460d2011-10-05 17:02:34 -07001365void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
1366 MemberOffset reference_queue_offset,
1367 MemberOffset reference_queueNext_offset,
1368 MemberOffset reference_pendingNext_offset,
1369 MemberOffset finalizer_reference_zombie_offset) {
1370 reference_referent_offset_ = reference_referent_offset;
1371 reference_queue_offset_ = reference_queue_offset;
1372 reference_queueNext_offset_ = reference_queueNext_offset;
1373 reference_pendingNext_offset_ = reference_pendingNext_offset;
1374 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1375 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1376 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1377 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1378 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1379 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1380}
1381
1382Object* Heap::GetReferenceReferent(Object* reference) {
1383 DCHECK(reference != NULL);
1384 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1385 return reference->GetFieldObject<Object*>(reference_referent_offset_, true);
1386}
1387
1388void Heap::ClearReferenceReferent(Object* reference) {
1389 DCHECK(reference != NULL);
1390 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1391 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1392}
1393
1394// Returns true if the reference object has not yet been enqueued.
1395bool Heap::IsEnqueuable(const Object* ref) {
1396 DCHECK(ref != NULL);
1397 const Object* queue = ref->GetFieldObject<Object*>(reference_queue_offset_, false);
1398 const Object* queue_next = ref->GetFieldObject<Object*>(reference_queueNext_offset_, false);
1399 return (queue != NULL) && (queue_next == NULL);
1400}
1401
1402void Heap::EnqueueReference(Object* ref, Object** cleared_reference_list) {
1403 DCHECK(ref != NULL);
1404 CHECK(ref->GetFieldObject<Object*>(reference_queue_offset_, false) != NULL);
1405 CHECK(ref->GetFieldObject<Object*>(reference_queueNext_offset_, false) == NULL);
1406 EnqueuePendingReference(ref, cleared_reference_list);
1407}
1408
1409void Heap::EnqueuePendingReference(Object* ref, Object** list) {
1410 DCHECK(ref != NULL);
1411 DCHECK(list != NULL);
1412
1413 if (*list == NULL) {
1414 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1415 *list = ref;
1416 } else {
1417 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1418 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1419 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1420 }
1421}
1422
1423Object* Heap::DequeuePendingReference(Object** list) {
1424 DCHECK(list != NULL);
1425 DCHECK(*list != NULL);
1426 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1427 Object* ref;
1428 if (*list == head) {
1429 ref = *list;
1430 *list = NULL;
1431 } else {
1432 Object* next = head->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1433 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1434 ref = head;
1435 }
1436 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1437 return ref;
1438}
1439
Ian Rogers5d4bdc22011-11-02 22:15:43 -07001440void Heap::AddFinalizerReference(Thread* self, Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 ScopedObjectAccess soa(self);
Elliott Hughes77405792012-03-15 15:22:12 -07001442 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001443 args[0].SetL(object);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001444 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self,
1445 NULL, args, NULL);
1446}
1447
1448size_t Heap::GetBytesAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001449 return num_bytes_allocated_;
1450}
1451
1452size_t Heap::GetObjectsAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001453 return num_objects_allocated_;
1454}
1455
1456size_t Heap::GetConcurrentStartSize() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001457 return concurrent_start_size_;
1458}
1459
1460size_t Heap::GetConcurrentMinFree() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001461 return concurrent_min_free_;
Elliott Hughesadb460d2011-10-05 17:02:34 -07001462}
1463
1464void Heap::EnqueueClearedReferences(Object** cleared) {
1465 DCHECK(cleared != NULL);
1466 if (*cleared != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001467 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes77405792012-03-15 15:22:12 -07001468 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001469 args[0].SetL(*cleared);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001470 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(),
1471 NULL, args, NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001472 *cleared = NULL;
1473 }
1474}
1475
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001476void Heap::RequestConcurrentGC() {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001477 // Make sure that we can do a concurrent GC.
1478 if (requesting_gc_ ||
1479 !Runtime::Current()->IsFinishedStarting() ||
1480 Runtime::Current()->IsShuttingDown() ||
1481 !Runtime::Current()->IsConcurrentGcEnabled()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001482 return;
1483 }
1484
1485 requesting_gc_ = true;
1486 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001487 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1488 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001489 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1490 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001491 CHECK(!env->ExceptionCheck());
1492 requesting_gc_ = false;
1493}
1494
1495void Heap::ConcurrentGC() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001496 if (Runtime::Current()->IsShuttingDown() || !concurrent_gc_) {
Mathieu Chartier2542d662012-06-21 17:14:11 -07001497 return;
1498 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001499
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001500 // TODO: We shouldn't need a WaitForConcurrentGcToComplete here since only
1501 // concurrent GC resumes threads before the GC is completed and this function
1502 // is only called within the GC daemon thread.
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001503 if (!WaitForConcurrentGcToComplete()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001504 // Start a concurrent GC as one wasn't in progress
1505 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001506 if (alloc_space_->Size() > kMinAllocSpaceSizeForStickyGC) {
1507 CollectGarbageInternal(GC_STICKY, false);
1508 } else {
1509 CollectGarbageInternal(GC_PARTIAL, false);
1510 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001511 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001512}
1513
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001514void Heap::Trim(AllocSpace* alloc_space) {
Mathieu Chartiera6399032012-06-11 18:49:50 -07001515 WaitForConcurrentGcToComplete();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001516 alloc_space->Trim();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001517}
1518
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001519void Heap::RequestHeapTrim() {
1520 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1521 // because that only marks object heads, so a large array looks like lots of empty space. We
1522 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1523 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1524 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1525 // not how much use we're making of those pages.
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001526 uint64_t ms_time = NsToMs(NanoTime());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001527 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001528 float utilization = static_cast<float>(num_bytes_allocated_) / alloc_space_->Size();
1529 if ((utilization > 0.75f) || ((ms_time - last_trim_time_) < 2 * 1000)) {
1530 // Don't bother trimming the heap if it's more than 75% utilized, or if a
1531 // heap trim occurred in the last two seconds.
1532 return;
1533 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001534 }
Mathieu Chartiera6399032012-06-11 18:49:50 -07001535 if (!Runtime::Current()->IsFinishedStarting() || Runtime::Current()->IsShuttingDown()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001536 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
Mathieu Chartiera6399032012-06-11 18:49:50 -07001537 // Also: we do not wish to start a heap trim if the runtime is shutting down.
Ian Rogerse1d490c2012-02-03 09:09:07 -08001538 return;
1539 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001540 last_trim_time_ = ms_time;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001541 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001542 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1543 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001544 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1545 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001546 CHECK(!env->ExceptionCheck());
1547}
1548
Carl Shapiro69759ea2011-07-21 18:13:35 -07001549} // namespace art