blob: 0f9b65b872a0e924370200bfdd874a8ec4dd469e [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
Elliott Hughesae80b492012-04-24 10:43:17 -070046static bool GenerateImage(const std::string& image_file_name) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080047 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
Brian Carlstrom5643b782012-02-05 12:32:53 -080048 std::vector<std::string> boot_class_path;
49 Split(boot_class_path_string, ':', boot_class_path);
Brian Carlstromb2793372012-03-17 18:27:16 -070050 if (boot_class_path.empty()) {
51 LOG(FATAL) << "Failed to generate image because no boot class path specified";
52 }
Brian Carlstrom5643b782012-02-05 12:32:53 -080053
54 std::vector<char*> arg_vector;
55
56 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -070057 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom5643b782012-02-05 12:32:53 -080058 const char* dex2oat = dex2oat_string.c_str();
59 arg_vector.push_back(strdup(dex2oat));
60
61 std::string image_option_string("--image=");
62 image_option_string += image_file_name;
63 const char* image_option = image_option_string.c_str();
64 arg_vector.push_back(strdup(image_option));
65
66 arg_vector.push_back(strdup("--runtime-arg"));
67 arg_vector.push_back(strdup("-Xms64m"));
68
69 arg_vector.push_back(strdup("--runtime-arg"));
70 arg_vector.push_back(strdup("-Xmx64m"));
71
72 for (size_t i = 0; i < boot_class_path.size(); i++) {
73 std::string dex_file_option_string("--dex-file=");
74 dex_file_option_string += boot_class_path[i];
75 const char* dex_file_option = dex_file_option_string.c_str();
76 arg_vector.push_back(strdup(dex_file_option));
77 }
78
79 std::string oat_file_option_string("--oat-file=");
80 oat_file_option_string += image_file_name;
81 oat_file_option_string.erase(oat_file_option_string.size() - 3);
82 oat_file_option_string += "oat";
83 const char* oat_file_option = oat_file_option_string.c_str();
84 arg_vector.push_back(strdup(oat_file_option));
85
86 arg_vector.push_back(strdup("--base=0x60000000"));
87
Elliott Hughes48436bb2012-02-07 15:23:28 -080088 std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom5643b782012-02-05 12:32:53 -080089 LOG(INFO) << command_line;
90
Elliott Hughes48436bb2012-02-07 15:23:28 -080091 arg_vector.push_back(NULL);
Brian Carlstrom5643b782012-02-05 12:32:53 -080092 char** argv = &arg_vector[0];
93
94 // fork and exec dex2oat
95 pid_t pid = fork();
96 if (pid == 0) {
97 // no allocation allowed between fork and exec
98
99 // change process groups, so we don't get reaped by ProcessManager
100 setpgid(0, 0);
101
102 execv(dex2oat, argv);
103
104 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
105 return false;
106 } else {
107 STLDeleteElements(&arg_vector);
108
109 // wait for dex2oat to finish
110 int status;
111 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
112 if (got_pid != pid) {
113 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
114 return false;
115 }
116 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
117 LOG(ERROR) << dex2oat << " failed: " << command_line;
118 return false;
119 }
120 }
121 return true;
122}
123
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800124Heap::Heap(size_t initial_size, size_t growth_limit, size_t capacity,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700125 const std::string& original_image_file_name, bool concurrent_gc)
126 : alloc_space_(NULL),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800127 card_table_(NULL),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700128 concurrent_gc_(concurrent_gc),
129 have_zygote_space_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800130 card_marking_disabled_(false),
131 is_gc_running_(false),
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700132 last_gc_type_(kGcTypeNone),
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700133 concurrent_start_bytes_(std::numeric_limits<size_t>::max()),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700134 concurrent_start_size_(128 * KB),
135 concurrent_min_free_(256 * KB),
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700136 bytes_since_last_gc_(0),
137 concurrent_gc_start_rate_(3 * MB / 2),
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700138 sticky_gc_count_(0),
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700139 large_object_threshold_(12 * KB),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800140 num_bytes_allocated_(0),
141 num_objects_allocated_(0),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700142 verify_missing_card_marks_(false),
143 verify_system_weaks_(false),
144 verify_pre_gc_heap_(false),
145 verify_post_gc_heap_(false),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700146 verify_mod_union_table_(false),
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700147 partial_gc_frequency_(10),
148 min_alloc_space_size_for_sticky_gc_(4 * MB),
149 min_remaining_space_for_sticky_gc_(1 * MB),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700150 last_trim_time_(0),
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700151 try_running_gc_(false),
152 requesting_gc_(false),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800153 reference_referent_offset_(0),
154 reference_queue_offset_(0),
155 reference_queueNext_offset_(0),
156 reference_pendingNext_offset_(0),
157 finalizer_reference_zombie_offset_(0),
158 target_utilization_(0.5),
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700159 verify_objects_(false) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800160 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800161 LOG(INFO) << "Heap() entering";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700162 }
163
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700164 live_bitmap_.reset(new HeapBitmap(this));
165 mark_bitmap_.reset(new HeapBitmap(this));
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700166
Ian Rogers30fab402012-01-23 15:43:46 -0800167 // Requested begin for the alloc space, to follow the mapped image and oat files
168 byte* requested_begin = NULL;
Brian Carlstrom5643b782012-02-05 12:32:53 -0800169 std::string image_file_name(original_image_file_name);
170 if (!image_file_name.empty()) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700171 Space* image_space = NULL;
172
Brian Carlstrom5643b782012-02-05 12:32:53 -0800173 if (OS::FileExists(image_file_name.c_str())) {
174 // If the /system file exists, it should be up-to-date, don't try to generate
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700175 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800176 } else {
177 // If the /system file didn't exist, we need to use one from the art-cache.
178 // If the cache file exists, try to open, but if it fails, regenerate.
179 // If it does not exist, generate.
180 image_file_name = GetArtCacheFilenameOrDie(image_file_name);
181 if (OS::FileExists(image_file_name.c_str())) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700182 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800183 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700184 if (image_space == NULL) {
Brian Carlstrom5643b782012-02-05 12:32:53 -0800185 if (!GenerateImage(image_file_name)) {
186 LOG(FATAL) << "Failed to generate image: " << image_file_name;
187 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700188 image_space = Space::CreateImageSpace(image_file_name);
Brian Carlstrom5643b782012-02-05 12:32:53 -0800189 }
190 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700191 if (image_space == NULL) {
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800192 LOG(FATAL) << "Failed to create space from " << image_file_name;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700193 }
Brian Carlstrom5643b782012-02-05 12:32:53 -0800194
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700195 AddSpace(image_space);
Ian Rogers30fab402012-01-23 15:43:46 -0800196 // Oat files referenced by image files immediately follow them in memory, ensure alloc space
197 // isn't going to get in the middle
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700198 byte* oat_end_addr = GetImageSpace()->GetImageHeader().GetOatEnd();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700199 CHECK_GT(oat_end_addr, GetImageSpace()->End());
Ian Rogers30fab402012-01-23 15:43:46 -0800200 if (oat_end_addr > requested_begin) {
201 requested_begin = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(oat_end_addr),
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700202 kPageSize));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700203 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700204 }
205
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700206 UniquePtr<AllocSpace> alloc_space(Space::CreateAllocSpace(
207 "alloc space", initial_size, growth_limit, capacity, requested_begin));
208 alloc_space_ = alloc_space.release();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700209 CHECK(alloc_space_ != NULL) << "Failed to create alloc space";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700210 AddSpace(alloc_space_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700211
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700212 // Spaces are sorted in order of Begin().
213 byte* heap_begin = spaces_.front()->Begin();
214 size_t heap_capacity = (spaces_.back()->Begin() - spaces_.front()->Begin()) + spaces_.back()->NonGrowthLimitCapacity();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700215
Ian Rogers30fab402012-01-23 15:43:46 -0800216 // Mark image objects in the live bitmap
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800217 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800218 Space* space = spaces_[i];
219 if (space->IsImageSpace()) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700220 space->AsImageSpace()->RecordImageAllocations(space->GetLiveBitmap());
Ian Rogers30fab402012-01-23 15:43:46 -0800221 }
222 }
223
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700224 // Allocate the large object space.
225 large_object_space_.reset(Space::CreateLargeObjectSpace("large object space"));
226 live_bitmap_->SetLargeObjects(large_object_space_->GetLiveObjects());
227 mark_bitmap_->SetLargeObjects(large_object_space_->GetMarkObjects());
228
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800229 // Allocate the card table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700230 card_table_.reset(CardTable::Create(heap_begin, heap_capacity));
231 CHECK(card_table_.get() != NULL) << "Failed to create card table";
Ian Rogers5d76c432011-10-31 21:42:49 -0700232
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700233 mod_union_table_.reset(new ModUnionTableToZygoteAllocspace<ModUnionTableReferenceCache>(this));
234 CHECK(mod_union_table_.get() != NULL) << "Failed to create mod-union table";
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700235
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700236 zygote_mod_union_table_.reset(new ModUnionTableCardCache(this));
237 CHECK(zygote_mod_union_table_.get() != NULL) << "Failed to create Zygote mod-union table";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700238
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700239 // TODO: Count objects in the image space here.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700240 num_bytes_allocated_ = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241 num_objects_allocated_ = 0;
242
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700243 // Max stack size in bytes.
244 static const size_t max_stack_size = capacity / SpaceBitmap::kAlignment * kWordSize;
245
246 // TODO: Rename MarkStack to a more generic name?
247 mark_stack_.reset(MarkStack::Create("dalvik-mark-stack", max_stack_size));
248 allocation_stack_.reset(MarkStack::Create("dalvik-allocation-stack", max_stack_size));
249 live_stack_.reset(MarkStack::Create("dalvik-live-stack", max_stack_size));
Mathieu Chartier5301cd22012-05-31 12:11:36 -0700250
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800251 // It's still too early to take a lock because there are no threads yet,
Elliott Hughes92b3b562011-09-08 16:32:26 -0700252 // but we can create the heap lock now. We don't create it earlier to
253 // make it clear that you can't use locks during heap initialization.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700254 gc_complete_lock_ = new Mutex("GC complete lock");
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700255 gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable"));
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700256
Mathieu Chartier0325e622012-09-05 14:22:51 -0700257 // Set up the cumulative timing loggers.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700258 for (size_t i = static_cast<size_t>(kGcTypeSticky); i < static_cast<size_t>(kGcTypeMax);
259 ++i) {
Mathieu Chartier0325e622012-09-05 14:22:51 -0700260 std::ostringstream name;
261 name << static_cast<GcType>(i);
262 cumulative_timings_.Put(static_cast<GcType>(i),
263 new CumulativeLogger(name.str().c_str(), true));
264 }
265
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800266 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800267 LOG(INFO) << "Heap() exiting";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700268 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700269}
270
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700271// Sort spaces based on begin address
272class SpaceSorter {
273 public:
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700274 bool operator ()(const Space* a, const Space* b) const {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700275 return a->Begin() < b->Begin();
276 }
277};
278
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800279void Heap::AddSpace(Space* space) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700280 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700281 DCHECK(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700282 DCHECK(space->GetLiveBitmap() != NULL);
283 live_bitmap_->AddSpaceBitmap(space->GetLiveBitmap());
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700284 DCHECK(space->GetMarkBitmap() != NULL);
285 mark_bitmap_->AddSpaceBitmap(space->GetMarkBitmap());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800286 spaces_.push_back(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700287 if (space->IsAllocSpace()) {
288 alloc_space_ = space->AsAllocSpace();
289 }
290
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700291 // Ensure that spaces remain sorted in increasing order of start address (required for CMS finger)
292 std::sort(spaces_.begin(), spaces_.end(), SpaceSorter());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700293
294 // Ensure that ImageSpaces < ZygoteSpaces < AllocSpaces so that we can do address based checks to
295 // avoid redundant marking.
296 bool seen_zygote = false, seen_alloc = false;
297 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
298 Space* space = *it;
299 if (space->IsImageSpace()) {
300 DCHECK(!seen_zygote);
301 DCHECK(!seen_alloc);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700302 } else if (space->IsZygoteSpace()) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700303 DCHECK(!seen_alloc);
304 seen_zygote = true;
305 } else if (space->IsAllocSpace()) {
306 seen_alloc = true;
307 }
308 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800309}
310
311Heap::~Heap() {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700312 // If we don't reset then the mark stack complains in it's destructor.
313 allocation_stack_->Reset();
314 live_stack_->Reset();
315
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800316 VLOG(heap) << "~Heap()";
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800317 // We can't take the heap lock here because there might be a daemon thread suspended with the
318 // heap lock held. We know though that no non-daemon threads are executing, and we know that
319 // all daemon threads are suspended, and we also know that the threads list have been deleted, so
320 // 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 -0700321 STLDeleteElements(&spaces_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700322 delete gc_complete_lock_;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700323 STLDeleteValues(&cumulative_timings_);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700324}
325
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700326Space* Heap::FindSpaceFromObject(const Object* obj) const {
327 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700328 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
329 if ((*it)->Contains(obj)) {
330 return *it;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700331 }
332 }
333 LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
334 return NULL;
335}
336
337ImageSpace* Heap::GetImageSpace() {
338 // TODO: C++0x auto
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700339 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
340 if ((*it)->IsImageSpace()) {
341 return (*it)->AsImageSpace();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700342 }
343 }
344 return NULL;
345}
346
347AllocSpace* Heap::GetAllocSpace() {
348 return alloc_space_;
349}
350
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700351static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
352 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
353
354 size_t chunk_size = static_cast<size_t>(reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start));
355 size_t chunk_free_bytes = 0;
356 if (used_bytes < chunk_size) {
357 chunk_free_bytes = chunk_size - used_bytes;
358 }
359
360 if (chunk_free_bytes > max_contiguous_allocation) {
361 max_contiguous_allocation = chunk_free_bytes;
362 }
363}
364
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700365bool Heap::CanAllocateBytes(size_t bytes) const {
366 return num_bytes_allocated_ + large_object_space_->GetNumBytesAllocated() + bytes <=
367 alloc_space_->Capacity();
368}
369
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700370Object* Heap::AllocObject(Class* c, size_t byte_count) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 DCHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(Class)) ||
372 (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
373 strlen(ClassHelper(c).GetDescriptor()) == 0);
374 DCHECK_GE(byte_count, sizeof(Object));
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700375
376 Object* obj = NULL;
377 size_t size = 0;
378
379 // We need to have a zygote space or else our newly allocated large object can end up in the
380 // Zygote resulting in it being prematurely freed.
381 // We can only do this for primive objects since large objects will not be within the card table
382 // range. This also means that we rely on SetClass not dirtying the object's card.
383 if (byte_count >= large_object_threshold_ && have_zygote_space_ && c->IsPrimitiveArray()) {
384 obj = Allocate(NULL, RoundUp(byte_count, kPageSize));
385 size = 0;
386
387 if (obj != NULL) {
388 // Make sure that our large object didn't get placed anywhere within the space interval or else
389 // it breaks the immune range.
390 DCHECK(reinterpret_cast<byte*>(obj) < spaces_.front()->Begin() ||
391 reinterpret_cast<byte*>(obj) >= spaces_.back()->End());
392 }
393 } else {
394 obj = Allocate(alloc_space_, byte_count);
395 size = alloc_space_->AllocationSize(obj);
396
397 if (obj != NULL) {
398 // Additional verification to ensure that we did not allocate into a zygote space.
399 DCHECK(!have_zygote_space_ || !FindSpaceFromObject(obj)->IsZygoteSpace());
400 }
401 }
402
Mathieu Chartier037813d2012-08-23 16:44:59 -0700403 if (LIKELY(obj != NULL)) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700404 android_atomic_add(byte_count, reinterpret_cast<volatile int32_t*>(
405 reinterpret_cast<size_t>(&bytes_since_last_gc_)));
406
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700407 obj->SetClass(c);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700408
409 // Record allocation after since we want to use the atomic add for the atomic fence to guard
410 // the SetClass since we do not want the class to appear NULL in another thread.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700411 RecordAllocation(size, obj);
Mathieu Chartier037813d2012-08-23 16:44:59 -0700412
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700413 if (Dbg::IsAllocTrackingEnabled()) {
414 Dbg::RecordAllocation(c, byte_count);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700415 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700416 if (bytes_since_last_gc_ >= concurrent_gc_start_rate_ ||
417 num_bytes_allocated_ >= concurrent_start_bytes_) {
418 // We already have a request pending, no reason to start more until we update
419 // concurrent_start_bytes_.
420 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
421 bytes_since_last_gc_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700422 // The SirtRef is necessary since the calls in RequestConcurrentGC are a safepoint.
423 SirtRef<Object> ref(obj);
424 RequestConcurrentGC();
425 }
426 VerifyObject(obj);
427
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 return obj;
429 }
Mathieu Chartier037813d2012-08-23 16:44:59 -0700430 int64_t total_bytes_free = GetFreeMemory();
431 size_t max_contiguous_allocation = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -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)->IsAllocSpace()) {
435 (*it)->AsAllocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700436 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700437 }
Elliott Hughes418dfe72011-10-06 18:56:27 -0700438
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700439 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 -0700440 byte_count, PrettyDescriptor(c).c_str(), total_bytes_free, max_contiguous_allocation));
Elliott Hughes8a8b9cb2012-04-13 18:29:22 -0700441 Thread::Current()->ThrowOutOfMemoryError(msg.c_str());
Elliott Hughes418dfe72011-10-06 18:56:27 -0700442 return NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700443}
444
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700445bool Heap::IsHeapAddress(const Object* obj) {
Elliott Hughes92b3b562011-09-08 16:32:26 -0700446 // Note: we deliberately don't take the lock here, and mustn't test anything that would
447 // require taking the lock.
Elliott Hughes88c5c352012-03-15 18:49:48 -0700448 if (obj == NULL) {
449 return true;
450 }
451 if (!IsAligned<kObjectAlignment>(obj)) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700452 return false;
453 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800454 for (size_t i = 0; i < spaces_.size(); ++i) {
Ian Rogers30fab402012-01-23 15:43:46 -0800455 if (spaces_[i]->Contains(obj)) {
456 return true;
457 }
458 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700459 // TODO: Find a way to check large object space without using a lock.
460 return true;
Elliott Hughesa2501992011-08-26 19:39:54 -0700461}
462
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700463bool Heap::IsLiveObjectLocked(const Object* obj) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700464 Locks::heap_bitmap_lock_->AssertReaderHeld();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700465 return IsHeapAddress(obj) && GetLiveBitmap()->Test(obj);
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700466}
467
Elliott Hughes3e465b12011-09-02 18:26:12 -0700468#if VERIFY_OBJECT_ENABLED
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700469void Heap::VerifyObject(const Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700470 if (obj == NULL || this == NULL || !verify_objects_ || Runtime::Current()->IsShuttingDown() ||
Ian Rogers141d6222012-04-05 12:23:06 -0700471 Thread::Current() == NULL ||
jeffhao25045522012-03-13 19:34:37 -0700472 Runtime::Current()->GetThreadList()->GetLockOwner() == Thread::Current()->GetTid()) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700473 return;
474 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700475 VerifyObjectBody(obj);
Elliott Hughes92b3b562011-09-08 16:32:26 -0700476}
477#endif
478
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700479void Heap::DumpSpaces() {
480 // TODO: C++0x auto
481 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700482 Space* space = *it;
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700483 LOG(INFO) << *space << "\n"
484 << *space->GetLiveBitmap() << "\n"
485 << *space->GetMarkBitmap();
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700486 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700487 // TODO: Dump large object space?
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700488}
489
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700490void Heap::VerifyObjectBody(const Object* obj) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700491 if (!IsAligned<kObjectAlignment>(obj)) {
492 LOG(FATAL) << "Object isn't aligned: " << obj;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700493 }
494
Mathieu Chartier0325e622012-09-05 14:22:51 -0700495 if (!GetLiveBitmap()->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700496 // Check the allocation stack / live stack.
497 if (!std::binary_search(live_stack_->Begin(), live_stack_->End(), obj) &&
498 std::find(allocation_stack_->Begin(), allocation_stack_->End(), obj) ==
499 allocation_stack_->End()) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700500 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
501 if (large_object_space_->GetLiveObjects()->Test(obj)) {
502 DumpSpaces();
503 LOG(FATAL) << "Object is dead: " << obj;
504 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700505 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700506 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700507
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700508 // Ignore early dawn of the universe verifications
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700509 if (!VERIFY_OBJECT_FAST && num_objects_allocated_ > 10) {
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700510 const byte* raw_addr = reinterpret_cast<const byte*>(obj) +
511 Object::ClassOffset().Int32Value();
512 const Class* c = *reinterpret_cast<Class* const *>(raw_addr);
513 if (c == NULL) {
514 LOG(FATAL) << "Null class in object: " << obj;
515 } else if (!IsAligned<kObjectAlignment>(c)) {
516 LOG(FATAL) << "Class isn't aligned: " << c << " in object: " << obj;
517 } else if (!GetLiveBitmap()->Test(c)) {
518 LOG(FATAL) << "Class of object is dead: " << c << " in object: " << obj;
519 }
520 // Check obj.getClass().getClass() == obj.getClass().getClass().getClass()
521 // Note: we don't use the accessors here as they have internal sanity checks
522 // that we don't want to run
523 raw_addr = reinterpret_cast<const byte*>(c) + Object::ClassOffset().Int32Value();
524 const Class* c_c = *reinterpret_cast<Class* const *>(raw_addr);
525 raw_addr = reinterpret_cast<const byte*>(c_c) + Object::ClassOffset().Int32Value();
526 const Class* c_c_c = *reinterpret_cast<Class* const *>(raw_addr);
527 CHECK_EQ(c_c, c_c_c);
528 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700529}
530
Brian Carlstrom78128a62011-09-15 17:21:19 -0700531void Heap::VerificationCallback(Object* obj, void* arg) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700532 DCHECK(obj != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700533 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700534}
535
536void Heap::VerifyHeap() {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700537 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700538 GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700539}
540
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700541void Heap::RecordAllocation(size_t size, const Object* obj) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700542 DCHECK(obj != NULL);
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700543 DCHECK_GT(size, 0u);
544 COMPILE_ASSERT(sizeof(size_t) == sizeof(int32_t),
545 int32_t_must_be_same_size_as_size_t_for_used_atomic_operations);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700546 android_atomic_add(size, reinterpret_cast<volatile int32_t*>(
547 reinterpret_cast<size_t>(&num_bytes_allocated_)));
548 android_atomic_add(1, reinterpret_cast<volatile int32_t*>(
549 reinterpret_cast<size_t>(&num_objects_allocated_)));
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700550
551 if (Runtime::Current()->HasStatsEnabled()) {
552 RuntimeStats* global_stats = Runtime::Current()->GetStats();
553 RuntimeStats* thread_stats = Thread::Current()->GetStats();
554 ++global_stats->allocated_objects;
555 ++thread_stats->allocated_objects;
556 global_stats->allocated_bytes += size;
557 thread_stats->allocated_bytes += size;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700558 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700559
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700560 allocation_stack_->AtomicPush(obj);
Carl Shapiro58551df2011-07-24 03:09:51 -0700561}
562
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700563void Heap::RecordFree(size_t freed_objects, size_t freed_bytes) {
Mathieu Chartier637e3482012-08-17 10:41:32 -0700564 COMPILE_ASSERT(sizeof(size_t) == sizeof(int32_t),
565 int32_t_must_be_same_size_as_size_t_for_used_atomic_operations);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700566 DCHECK_LE(freed_objects, num_objects_allocated_);
Mathieu Chartier637e3482012-08-17 10:41:32 -0700567 android_atomic_add(-static_cast<int32_t>(freed_objects),
Mathieu Chartier556fad32012-08-20 16:13:20 -0700568 reinterpret_cast<volatile int32_t*>(
569 reinterpret_cast<size_t>(&num_objects_allocated_)));
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700570
571 DCHECK_LE(freed_bytes, num_bytes_allocated_);
Mathieu Chartier637e3482012-08-17 10:41:32 -0700572 android_atomic_add(-static_cast<int32_t>(freed_bytes),
Mathieu Chartier556fad32012-08-20 16:13:20 -0700573 reinterpret_cast<volatile int32_t*>(
574 reinterpret_cast<size_t>(&num_bytes_allocated_)));
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700575
576 if (Runtime::Current()->HasStatsEnabled()) {
577 RuntimeStats* global_stats = Runtime::Current()->GetStats();
578 RuntimeStats* thread_stats = Thread::Current()->GetStats();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700579 global_stats->freed_objects += freed_objects;
580 thread_stats->freed_objects += freed_objects;
Elliott Hughes307f75d2011-10-12 18:04:40 -0700581 global_stats->freed_bytes += freed_bytes;
582 thread_stats->freed_bytes += freed_bytes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700583 }
Carl Shapiro58551df2011-07-24 03:09:51 -0700584}
585
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700586Object* Heap::TryToAllocate(AllocSpace* space, size_t alloc_size, bool grow) {
Mathieu Chartier83cf3282012-09-26 17:54:27 -0700587 if (UNLIKELY(space == NULL)) {
588 if (CanAllocateBytes(alloc_size)) {
589 // TODO: This is racy, but is it worth fixing?
590 return large_object_space_->Alloc(alloc_size);
591 } else {
592 // Application ran out of heap space.
593 return NULL;
594 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700595 } else if (grow) {
596 return space->AllocWithGrowth(alloc_size);
597 } else {
598 return space->AllocWithoutGrowth(alloc_size);
599 }
600}
601
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700602Object* Heap::Allocate(AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700603 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
604 // done in the runnable state where suspension is expected.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700605#ifndef NDEBUG
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700606 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700607 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700608 MutexLock mu(*Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700609 CHECK_EQ(self->GetState(), kRunnable);
610 }
611 self->AssertThreadSuspensionIsAllowable();
612#endif
Brian Carlstromb82b6872011-10-26 17:18:07 -0700613
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700614 Object* ptr = TryToAllocate(space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700615 if (ptr != NULL) {
616 return ptr;
617 }
618
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700619 // The allocation failed. If the GC is running, block until it completes, and then retry the
620 // allocation.
621 GcType last_gc = WaitForConcurrentGcToComplete();
622 if (last_gc != kGcTypeNone) {
623 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700624 ptr = TryToAllocate(space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700625 if (ptr != NULL) {
626 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700627 }
628 }
629
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700630 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700631#ifdef NDEBUG
632 Thread* self = Thread::Current();
633#endif
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700634 for (size_t i = static_cast<size_t>(last_gc) + 1; i < static_cast<size_t>(kGcTypeMax); ++i) {
635 bool run_gc = false;
636 GcType gc_type = static_cast<GcType>(i);
637 switch (gc_type) {
638 case kGcTypeSticky: {
639 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700640 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
641 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700642 break;
643 }
644 case kGcTypePartial:
645 run_gc = have_zygote_space_;
646 break;
647 case kGcTypeFull:
648 run_gc = true;
649 break;
650 default:
651 break;
652 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700653
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700654 if (run_gc) {
655 if (Runtime::Current()->HasStatsEnabled()) {
656 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
657 ++Thread::Current()->GetStats()->gc_for_alloc_count;
658 }
659 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
660
661 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
662 GcType gc_type_ran = CollectGarbageInternal(gc_type, false);
663 DCHECK(static_cast<size_t>(gc_type_ran) >= i);
664 i = static_cast<size_t>(gc_type_ran);
665 self->TransitionFromSuspendedToRunnable();
666
667 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700668 ptr = TryToAllocate(space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700669 if (ptr != NULL) {
670 return ptr;
671 }
672 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700673 }
674
675 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700676 // Try harder, growing the heap if necessary.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700677 ptr = TryToAllocate(space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700678 if (ptr != NULL) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700679 if (space != NULL) {
680 size_t new_footprint = space->GetFootprintLimit();
681 // OLD-TODO: may want to grow a little bit more so that the amount of
682 // free space is equal to the old free space + the
683 // utilization slop for the new allocation.
684 VLOG(gc) << "Grow alloc space (frag case) to " << PrettySize(new_footprint)
685 << " for a " << PrettySize(alloc_size) << " allocation";
686 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700687 return ptr;
688 }
689
Elliott Hughes81ff3182012-03-23 20:35:56 -0700690 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
691 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
692 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700693
Elliott Hughes418dfe72011-10-06 18:56:27 -0700694 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700695 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
696 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697
698 if (Runtime::Current()->HasStatsEnabled()) {
699 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
700 ++Thread::Current()->GetStats()->gc_for_alloc_count;
701 }
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700702 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700703 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700704 CollectGarbageInternal(kGcTypeFull, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700705 self->TransitionFromSuspendedToRunnable();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700706 return TryToAllocate(space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700707}
708
Elliott Hughesbf86d042011-08-31 17:53:14 -0700709int64_t Heap::GetMaxMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700710 size_t total = 0;
711 // TODO: C++0x auto
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700712 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
713 Space* space = *it;
714 if (space->IsAllocSpace()) {
715 total += space->AsAllocSpace()->Capacity();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700716 }
717 }
718 return total;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700719}
720
721int64_t Heap::GetTotalMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700722 return GetMaxMemory();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700723}
724
725int64_t Heap::GetFreeMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700726 return GetMaxMemory() - num_bytes_allocated_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700727}
728
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700729class InstanceCounter {
730 public:
731 InstanceCounter(Class* c, bool count_assignable)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700732 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700733 : class_(c), count_assignable_(count_assignable), count_(0) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700734
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700735 }
736
737 size_t GetCount() {
738 return count_;
739 }
740
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700741 static void Callback(Object* o, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700742 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700743 reinterpret_cast<InstanceCounter*>(arg)->VisitInstance(o);
744 }
745
746 private:
Ian Rogersb726dcb2012-09-05 08:57:23 -0700747 void VisitInstance(Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700748 Class* instance_class = o->GetClass();
749 if (count_assignable_) {
750 if (instance_class == class_) {
751 ++count_;
752 }
753 } else {
754 if (instance_class != NULL && class_->IsAssignableFrom(instance_class)) {
755 ++count_;
756 }
757 }
758 }
759
760 Class* class_;
761 bool count_assignable_;
762 size_t count_;
763};
764
765int64_t Heap::CountInstances(Class* c, bool count_assignable) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700766 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700767 InstanceCounter counter(c, count_assignable);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700768 GetLiveBitmap()->Walk(InstanceCounter::Callback, &counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700769 return counter.GetCount();
770}
771
Ian Rogers30fab402012-01-23 15:43:46 -0800772void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700773 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
774 // last GC will not have necessarily been cleared.
775 WaitForConcurrentGcToComplete();
776 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
777 CollectGarbageInternal(have_zygote_space_ ? kGcTypePartial : kGcTypeFull, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700778}
779
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700780void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700781 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
782 MutexLock mu(zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700783
784 // Try to see if we have any Zygote spaces.
785 if (have_zygote_space_) {
786 return;
787 }
788
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700789 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
790
791 {
792 // Flush the alloc stack.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700793 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700794 FlushAllocStack();
795 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700796
797 // Replace the first alloc space we find with a zygote space.
798 // TODO: C++0x auto
799 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
800 if ((*it)->IsAllocSpace()) {
801 AllocSpace* zygote_space = (*it)->AsAllocSpace();
802
803 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
804 // of the remaining available heap memory.
805 alloc_space_ = zygote_space->CreateZygoteSpace();
806
807 // Change the GC retention policy of the zygote space to only collect when full.
808 zygote_space->SetGcRetentionPolicy(GCRP_FULL_COLLECT);
809 AddSpace(alloc_space_);
810 have_zygote_space_ = true;
811 break;
812 }
813 }
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700814
Ian Rogers5f5a2c02012-09-17 10:52:08 -0700815 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700816 // TODO: C++0x
817 for (CumulativeTimings::iterator it = cumulative_timings_.begin();
818 it != cumulative_timings_.end(); ++it) {
819 it->second->Reset();
820 }
821
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700822 // Reset this since we now count the ZygoteSpace in the total heap size.
823 num_bytes_allocated_ = 0;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700824}
825
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700826void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700827 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
828 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700829 allocation_stack_->Reset();
830}
831
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700832size_t Heap::GetUsedMemorySize() const {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700833 size_t total = num_bytes_allocated_ + large_object_space_->GetNumBytesAllocated();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700834 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
835 if ((*it)->IsZygoteSpace()) {
836 total += (*it)->AsAllocSpace()->Size();
837 }
838 }
839 return total;
840}
841
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700842void Heap::MarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, MarkStack* stack) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700843 const size_t count = stack->Size();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700844 for (size_t i = 0; i < count; ++i) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700845 const Object* obj = stack->Get(i);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700846 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700847 if (LIKELY(bitmap->HasAddress(obj))) {
848 bitmap->Set(obj);
849 } else {
850 large_objects->Set(obj);
851 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700852 }
853}
854
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700855void Heap::UnMarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, MarkStack* stack) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700856 size_t count = stack->Size();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700857 for (size_t i = 0; i < count; ++i) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700858 const Object* obj = stack->Get(i);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700859 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700860 if (LIKELY(bitmap->HasAddress(obj))) {
861 bitmap->Clear(obj);
862 } else {
863 large_objects->Clear(obj);
864 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700865 }
866}
867
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700868GcType Heap::CollectGarbageInternal(GcType gc_type, bool clear_soft_references) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700869 Locks::mutator_lock_->AssertNotHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700870#ifndef NDEBUG
871 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700872 MutexLock mu(*Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700873 CHECK_EQ(Thread::Current()->GetState(), kWaitingPerformingGc);
874 }
875#endif
Carl Shapiro58551df2011-07-24 03:09:51 -0700876
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700877 // Ensure there is only one GC at a time.
878 bool start_collect = false;
879 while (!start_collect) {
880 {
881 MutexLock mu(*gc_complete_lock_);
882 if (!is_gc_running_) {
883 is_gc_running_ = true;
884 start_collect = true;
885 }
886 }
887 if (!start_collect) {
888 WaitForConcurrentGcToComplete();
889 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
890 // Not doing at the moment to ensure soft references are cleared.
891 }
892 }
893 gc_complete_lock_->AssertNotHeld();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700894
895 // We need to do partial GCs every now and then to avoid the heap growing too much and
896 // fragmenting.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700897 if (gc_type == kGcTypeSticky && ++sticky_gc_count_ > partial_gc_frequency_) {
Mathieu Chartier0325e622012-09-05 14:22:51 -0700898 gc_type = kGcTypePartial;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700899 }
Mathieu Chartier0325e622012-09-05 14:22:51 -0700900 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700901 sticky_gc_count_ = 0;
902 }
903
Mathieu Chartier637e3482012-08-17 10:41:32 -0700904 if (concurrent_gc_) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700905 CollectGarbageConcurrentMarkSweepPlan(gc_type, clear_soft_references);
906 } else {
907 CollectGarbageMarkSweepPlan(gc_type, clear_soft_references);
908 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700909 bytes_since_last_gc_ = 0;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700910
Ian Rogers15bf2d32012-08-28 17:33:04 -0700911 {
912 MutexLock mu(*gc_complete_lock_);
913 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700914 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -0700915 // Wake anyone who may have been waiting for the GC to complete.
916 gc_complete_cond_->Broadcast();
917 }
918 // Inform DDMS that a GC completed.
919 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700920 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700921}
Mathieu Chartiera6399032012-06-11 18:49:50 -0700922
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700923void Heap::CollectGarbageMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
924 TimingLogger timings("CollectGarbageInternal", true);
Mathieu Chartier662618f2012-06-06 12:01:47 -0700925
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700926 std::stringstream gc_type_str;
927 gc_type_str << gc_type << " ";
928
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700929 // Suspend all threads are get exclusive access to the heap.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700930 uint64_t start_time = NanoTime();
Elliott Hughes8d768a92011-09-14 16:35:25 -0700931 ThreadList* thread_list = Runtime::Current()->GetThreadList();
932 thread_list->SuspendAll();
Mathieu Chartier662618f2012-06-06 12:01:47 -0700933 timings.AddSplit("SuspendAll");
Ian Rogersb726dcb2012-09-05 08:57:23 -0700934 Locks::mutator_lock_->AssertExclusiveHeld();
Elliott Hughes83df2ac2011-10-11 16:37:54 -0700935
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700936 size_t bytes_freed = 0;
Elliott Hughesadb460d2011-10-05 17:02:34 -0700937 Object* cleared_references = NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700938 {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700939 MarkSweep mark_sweep(mark_stack_.get());
Carl Shapiro58551df2011-07-24 03:09:51 -0700940
941 mark_sweep.Init();
Elliott Hughes307f75d2011-10-12 18:04:40 -0700942 timings.AddSplit("Init");
Carl Shapiro58551df2011-07-24 03:09:51 -0700943
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700944 if (verify_pre_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700945 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700946 if (!VerifyHeapReferences()) {
947 LOG(FATAL) << "Pre " << gc_type_str.str() << "Gc verification failed";
948 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700949 timings.AddSplit("VerifyHeapReferencesPreGC");
950 }
951
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700952 // Make sure that the tables have the correct pointer for the mark sweep.
953 mod_union_table_->Init(&mark_sweep);
954 zygote_mod_union_table_->Init(&mark_sweep);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700955
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700956 // Swap allocation stack and live stack, enabling us to have new allocations during this GC.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700957 SwapStacks();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700958
959 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
960 // TODO: Investigate using a mark stack instead of a vector.
961 std::vector<byte*> dirty_cards;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700962 if (gc_type == kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700963 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
964 card_table_->GetDirtyCards(*it, dirty_cards);
965 }
966 }
967
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700968 // Clear image space cards and keep track of cards we cleared in the mod-union table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700969 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
970 Space* space = *it;
971 if (space->IsImageSpace()) {
972 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700973 timings.AddSplit("ClearModUnionCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700974 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
975 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700976 timings.AddSplit("ClearZygoteCards");
977 } else {
978 card_table_->ClearSpaceCards(space);
979 timings.AddSplit("ClearCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700980 }
981 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700982
Ian Rogersb726dcb2012-09-05 08:57:23 -0700983 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700984 if (gc_type == kGcTypePartial) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700985 // Copy the mark bits over from the live bits, do this as early as possible or else we can
986 // accidentally un-mark roots.
987 // Needed for scanning dirty objects.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700988 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700989 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
990 mark_sweep.CopyMarkBits(*it);
991 }
992 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700993 timings.AddSplit("CopyMarkBits");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700994
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700995 // We can assume that everything from the start of the first space to the alloc space is marked.
996 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_[0]->Begin()),
997 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700998 } else if (gc_type == kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700999 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001000 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1001 mark_sweep.CopyMarkBits(*it);
1002 }
1003 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001004 large_object_space_->CopyLiveToMarked();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001005 timings.AddSplit("CopyMarkBits");
1006
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001007 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_[0]->Begin()),
1008 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001009 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001010
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001011 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1012 live_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001013
Mathieu Chartier0325e622012-09-05 14:22:51 -07001014 if (gc_type != kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001015 live_stack_->Reset();
1016 }
1017
Carl Shapiro58551df2011-07-24 03:09:51 -07001018 mark_sweep.MarkRoots();
Elliott Hughes307f75d2011-10-12 18:04:40 -07001019 timings.AddSplit("MarkRoots");
Carl Shapiro58551df2011-07-24 03:09:51 -07001020
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001021 // Roots are marked on the bitmap and the mark_stack is empty.
Ian Rogers5d76c432011-10-31 21:42:49 -07001022 DCHECK(mark_sweep.IsMarkStackEmpty());
Carl Shapiro58551df2011-07-24 03:09:51 -07001023
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001024 UpdateAndMarkModUnion(timings, gc_type);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001025
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001026 if (verify_mod_union_table_) {
1027 zygote_mod_union_table_->Update();
1028 zygote_mod_union_table_->Verify();
1029 mod_union_table_->Update();
1030 mod_union_table_->Verify();
1031 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001032
1033 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001034 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001035 live_stack_->Reset();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001036 mark_sweep.RecursiveMark(gc_type == kGcTypePartial, timings);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001037 } else {
1038 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
1039 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001040 mark_sweep.DisableFinger();
Carl Shapiro58551df2011-07-24 03:09:51 -07001041
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001042 // Need to process references before the swap since it uses IsMarked.
Ian Rogers30fab402012-01-23 15:43:46 -08001043 mark_sweep.ProcessReferences(clear_soft_references);
Elliott Hughes307f75d2011-10-12 18:04:40 -07001044 timings.AddSplit("ProcessReferences");
Carl Shapiro58551df2011-07-24 03:09:51 -07001045
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001046 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
1047 mark_sweep.SweepSystemWeaks(false);
1048 timings.AddSplit("SweepSystemWeaks");
1049
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001050 const bool swap = true;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001051 if (swap) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001052 SwapBitmaps();
Mathieu Chartier654d3a22012-07-11 17:54:18 -07001053 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001054
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001055#ifndef NDEBUG
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001056 // Verify that we only reach marked objects from the image space
1057 mark_sweep.VerifyImageRoots();
1058 timings.AddSplit("VerifyImageRoots");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001059#endif
Carl Shapiro58551df2011-07-24 03:09:51 -07001060
Mathieu Chartier0325e622012-09-05 14:22:51 -07001061 if (gc_type != kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001062 mark_sweep.SweepLargeObjects(swap);
1063 timings.AddSplit("SweepLargeObjects");
Mathieu Chartier0325e622012-09-05 14:22:51 -07001064 mark_sweep.Sweep(gc_type == kGcTypePartial, swap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001065 } else {
1066 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001067 timings.AddSplit("SweepArray");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001068 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001069
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001070 if (verify_system_weaks_) {
1071 mark_sweep.VerifySystemWeaks();
1072 timings.AddSplit("VerifySystemWeaks");
1073 }
1074
Elliott Hughesadb460d2011-10-05 17:02:34 -07001075 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001076 bytes_freed = mark_sweep.GetFreedBytes();
Carl Shapiro58551df2011-07-24 03:09:51 -07001077 }
1078
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001079 if (verify_post_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001080 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001081 if (!VerifyHeapReferences()) {
1082 LOG(FATAL) << "Post " + gc_type_str.str() + "Gc verification failed";
1083 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001084 timings.AddSplit("VerifyHeapReferencesPostGC");
1085 }
1086
Carl Shapiro58551df2011-07-24 03:09:51 -07001087 GrowForUtilization();
Elliott Hughes307f75d2011-10-12 18:04:40 -07001088 timings.AddSplit("GrowForUtilization");
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001089
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001090 thread_list->ResumeAll();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001091 timings.AddSplit("ResumeAll");
Elliott Hughesadb460d2011-10-05 17:02:34 -07001092
1093 EnqueueClearedReferences(&cleared_references);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001094 RequestHeapTrim();
Mathieu Chartier662618f2012-06-06 12:01:47 -07001095 timings.AddSplit("Finish");
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001096
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001097 // If the GC was slow, then print timings in the log.
1098 uint64_t duration = (NanoTime() - start_time) / 1000 * 1000;
1099 if (duration > MsToNs(50)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001100 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001101 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001102 const size_t total_memory = GetTotalMemory();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001103 LOG(INFO) << gc_type_str.str() << " "
Mathieu Chartier637e3482012-08-17 10:41:32 -07001104 << "GC freed " << PrettySize(bytes_freed) << ", " << percent_free << "% free, "
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001105 << PrettySize(current_heap_size) << "/" << PrettySize(total_memory) << ", "
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001106 << "paused " << PrettyDuration(duration);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001107 if (VLOG_IS_ON(heap)) {
1108 timings.Dump();
1109 }
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001110 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001111
Mathieu Chartier0325e622012-09-05 14:22:51 -07001112 CumulativeLogger* logger = cumulative_timings_.Get(gc_type);
1113 logger->Start();
1114 logger->AddLogger(timings);
1115 logger->End(); // Next iteration.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001116}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001117
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001118void Heap::UpdateAndMarkModUnion(TimingLogger& timings, GcType gc_type) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001119 if (gc_type == kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001120 // Don't need to do anythign for mod union table in this case since we are only scanning dirty
1121 // cards.
1122 return;
1123 }
1124
1125 // Update zygote mod union table.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001126 if (gc_type == kGcTypePartial) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001127 zygote_mod_union_table_->Update();
1128 timings.AddSplit("UpdateZygoteModUnionTable");
1129
1130 zygote_mod_union_table_->MarkReferences();
1131 timings.AddSplit("ZygoteMarkReferences");
1132 }
1133
1134 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
1135 mod_union_table_->Update();
1136 timings.AddSplit("UpdateModUnionTable");
1137
1138 // Scans all objects in the mod-union table.
1139 mod_union_table_->MarkReferences();
1140 timings.AddSplit("MarkImageToAllocSpaceReferences");
1141}
1142
1143void Heap::RootMatchesObjectVisitor(const Object* root, void* arg) {
1144 Object* obj = reinterpret_cast<Object*>(arg);
1145 if (root == obj) {
1146 LOG(INFO) << "Object " << obj << " is a root";
1147 }
1148}
1149
1150class ScanVisitor {
1151 public:
1152 void operator ()(const Object* obj) const {
1153 LOG(INFO) << "Would have rescanned object " << obj;
1154 }
1155};
1156
1157class VerifyReferenceVisitor {
1158 public:
1159 VerifyReferenceVisitor(Heap* heap, bool* failed)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001160 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1161 Locks::heap_bitmap_lock_)
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001162 : heap_(heap),
1163 failed_(failed) {
1164 }
1165
1166 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1167 // analysis.
1168 void operator ()(const Object* obj, const Object* ref, const MemberOffset& /* offset */,
1169 bool /* is_static */) const NO_THREAD_SAFETY_ANALYSIS {
1170 // Verify that the reference is live.
1171 if (ref != NULL && !IsLive(ref)) {
1172 CardTable* card_table = heap_->GetCardTable();
1173 MarkStack* alloc_stack = heap_->allocation_stack_.get();
1174 MarkStack* live_stack = heap_->live_stack_.get();
1175
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001176 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001177 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " on IsDirty = "
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001178 << (*card_addr == GC_CARD_DIRTY);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001179 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1180 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1181 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001182 void* cover_begin = card_table->AddrFromCard(card_addr);
1183 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1184 GC_CARD_SIZE);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001185 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001186 << "-" << cover_end;
1187 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1188
1189 // Print out how the object is live.
1190 if (bitmap->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001191 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1192 }
1193
1194 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj)) {
1195 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1196 }
1197
1198 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1199 LOG(ERROR) << "Object " << obj << " found in live stack";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001200 }
1201
1202 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001203 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001204 }
1205
1206 // Attempt to see if the card table missed the reference.
1207 ScanVisitor scan_visitor;
1208 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1209 card_table->Scan(bitmap, byte_cover_begin, byte_cover_begin + GC_CARD_SIZE, scan_visitor,
1210 IdentityFunctor());
1211
1212 // Try and see if a mark sweep collector scans the reference.
1213 MarkStack* mark_stack = heap_->mark_stack_.get();
1214 MarkSweep ms(mark_stack);
1215 ms.Init();
1216 mark_stack->Reset();
1217 ms.SetFinger(reinterpret_cast<Object*>(~size_t(0)));
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001218
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001219 // All the references should end up in the mark stack.
1220 ms.ScanRoot(obj);
1221 if (std::find(mark_stack->Begin(), mark_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001222 LOG(ERROR) << "Ref found in the mark_stack when rescanning the object!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001223 } else {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001224 LOG(ERROR) << "Dumping mark stack contents";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001225 for (Object** it = mark_stack->Begin(); it != mark_stack->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001226 LOG(ERROR) << *it;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001227 }
1228 }
1229 mark_stack->Reset();
1230
1231 // Search to see if any of the roots reference our object.
1232 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1233 Runtime::Current()->VisitRoots(&Heap::RootMatchesObjectVisitor, arg);
1234 *failed_ = true;
1235 }
1236 }
1237
1238 bool IsLive(const Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
1239 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1240 if (bitmap != NULL) {
1241 if (bitmap->Test(obj)) {
1242 return true;
1243 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001244 } else if (heap_->GetLargeObjectsSpace()->GetLiveObjects()->Test(obj)) {
1245 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001246 } else {
1247 heap_->DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001248 LOG(ERROR) << "Object " << obj << " not found in any spaces";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001249 }
1250 MarkStack* alloc_stack = heap_->allocation_stack_.get();
1251 // At this point we need to search the allocation since things in the live stack may get swept.
1252 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), const_cast<Object*>(obj))) {
1253 return true;
1254 }
1255 // Not either in the live bitmap or allocation stack, so the object must be dead.
1256 return false;
1257 }
1258
1259 private:
1260 Heap* heap_;
1261 bool* failed_;
1262};
1263
1264class VerifyObjectVisitor {
1265 public:
1266 VerifyObjectVisitor(Heap* heap)
1267 : heap_(heap),
1268 failed_(false) {
1269
1270 }
1271
1272 void operator ()(const Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001273 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001274 VerifyReferenceVisitor visitor(heap_, const_cast<bool*>(&failed_));
1275 MarkSweep::VisitObjectReferences(obj, visitor);
1276 }
1277
1278 bool Failed() const {
1279 return failed_;
1280 }
1281
1282 private:
1283 Heap* heap_;
1284 bool failed_;
1285};
1286
1287// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001288bool Heap::VerifyHeapReferences() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001289 Locks::mutator_lock_->AssertExclusiveHeld();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001290 // Lets sort our allocation stacks so that we can efficiently binary search them.
1291 std::sort(allocation_stack_->Begin(), allocation_stack_->End());
1292 std::sort(live_stack_->Begin(), live_stack_->End());
1293 // Perform the verification.
1294 VerifyObjectVisitor visitor(this);
1295 GetLiveBitmap()->Visit(visitor);
1296 // We don't want to verify the objects in the allocation stack since they themselves may be
1297 // pointing to dead objects if they are not reachable.
1298 if (visitor.Failed()) {
1299 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001300 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001301 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001302 return true;
1303}
1304
1305class VerifyReferenceCardVisitor {
1306 public:
1307 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1309 Locks::heap_bitmap_lock_)
1310 : heap_(heap),
1311 failed_(failed) {
1312 }
1313
1314 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1315 // analysis.
1316 void operator ()(const Object* obj, const Object* ref, const MemberOffset& offset,
1317 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
1318 if (ref != NULL) {
1319 CardTable* card_table = heap_->GetCardTable();
1320 // If the object is not dirty and it is referencing something in the live stack other than
1321 // class, then it must be on a dirty card.
1322 if (!card_table->IsDirty(obj)) {
1323 MarkStack* live_stack = heap_->live_stack_.get();
1324 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref) && !ref->IsClass()) {
1325 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1326 LOG(ERROR) << "Object " << obj << " found in live stack";
1327 }
1328 if (heap_->GetLiveBitmap()->Test(obj)) {
1329 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1330 }
1331 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1332 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1333
1334 // Print which field of the object is dead.
1335 if (!obj->IsObjectArray()) {
1336 const Class* klass = is_static ? obj->AsClass() : obj->GetClass();
1337 CHECK(klass != NULL);
1338 const ObjectArray<Field>* fields = is_static ? klass->GetSFields() : klass->GetIFields();
1339 CHECK(fields != NULL);
1340 for (int32_t i = 0; i < fields->GetLength(); ++i) {
1341 const Field* cur = fields->Get(i);
1342 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1343 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1344 << PrettyField(cur);
1345 break;
1346 }
1347 }
1348 } else {
1349 const ObjectArray<Object>* object_array = obj->AsObjectArray<Object>();
1350 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1351 if (object_array->Get(i) == ref) {
1352 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1353 }
1354 }
1355 }
1356
1357 *failed_ = true;
1358 }
1359 }
1360 }
1361 }
1362
1363 private:
1364 Heap* heap_;
1365 bool* failed_;
1366};
1367
1368class VerifyLiveStackReferences {
1369 public:
1370 VerifyLiveStackReferences(Heap* heap)
1371 : heap_(heap),
1372 failed_(false) {
1373
1374 }
1375
1376 void operator ()(const Object* obj) const
1377 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1378 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
1379 MarkSweep::VisitObjectReferences(obj, visitor);
1380 }
1381
1382 bool Failed() const {
1383 return failed_;
1384 }
1385
1386 private:
1387 Heap* heap_;
1388 bool failed_;
1389};
1390
1391bool Heap::VerifyMissingCardMarks() {
1392 Locks::mutator_lock_->AssertExclusiveHeld();
1393
1394 VerifyLiveStackReferences visitor(this);
1395 GetLiveBitmap()->Visit(visitor);
1396
1397 // We can verify objects in the live stack since none of these should reference dead objects.
1398 for (Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
1399 visitor(*it);
1400 }
1401
1402 if (visitor.Failed()) {
1403 DumpSpaces();
1404 return false;
1405 }
1406 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001407}
1408
1409void Heap::SwapBitmaps() {
1410 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
1411 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
1412 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark bit
1413 // instead, resulting in no new allocated objects being incorrectly freed by sweep.
Ian Rogersb726dcb2012-09-05 08:57:23 -07001414 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001415 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1416 Space* space = *it;
1417 // We never allocate into zygote spaces.
1418 if (space->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1419 live_bitmap_->ReplaceBitmap(space->GetLiveBitmap(), space->GetMarkBitmap());
1420 mark_bitmap_->ReplaceBitmap(space->GetMarkBitmap(), space->GetLiveBitmap());
1421 space->AsAllocSpace()->SwapBitmaps();
1422 }
1423 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001424
1425 large_object_space_->SwapBitmaps();
1426 live_bitmap_->SetLargeObjects(large_object_space_->GetLiveObjects());
1427 mark_bitmap_->SetLargeObjects(large_object_space_->GetMarkObjects());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001428}
1429
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001430void Heap::SwapStacks() {
1431 MarkStack* temp = allocation_stack_.release();
1432 allocation_stack_.reset(live_stack_.release());
1433 live_stack_.reset(temp);
1434
1435 // Sort the live stack so that we can quickly binary search it later.
1436 if (VERIFY_OBJECT_ENABLED) {
1437 std::sort(live_stack_->Begin(), live_stack_->End());
1438 }
1439}
1440
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001441void Heap::CollectGarbageConcurrentMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
1442 TimingLogger timings("ConcurrentCollectGarbageInternal", true);
1443 uint64_t root_begin = NanoTime(), root_end = 0, dirty_begin = 0, dirty_end = 0;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001444 std::stringstream gc_type_str;
1445 gc_type_str << gc_type << " ";
Mathieu Chartiera6399032012-06-11 18:49:50 -07001446
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001447 // Suspend all threads are get exclusive access to the heap.
1448 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1449 thread_list->SuspendAll();
1450 timings.AddSplit("SuspendAll");
Ian Rogersb726dcb2012-09-05 08:57:23 -07001451 Locks::mutator_lock_->AssertExclusiveHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001452
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001453 size_t bytes_freed = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001454 Object* cleared_references = NULL;
1455 {
1456 MarkSweep mark_sweep(mark_stack_.get());
1457 timings.AddSplit("ctor");
1458
1459 mark_sweep.Init();
1460 timings.AddSplit("Init");
1461
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001462 if (verify_pre_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001463 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001464 if (!VerifyHeapReferences()) {
1465 LOG(FATAL) << "Pre " << gc_type_str.str() << "Gc verification failed";
1466 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001467 timings.AddSplit("VerifyHeapReferencesPreGC");
1468 }
1469
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001470 // Swap the stacks, this is safe since all the mutators are suspended at this point.
1471 SwapStacks();
1472
1473 // Check that all objects which reference things in the live stack are on dirty cards.
1474 if (verify_missing_card_marks_) {
1475 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
1476 // Sort the live stack so that we can quickly binary search it later.
1477 std::sort(live_stack_->Begin(), live_stack_->End());
1478 if (!VerifyMissingCardMarks()) {
1479 LOG(FATAL) << "Pre GC verification of missing card marks failed";
1480 }
1481 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001482
1483 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
1484 // TODO: Investigate using a mark stack instead of a vector.
1485 std::vector<byte*> dirty_cards;
Mathieu Chartier0325e622012-09-05 14:22:51 -07001486 if (gc_type == kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001487 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1488 card_table_->GetDirtyCards(*it, dirty_cards);
1489 }
1490 }
1491
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001492 // Make sure that the tables have the correct pointer for the mark sweep.
1493 mod_union_table_->Init(&mark_sweep);
1494 zygote_mod_union_table_->Init(&mark_sweep);
1495
1496 // Clear image space cards and keep track of cards we cleared in the mod-union table.
1497 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1498 Space* space = *it;
1499 if (space->IsImageSpace()) {
1500 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001501 timings.AddSplit("ModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001502 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1503 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001504 timings.AddSplit("ZygoteModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001505 } else {
1506 card_table_->ClearSpaceCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001507 timings.AddSplit("ClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001508 }
1509 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001510
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001511 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001512 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001513
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001514 for (Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
1515 CHECK(!GetLiveBitmap()->Test(*it));
1516 }
1517
Mathieu Chartier0325e622012-09-05 14:22:51 -07001518 if (gc_type == kGcTypePartial) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001519 // Copy the mark bits over from the live bits, do this as early as possible or else we can
1520 // accidentally un-mark roots.
1521 // Needed for scanning dirty objects.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001522 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001523 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1524 mark_sweep.CopyMarkBits(*it);
1525 }
1526 }
1527 timings.AddSplit("CopyMarkBits");
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001528 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_.front()->Begin()),
1529 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier0325e622012-09-05 14:22:51 -07001530 } else if (gc_type == kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001531 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001532 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1533 mark_sweep.CopyMarkBits(*it);
1534 }
1535 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001536 large_object_space_->CopyLiveToMarked();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001537 timings.AddSplit("CopyMarkBits");
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001538 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_.front()->Begin()),
1539 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001540 }
1541
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001542 // Marking roots is not necessary for sticky mark bits since we only actually require the
1543 // remarking of roots.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001544 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001545 mark_sweep.MarkRoots();
1546 timings.AddSplit("MarkRoots");
1547 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001548
1549 if (verify_mod_union_table_) {
1550 zygote_mod_union_table_->Update();
1551 zygote_mod_union_table_->Verify();
1552 mod_union_table_->Update();
1553 mod_union_table_->Verify();
1554 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001555 }
1556
1557 // Roots are marked on the bitmap and the mark_stack is empty.
1558 DCHECK(mark_sweep.IsMarkStackEmpty());
1559
1560 // Allow mutators to go again, acquire share on mutator_lock_ to continue.
1561 thread_list->ResumeAll();
1562 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001563 ReaderMutexLock reader_lock(*Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001564 root_end = NanoTime();
1565 timings.AddSplit("RootEnd");
1566
Ian Rogersb726dcb2012-09-05 08:57:23 -07001567 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001568 UpdateAndMarkModUnion(timings, gc_type);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001569
1570 // Mark everything as live so that sweeping system weak works correctly for sticky mark bit
1571 // GCs.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001572 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1573 live_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001574 timings.AddSplit("MarkStackAsLive");
1575
Mathieu Chartier0325e622012-09-05 14:22:51 -07001576 if (gc_type != kGcTypeSticky) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001577 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001578 mark_sweep.RecursiveMark(gc_type == kGcTypePartial, timings);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001579 } else {
1580 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001581 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001582 mark_sweep.DisableFinger();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001583 }
1584 // Release share on mutator_lock_ and then get exclusive access.
1585 dirty_begin = NanoTime();
1586 thread_list->SuspendAll();
1587 timings.AddSplit("ReSuspend");
Ian Rogersb726dcb2012-09-05 08:57:23 -07001588 Locks::mutator_lock_->AssertExclusiveHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001589
1590 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001591 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001592
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001593 // Re-mark root set.
1594 mark_sweep.ReMarkRoots();
1595 timings.AddSplit("ReMarkRoots");
1596
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001597 if (verify_missing_card_marks_) {
1598 // Since verify missing card marks uses a sweep array to empty the allocation stack, we
1599 // need to make sure that we don't free weaks which wont get swept by SweepSystemWeaks.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001600 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1601 allocation_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001602 }
1603
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001604 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001605 mark_sweep.RecursiveMarkDirtyObjects(false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606 timings.AddSplit("RecursiveMarkDirtyObjects");
1607 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001608
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001609 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001610 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001611
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001612 mark_sweep.ProcessReferences(clear_soft_references);
1613 timings.AddSplit("ProcessReferences");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001614
1615 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
1616 mark_sweep.SweepSystemWeaks(false);
1617 timings.AddSplit("SweepSystemWeaks");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001618 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001619
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001620 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
1621 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
1622 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark
1623 // bit instead, resulting in no new allocated objects being incorrectly freed by sweep.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001624 const bool swap = true;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001625 if (swap) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001626 SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001627 }
1628
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001629 // Only need to do this if we have the card mark verification on, and only during concurrent GC.
1630 if (verify_missing_card_marks_) {
1631 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
1632 mark_sweep.SweepArray(timings, allocation_stack_.get(), swap);
1633 } else {
1634 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
1635 // We only sweep over the live stack, and the live stack should not intersect with the
1636 // allocation stack, so it should be safe to UnMark anything in the allocation stack as live.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001637 UnMarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1638 allocation_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001639 timings.AddSplit("UnMarkAllocStack");
1640 }
1641
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001642 if (kIsDebugBuild) {
1643 // Verify that we only reach marked objects from the image space.
Ian Rogersb726dcb2012-09-05 08:57:23 -07001644 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001645 mark_sweep.VerifyImageRoots();
1646 timings.AddSplit("VerifyImageRoots");
1647 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001648
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001649 if (verify_post_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001650 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001651 if (!VerifyHeapReferences()) {
1652 LOG(FATAL) << "Post " << gc_type_str.str() << "Gc verification failed";
1653 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001654 timings.AddSplit("VerifyHeapReferencesPostGC");
1655 }
1656
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001657 thread_list->ResumeAll();
1658 dirty_end = NanoTime();
Ian Rogersb726dcb2012-09-05 08:57:23 -07001659 Locks::mutator_lock_->AssertNotHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001660
1661 {
1662 // TODO: this lock shouldn't be necessary (it's why we did the bitmap flip above).
Ian Rogersb726dcb2012-09-05 08:57:23 -07001663 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001664 if (gc_type != kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001665 mark_sweep.SweepLargeObjects(swap);
1666 timings.AddSplit("SweepLargeObjects");
Mathieu Chartier0325e622012-09-05 14:22:51 -07001667 mark_sweep.Sweep(gc_type == kGcTypePartial, swap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001668 } else {
1669 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001670 timings.AddSplit("SweepArray");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001671 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001672 live_stack_->Reset();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001673 timings.AddSplit("Sweep");
1674 }
1675
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001676 if (verify_system_weaks_) {
1677 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
1678 mark_sweep.VerifySystemWeaks();
1679 timings.AddSplit("VerifySystemWeaks");
1680 }
1681
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001682 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001683 bytes_freed = mark_sweep.GetFreedBytes();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001684 }
1685
1686 GrowForUtilization();
1687 timings.AddSplit("GrowForUtilization");
1688
1689 EnqueueClearedReferences(&cleared_references);
1690 RequestHeapTrim();
1691 timings.AddSplit("Finish");
1692
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001693 // If the GC was slow, then print timings in the log.
1694 uint64_t pause_roots = (root_end - root_begin) / 1000 * 1000;
1695 uint64_t pause_dirty = (dirty_end - dirty_begin) / 1000 * 1000;
Mathieu Chartier637e3482012-08-17 10:41:32 -07001696 uint64_t duration = (NanoTime() - root_begin) / 1000 * 1000;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001697 if (pause_roots > MsToNs(5) || pause_dirty > MsToNs(5)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001698 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001699 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001700 const size_t total_memory = GetTotalMemory();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001701 LOG(INFO) << gc_type_str.str()
Mathieu Chartier637e3482012-08-17 10:41:32 -07001702 << "Concurrent GC freed " << PrettySize(bytes_freed) << ", " << percent_free
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001703 << "% free, " << PrettySize(current_heap_size) << "/"
Mathieu Chartier637e3482012-08-17 10:41:32 -07001704 << PrettySize(total_memory) << ", " << "paused " << PrettyDuration(pause_roots)
1705 << "+" << PrettyDuration(pause_dirty) << " total " << PrettyDuration(duration);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001706 if (VLOG_IS_ON(heap)) {
1707 timings.Dump();
1708 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001709 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001710
Mathieu Chartier0325e622012-09-05 14:22:51 -07001711 CumulativeLogger* logger = cumulative_timings_.Get(gc_type);
1712 logger->Start();
1713 logger->AddLogger(timings);
1714 logger->End(); // Next iteration.
Carl Shapiro69759ea2011-07-21 18:13:35 -07001715}
1716
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001717GcType Heap::WaitForConcurrentGcToComplete() {
1718 GcType last_gc_type = kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001719 if (concurrent_gc_) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001720 bool do_wait;
1721 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001722 {
1723 // Check if GC is running holding gc_complete_lock_.
1724 MutexLock mu(*gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001725 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001726 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001727 if (do_wait) {
1728 // We must wait, change thread state then sleep on gc_complete_cond_;
1729 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1730 {
1731 MutexLock mu(*gc_complete_lock_);
1732 while (is_gc_running_) {
1733 gc_complete_cond_->Wait(*gc_complete_lock_);
1734 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001735 last_gc_type = last_gc_type_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001736 }
1737 uint64_t wait_time = NanoTime() - wait_start;
1738 if (wait_time > MsToNs(5)) {
1739 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1740 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001741 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001742 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001743 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001744}
1745
Elliott Hughesc967f782012-04-16 10:23:15 -07001746void Heap::DumpForSigQuit(std::ostream& os) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001747 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(num_bytes_allocated_) << "/"
1748 << PrettySize(GetTotalMemory()) << "; " << num_objects_allocated_ << " objects\n";
Mathieu Chartier0325e622012-09-05 14:22:51 -07001749 // Dump cumulative timings.
1750 LOG(INFO) << "Dumping cumulative Gc timings";
1751 for (CumulativeTimings::iterator it = cumulative_timings_.begin();
1752 it != cumulative_timings_.end(); ++it) {
1753 it->second->Dump();
1754 }
Elliott Hughesc967f782012-04-16 10:23:15 -07001755}
1756
1757size_t Heap::GetPercentFree() {
1758 size_t total = GetTotalMemory();
1759 return 100 - static_cast<size_t>(100.0f * static_cast<float>(num_bytes_allocated_) / total);
1760}
1761
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001762void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001763 AllocSpace* alloc_space = alloc_space_;
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001764 size_t alloc_space_capacity = alloc_space->Capacity();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001765 alloc_space_capacity -= large_object_space_->GetNumBytesAllocated();
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001766 if (max_allowed_footprint > alloc_space_capacity) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001767 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
1768 << PrettySize(alloc_space_capacity);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001769 max_allowed_footprint = alloc_space_capacity;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001770 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001771 alloc_space->SetFootprintLimit(max_allowed_footprint);
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001772}
1773
Ian Rogers3bb17a62012-01-27 23:56:44 -08001774// kHeapIdealFree is the ideal maximum free size, when we grow the heap for utilization.
Shih-wei Liao7f1caab2011-10-06 12:11:04 -07001775static const size_t kHeapIdealFree = 2 * MB;
Ian Rogers3bb17a62012-01-27 23:56:44 -08001776// kHeapMinFree guarantees that you always have at least 512 KB free, when you grow for utilization,
1777// regardless of target utilization ratio.
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001778static const size_t kHeapMinFree = kHeapIdealFree / 4;
1779
Carl Shapiro69759ea2011-07-21 18:13:35 -07001780void Heap::GrowForUtilization() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001781 size_t target_size;
1782 bool use_footprint_limit = false;
1783 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001784 // We know what our utilization is at this moment.
1785 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
1786 target_size = num_bytes_allocated_ / Heap::GetTargetHeapUtilization();
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001787
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001788 if (target_size > num_bytes_allocated_ + kHeapIdealFree) {
1789 target_size = num_bytes_allocated_ + kHeapIdealFree;
1790 } else if (target_size < num_bytes_allocated_ + kHeapMinFree) {
1791 target_size = num_bytes_allocated_ + kHeapMinFree;
1792 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001793
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001794 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001795 if (GetTotalMemory() - GetUsedMemorySize() < concurrent_min_free_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001796 // Not enough free memory to perform concurrent GC.
1797 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1798 } else {
1799 // Compute below to avoid holding both the statistics and the alloc space lock
1800 use_footprint_limit = true;
1801 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001802 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001803
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001804 if (use_footprint_limit) {
1805 size_t foot_print_limit = alloc_space_->GetFootprintLimit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001806 concurrent_start_bytes_ = foot_print_limit - concurrent_start_size_;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001807 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001808 SetIdealFootprint(target_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001809}
1810
jeffhaoc1160702011-10-27 15:48:45 -07001811void Heap::ClearGrowthLimit() {
jeffhaoc1160702011-10-27 15:48:45 -07001812 WaitForConcurrentGcToComplete();
jeffhaoc1160702011-10-27 15:48:45 -07001813 alloc_space_->ClearGrowthLimit();
1814}
1815
Elliott Hughesadb460d2011-10-05 17:02:34 -07001816void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001817 MemberOffset reference_queue_offset,
1818 MemberOffset reference_queueNext_offset,
1819 MemberOffset reference_pendingNext_offset,
1820 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001821 reference_referent_offset_ = reference_referent_offset;
1822 reference_queue_offset_ = reference_queue_offset;
1823 reference_queueNext_offset_ = reference_queueNext_offset;
1824 reference_pendingNext_offset_ = reference_pendingNext_offset;
1825 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1826 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1827 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1828 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1829 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1830 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1831}
1832
1833Object* Heap::GetReferenceReferent(Object* reference) {
1834 DCHECK(reference != NULL);
1835 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1836 return reference->GetFieldObject<Object*>(reference_referent_offset_, true);
1837}
1838
1839void Heap::ClearReferenceReferent(Object* reference) {
1840 DCHECK(reference != NULL);
1841 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1842 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1843}
1844
1845// Returns true if the reference object has not yet been enqueued.
1846bool Heap::IsEnqueuable(const Object* ref) {
1847 DCHECK(ref != NULL);
1848 const Object* queue = ref->GetFieldObject<Object*>(reference_queue_offset_, false);
1849 const Object* queue_next = ref->GetFieldObject<Object*>(reference_queueNext_offset_, false);
1850 return (queue != NULL) && (queue_next == NULL);
1851}
1852
1853void Heap::EnqueueReference(Object* ref, Object** cleared_reference_list) {
1854 DCHECK(ref != NULL);
1855 CHECK(ref->GetFieldObject<Object*>(reference_queue_offset_, false) != NULL);
1856 CHECK(ref->GetFieldObject<Object*>(reference_queueNext_offset_, false) == NULL);
1857 EnqueuePendingReference(ref, cleared_reference_list);
1858}
1859
1860void Heap::EnqueuePendingReference(Object* ref, Object** list) {
1861 DCHECK(ref != NULL);
1862 DCHECK(list != NULL);
1863
1864 if (*list == NULL) {
1865 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1866 *list = ref;
1867 } else {
1868 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1869 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1870 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1871 }
1872}
1873
1874Object* Heap::DequeuePendingReference(Object** list) {
1875 DCHECK(list != NULL);
1876 DCHECK(*list != NULL);
1877 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1878 Object* ref;
1879 if (*list == head) {
1880 ref = *list;
1881 *list = NULL;
1882 } else {
1883 Object* next = head->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1884 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1885 ref = head;
1886 }
1887 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1888 return ref;
1889}
1890
Ian Rogers5d4bdc22011-11-02 22:15:43 -07001891void Heap::AddFinalizerReference(Thread* self, Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001892 ScopedObjectAccess soa(self);
Elliott Hughes77405792012-03-15 15:22:12 -07001893 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001894 args[0].SetL(object);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001895 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self, NULL, args,
1896 NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001897}
1898
1899size_t Heap::GetBytesAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001900 return num_bytes_allocated_;
1901}
1902
1903size_t Heap::GetObjectsAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001904 return num_objects_allocated_;
1905}
1906
1907size_t Heap::GetConcurrentStartSize() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001908 return concurrent_start_size_;
1909}
1910
1911size_t Heap::GetConcurrentMinFree() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001912 return concurrent_min_free_;
Elliott Hughesadb460d2011-10-05 17:02:34 -07001913}
1914
1915void Heap::EnqueueClearedReferences(Object** cleared) {
1916 DCHECK(cleared != NULL);
1917 if (*cleared != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001918 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes77405792012-03-15 15:22:12 -07001919 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001920 args[0].SetL(*cleared);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001921 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(), NULL,
1922 args, NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001923 *cleared = NULL;
1924 }
1925}
1926
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001927void Heap::RequestConcurrentGC() {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001928 // Make sure that we can do a concurrent GC.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001929 if (requesting_gc_ || !Runtime::Current()->IsFinishedStarting() ||
1930 Runtime::Current()->IsShuttingDown() || !Runtime::Current()->IsConcurrentGcEnabled()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001931 return;
1932 }
1933
1934 requesting_gc_ = true;
1935 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001936 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1937 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001938 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1939 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001940 CHECK(!env->ExceptionCheck());
1941 requesting_gc_ = false;
1942}
1943
1944void Heap::ConcurrentGC() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001945 if (Runtime::Current()->IsShuttingDown() || !concurrent_gc_) {
Mathieu Chartier2542d662012-06-21 17:14:11 -07001946 return;
1947 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001948
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001949 // TODO: We shouldn't need a WaitForConcurrentGcToComplete here since only
1950 // concurrent GC resumes threads before the GC is completed and this function
1951 // is only called within the GC daemon thread.
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001952 if (WaitForConcurrentGcToComplete() == kGcTypeNone) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001953 // Start a concurrent GC as one wasn't in progress
1954 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001955 if (alloc_space_->Size() > min_alloc_space_size_for_sticky_gc_) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001956 CollectGarbageInternal(kGcTypeSticky, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001957 } else {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001958 CollectGarbageInternal(kGcTypePartial, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001959 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001960 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001961}
1962
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001963void Heap::Trim() {
Mathieu Chartiera6399032012-06-11 18:49:50 -07001964 WaitForConcurrentGcToComplete();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001965 alloc_space_->Trim();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001966}
1967
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001968void Heap::RequestHeapTrim() {
1969 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1970 // because that only marks object heads, so a large array looks like lots of empty space. We
1971 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1972 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1973 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1974 // not how much use we're making of those pages.
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001975 uint64_t ms_time = NsToMs(NanoTime());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001976 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001977 float utilization = static_cast<float>(num_bytes_allocated_) / alloc_space_->Size();
1978 if ((utilization > 0.75f) || ((ms_time - last_trim_time_) < 2 * 1000)) {
1979 // Don't bother trimming the heap if it's more than 75% utilized, or if a
1980 // heap trim occurred in the last two seconds.
1981 return;
1982 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001983 }
Mathieu Chartiera6399032012-06-11 18:49:50 -07001984 if (!Runtime::Current()->IsFinishedStarting() || Runtime::Current()->IsShuttingDown()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001985 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
Mathieu Chartiera6399032012-06-11 18:49:50 -07001986 // Also: we do not wish to start a heap trim if the runtime is shutting down.
Ian Rogerse1d490c2012-02-03 09:09:07 -08001987 return;
1988 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001989 last_trim_time_ = ms_time;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001990 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001991 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1992 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001993 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1994 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001995 CHECK(!env->ExceptionCheck());
1996}
1997
Carl Shapiro69759ea2011-07-21 18:13:35 -07001998} // namespace art