blob: 74e91f513f1fd1fb12d83fd585f28692ab598fdf [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) {
587 if (UNLIKELY(space == NULL) && CanAllocateBytes(alloc_size)) {
588 return large_object_space_->Alloc(alloc_size);
589 } else if (grow) {
590 return space->AllocWithGrowth(alloc_size);
591 } else {
592 return space->AllocWithoutGrowth(alloc_size);
593 }
594}
595
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700596Object* Heap::Allocate(AllocSpace* space, size_t alloc_size) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700597 // Since allocation can cause a GC which will need to SuspendAll, make sure all allocations are
598 // done in the runnable state where suspension is expected.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700599#ifndef NDEBUG
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700600 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700601 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700602 MutexLock mu(*Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700603 CHECK_EQ(self->GetState(), kRunnable);
604 }
605 self->AssertThreadSuspensionIsAllowable();
606#endif
Brian Carlstromb82b6872011-10-26 17:18:07 -0700607
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700608 Object* ptr = TryToAllocate(space, alloc_size, false);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700609 if (ptr != NULL) {
610 return ptr;
611 }
612
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700613 // The allocation failed. If the GC is running, block until it completes, and then retry the
614 // allocation.
615 GcType last_gc = WaitForConcurrentGcToComplete();
616 if (last_gc != kGcTypeNone) {
617 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700618 ptr = TryToAllocate(space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700619 if (ptr != NULL) {
620 return ptr;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700621 }
622 }
623
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700624 // Loop through our different Gc types and try to Gc until we get enough free memory.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700625#ifdef NDEBUG
626 Thread* self = Thread::Current();
627#endif
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700628 for (size_t i = static_cast<size_t>(last_gc) + 1; i < static_cast<size_t>(kGcTypeMax); ++i) {
629 bool run_gc = false;
630 GcType gc_type = static_cast<GcType>(i);
631 switch (gc_type) {
632 case kGcTypeSticky: {
633 const size_t alloc_space_size = alloc_space_->Size();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700634 run_gc = alloc_space_size > min_alloc_space_size_for_sticky_gc_ &&
635 alloc_space_->Capacity() - alloc_space_size >= min_remaining_space_for_sticky_gc_;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700636 break;
637 }
638 case kGcTypePartial:
639 run_gc = have_zygote_space_;
640 break;
641 case kGcTypeFull:
642 run_gc = true;
643 break;
644 default:
645 break;
646 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700647
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700648 if (run_gc) {
649 if (Runtime::Current()->HasStatsEnabled()) {
650 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
651 ++Thread::Current()->GetStats()->gc_for_alloc_count;
652 }
653 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
654
655 // If we actually ran a different type of Gc than requested, we can skip the index forwards.
656 GcType gc_type_ran = CollectGarbageInternal(gc_type, false);
657 DCHECK(static_cast<size_t>(gc_type_ran) >= i);
658 i = static_cast<size_t>(gc_type_ran);
659 self->TransitionFromSuspendedToRunnable();
660
661 // Did we free sufficient memory for the allocation to succeed?
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700662 ptr = TryToAllocate(space, alloc_size, false);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700663 if (ptr != NULL) {
664 return ptr;
665 }
666 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 }
668
669 // Allocations have failed after GCs; this is an exceptional state.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700670 // Try harder, growing the heap if necessary.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700671 ptr = TryToAllocate(space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700672 if (ptr != NULL) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700673 if (space != NULL) {
674 size_t new_footprint = space->GetFootprintLimit();
675 // OLD-TODO: may want to grow a little bit more so that the amount of
676 // free space is equal to the old free space + the
677 // utilization slop for the new allocation.
678 VLOG(gc) << "Grow alloc space (frag case) to " << PrettySize(new_footprint)
679 << " for a " << PrettySize(alloc_size) << " allocation";
680 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700681 return ptr;
682 }
683
Elliott Hughes81ff3182012-03-23 20:35:56 -0700684 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
685 // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
686 // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700687
Elliott Hughes418dfe72011-10-06 18:56:27 -0700688 // OLD-TODO: wait for the finalizers from the previous GC to finish
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700689 VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
690 << " allocation";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700691
692 if (Runtime::Current()->HasStatsEnabled()) {
693 ++Runtime::Current()->GetStats()->gc_for_alloc_count;
694 ++Thread::Current()->GetStats()->gc_for_alloc_count;
695 }
Mathieu Chartierfc8cfac2012-06-19 11:56:36 -0700696 // We don't need a WaitForConcurrentGcToComplete here either.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697 self->TransitionFromRunnableToSuspended(kWaitingPerformingGc);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700698 CollectGarbageInternal(kGcTypeFull, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700699 self->TransitionFromSuspendedToRunnable();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700700 return TryToAllocate(space, alloc_size, true);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700701}
702
Elliott Hughesbf86d042011-08-31 17:53:14 -0700703int64_t Heap::GetMaxMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700704 size_t total = 0;
705 // TODO: C++0x auto
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700706 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
707 Space* space = *it;
708 if (space->IsAllocSpace()) {
709 total += space->AsAllocSpace()->Capacity();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700710 }
711 }
712 return total;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700713}
714
715int64_t Heap::GetTotalMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700716 return GetMaxMemory();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700717}
718
719int64_t Heap::GetFreeMemory() {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700720 return GetMaxMemory() - num_bytes_allocated_;
Elliott Hughesbf86d042011-08-31 17:53:14 -0700721}
722
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700723class InstanceCounter {
724 public:
725 InstanceCounter(Class* c, bool count_assignable)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700726 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700727 : class_(c), count_assignable_(count_assignable), count_(0) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700728
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700729 }
730
731 size_t GetCount() {
732 return count_;
733 }
734
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700735 static void Callback(Object* o, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700736 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700737 reinterpret_cast<InstanceCounter*>(arg)->VisitInstance(o);
738 }
739
740 private:
Ian Rogersb726dcb2012-09-05 08:57:23 -0700741 void VisitInstance(Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700742 Class* instance_class = o->GetClass();
743 if (count_assignable_) {
744 if (instance_class == class_) {
745 ++count_;
746 }
747 } else {
748 if (instance_class != NULL && class_->IsAssignableFrom(instance_class)) {
749 ++count_;
750 }
751 }
752 }
753
754 Class* class_;
755 bool count_assignable_;
756 size_t count_;
757};
758
759int64_t Heap::CountInstances(Class* c, bool count_assignable) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700760 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700761 InstanceCounter counter(c, count_assignable);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700762 GetLiveBitmap()->Walk(InstanceCounter::Callback, &counter);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700763 return counter.GetCount();
764}
765
Ian Rogers30fab402012-01-23 15:43:46 -0800766void Heap::CollectGarbage(bool clear_soft_references) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700767 // Even if we waited for a GC we still need to do another GC since weaks allocated during the
768 // last GC will not have necessarily been cleared.
769 WaitForConcurrentGcToComplete();
770 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
771 CollectGarbageInternal(have_zygote_space_ ? kGcTypePartial : kGcTypeFull, clear_soft_references);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700772}
773
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700774void Heap::PreZygoteFork() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700775 static Mutex zygote_creation_lock_("zygote creation lock", kZygoteCreationLock);
776 MutexLock mu(zygote_creation_lock_);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700777
778 // Try to see if we have any Zygote spaces.
779 if (have_zygote_space_) {
780 return;
781 }
782
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700783 VLOG(heap) << "Starting PreZygoteFork with alloc space size " << PrettySize(alloc_space_->Size());
784
785 {
786 // Flush the alloc stack.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700787 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700788 FlushAllocStack();
789 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700790
791 // Replace the first alloc space we find with a zygote space.
792 // TODO: C++0x auto
793 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
794 if ((*it)->IsAllocSpace()) {
795 AllocSpace* zygote_space = (*it)->AsAllocSpace();
796
797 // Turns the current alloc space into a Zygote space and obtain the new alloc space composed
798 // of the remaining available heap memory.
799 alloc_space_ = zygote_space->CreateZygoteSpace();
800
801 // Change the GC retention policy of the zygote space to only collect when full.
802 zygote_space->SetGcRetentionPolicy(GCRP_FULL_COLLECT);
803 AddSpace(alloc_space_);
804 have_zygote_space_ = true;
805 break;
806 }
807 }
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700808
Ian Rogers5f5a2c02012-09-17 10:52:08 -0700809 // Reset the cumulative loggers since we now have a few additional timing phases.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700810 // TODO: C++0x
811 for (CumulativeTimings::iterator it = cumulative_timings_.begin();
812 it != cumulative_timings_.end(); ++it) {
813 it->second->Reset();
814 }
815
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700816 // Reset this since we now count the ZygoteSpace in the total heap size.
817 num_bytes_allocated_ = 0;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700818}
819
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700820void Heap::FlushAllocStack() {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700821 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
822 allocation_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700823 allocation_stack_->Reset();
824}
825
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700826size_t Heap::GetUsedMemorySize() const {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700827 size_t total = num_bytes_allocated_ + large_object_space_->GetNumBytesAllocated();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -0700828 for (Spaces::const_iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
829 if ((*it)->IsZygoteSpace()) {
830 total += (*it)->AsAllocSpace()->Size();
831 }
832 }
833 return total;
834}
835
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700836void Heap::MarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, MarkStack* stack) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700837 const size_t count = stack->Size();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700838 for (size_t i = 0; i < count; ++i) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700839 const Object* obj = stack->Get(i);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700840 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700841 if (LIKELY(bitmap->HasAddress(obj))) {
842 bitmap->Set(obj);
843 } else {
844 large_objects->Set(obj);
845 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700846 }
847}
848
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700849void Heap::UnMarkAllocStack(SpaceBitmap* bitmap, SpaceSetMap* large_objects, MarkStack* stack) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700850 size_t count = stack->Size();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700851 for (size_t i = 0; i < count; ++i) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700852 const Object* obj = stack->Get(i);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700853 DCHECK(obj != NULL);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700854 if (LIKELY(bitmap->HasAddress(obj))) {
855 bitmap->Clear(obj);
856 } else {
857 large_objects->Clear(obj);
858 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700859 }
860}
861
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700862GcType Heap::CollectGarbageInternal(GcType gc_type, bool clear_soft_references) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700863 Locks::mutator_lock_->AssertNotHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700864#ifndef NDEBUG
865 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700866 MutexLock mu(*Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700867 CHECK_EQ(Thread::Current()->GetState(), kWaitingPerformingGc);
868 }
869#endif
Carl Shapiro58551df2011-07-24 03:09:51 -0700870
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700871 // Ensure there is only one GC at a time.
872 bool start_collect = false;
873 while (!start_collect) {
874 {
875 MutexLock mu(*gc_complete_lock_);
876 if (!is_gc_running_) {
877 is_gc_running_ = true;
878 start_collect = true;
879 }
880 }
881 if (!start_collect) {
882 WaitForConcurrentGcToComplete();
883 // TODO: if another thread beat this one to do the GC, perhaps we should just return here?
884 // Not doing at the moment to ensure soft references are cleared.
885 }
886 }
887 gc_complete_lock_->AssertNotHeld();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700888
889 // We need to do partial GCs every now and then to avoid the heap growing too much and
890 // fragmenting.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700891 if (gc_type == kGcTypeSticky && ++sticky_gc_count_ > partial_gc_frequency_) {
Mathieu Chartier0325e622012-09-05 14:22:51 -0700892 gc_type = kGcTypePartial;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700893 }
Mathieu Chartier0325e622012-09-05 14:22:51 -0700894 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700895 sticky_gc_count_ = 0;
896 }
897
Mathieu Chartier637e3482012-08-17 10:41:32 -0700898 if (concurrent_gc_) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700899 CollectGarbageConcurrentMarkSweepPlan(gc_type, clear_soft_references);
900 } else {
901 CollectGarbageMarkSweepPlan(gc_type, clear_soft_references);
902 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700903 bytes_since_last_gc_ = 0;
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700904
Ian Rogers15bf2d32012-08-28 17:33:04 -0700905 {
906 MutexLock mu(*gc_complete_lock_);
907 is_gc_running_ = false;
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700908 last_gc_type_ = gc_type;
Ian Rogers15bf2d32012-08-28 17:33:04 -0700909 // Wake anyone who may have been waiting for the GC to complete.
910 gc_complete_cond_->Broadcast();
911 }
912 // Inform DDMS that a GC completed.
913 Dbg::GcDidFinish();
Mathieu Chartier866fb2a2012-09-10 10:47:49 -0700914 return gc_type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700915}
Mathieu Chartiera6399032012-06-11 18:49:50 -0700916
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700917void Heap::CollectGarbageMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
918 TimingLogger timings("CollectGarbageInternal", true);
Mathieu Chartier662618f2012-06-06 12:01:47 -0700919
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700920 std::stringstream gc_type_str;
921 gc_type_str << gc_type << " ";
922
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700923 // Suspend all threads are get exclusive access to the heap.
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700924 uint64_t start_time = NanoTime();
Elliott Hughes8d768a92011-09-14 16:35:25 -0700925 ThreadList* thread_list = Runtime::Current()->GetThreadList();
926 thread_list->SuspendAll();
Mathieu Chartier662618f2012-06-06 12:01:47 -0700927 timings.AddSplit("SuspendAll");
Ian Rogersb726dcb2012-09-05 08:57:23 -0700928 Locks::mutator_lock_->AssertExclusiveHeld();
Elliott Hughes83df2ac2011-10-11 16:37:54 -0700929
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700930 size_t bytes_freed = 0;
Elliott Hughesadb460d2011-10-05 17:02:34 -0700931 Object* cleared_references = NULL;
Carl Shapiro58551df2011-07-24 03:09:51 -0700932 {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700933 MarkSweep mark_sweep(mark_stack_.get());
Carl Shapiro58551df2011-07-24 03:09:51 -0700934
935 mark_sweep.Init();
Elliott Hughes307f75d2011-10-12 18:04:40 -0700936 timings.AddSplit("Init");
Carl Shapiro58551df2011-07-24 03:09:51 -0700937
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700938 if (verify_pre_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700939 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700940 if (!VerifyHeapReferences()) {
941 LOG(FATAL) << "Pre " << gc_type_str.str() << "Gc verification failed";
942 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700943 timings.AddSplit("VerifyHeapReferencesPreGC");
944 }
945
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700946 // Make sure that the tables have the correct pointer for the mark sweep.
947 mod_union_table_->Init(&mark_sweep);
948 zygote_mod_union_table_->Init(&mark_sweep);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700949
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700950 // Swap allocation stack and live stack, enabling us to have new allocations during this GC.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -0700951 SwapStacks();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700952
953 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
954 // TODO: Investigate using a mark stack instead of a vector.
955 std::vector<byte*> dirty_cards;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700956 if (gc_type == kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700957 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
958 card_table_->GetDirtyCards(*it, dirty_cards);
959 }
960 }
961
Mathieu Chartierb43b7d42012-06-19 13:15:09 -0700962 // Clear image space cards and keep track of cards we cleared in the mod-union table.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700963 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
964 Space* space = *it;
965 if (space->IsImageSpace()) {
966 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700967 timings.AddSplit("ClearModUnionCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700968 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
969 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700970 timings.AddSplit("ClearZygoteCards");
971 } else {
972 card_table_->ClearSpaceCards(space);
973 timings.AddSplit("ClearCards");
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700974 }
975 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700976
Ian Rogersb726dcb2012-09-05 08:57:23 -0700977 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700978 if (gc_type == kGcTypePartial) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700979 // Copy the mark bits over from the live bits, do this as early as possible or else we can
980 // accidentally un-mark roots.
981 // Needed for scanning dirty objects.
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700982 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700983 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
984 mark_sweep.CopyMarkBits(*it);
985 }
986 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700987 timings.AddSplit("CopyMarkBits");
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700988
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700989 // We can assume that everything from the start of the first space to the alloc space is marked.
990 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_[0]->Begin()),
991 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier0325e622012-09-05 14:22:51 -0700992 } else if (gc_type == kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700993 for (Spaces::iterator it = spaces_.begin();it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700994 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
995 mark_sweep.CopyMarkBits(*it);
996 }
997 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700998 large_object_space_->CopyLiveToMarked();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700999 timings.AddSplit("CopyMarkBits");
1000
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001001 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_[0]->Begin()),
1002 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001003 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001004
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001005 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1006 live_stack_.get());
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001007
Mathieu Chartier0325e622012-09-05 14:22:51 -07001008 if (gc_type != kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001009 live_stack_->Reset();
1010 }
1011
Carl Shapiro58551df2011-07-24 03:09:51 -07001012 mark_sweep.MarkRoots();
Elliott Hughes307f75d2011-10-12 18:04:40 -07001013 timings.AddSplit("MarkRoots");
Carl Shapiro58551df2011-07-24 03:09:51 -07001014
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001015 // Roots are marked on the bitmap and the mark_stack is empty.
Ian Rogers5d76c432011-10-31 21:42:49 -07001016 DCHECK(mark_sweep.IsMarkStackEmpty());
Carl Shapiro58551df2011-07-24 03:09:51 -07001017
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001018 UpdateAndMarkModUnion(timings, gc_type);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001019
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001020 if (verify_mod_union_table_) {
1021 zygote_mod_union_table_->Update();
1022 zygote_mod_union_table_->Verify();
1023 mod_union_table_->Update();
1024 mod_union_table_->Verify();
1025 }
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001026
1027 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001028 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001029 live_stack_->Reset();
Mathieu Chartier0325e622012-09-05 14:22:51 -07001030 mark_sweep.RecursiveMark(gc_type == kGcTypePartial, timings);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001031 } else {
1032 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
1033 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001034 mark_sweep.DisableFinger();
Carl Shapiro58551df2011-07-24 03:09:51 -07001035
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001036 // Need to process references before the swap since it uses IsMarked.
Ian Rogers30fab402012-01-23 15:43:46 -08001037 mark_sweep.ProcessReferences(clear_soft_references);
Elliott Hughes307f75d2011-10-12 18:04:40 -07001038 timings.AddSplit("ProcessReferences");
Carl Shapiro58551df2011-07-24 03:09:51 -07001039
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001040 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
1041 mark_sweep.SweepSystemWeaks(false);
1042 timings.AddSplit("SweepSystemWeaks");
1043
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001044 const bool swap = true;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001045 if (swap) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001046 SwapBitmaps();
Mathieu Chartier654d3a22012-07-11 17:54:18 -07001047 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001048
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001049#ifndef NDEBUG
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001050 // Verify that we only reach marked objects from the image space
1051 mark_sweep.VerifyImageRoots();
1052 timings.AddSplit("VerifyImageRoots");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001053#endif
Carl Shapiro58551df2011-07-24 03:09:51 -07001054
Mathieu Chartier0325e622012-09-05 14:22:51 -07001055 if (gc_type != kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001056 mark_sweep.SweepLargeObjects(swap);
1057 timings.AddSplit("SweepLargeObjects");
Mathieu Chartier0325e622012-09-05 14:22:51 -07001058 mark_sweep.Sweep(gc_type == kGcTypePartial, swap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001059 } else {
1060 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001061 timings.AddSplit("SweepArray");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001062 }
Elliott Hughesadb460d2011-10-05 17:02:34 -07001063
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001064 if (verify_system_weaks_) {
1065 mark_sweep.VerifySystemWeaks();
1066 timings.AddSplit("VerifySystemWeaks");
1067 }
1068
Elliott Hughesadb460d2011-10-05 17:02:34 -07001069 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001070 bytes_freed = mark_sweep.GetFreedBytes();
Carl Shapiro58551df2011-07-24 03:09:51 -07001071 }
1072
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001073 if (verify_post_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001074 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001075 if (!VerifyHeapReferences()) {
1076 LOG(FATAL) << "Post " + gc_type_str.str() + "Gc verification failed";
1077 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001078 timings.AddSplit("VerifyHeapReferencesPostGC");
1079 }
1080
Carl Shapiro58551df2011-07-24 03:09:51 -07001081 GrowForUtilization();
Elliott Hughes307f75d2011-10-12 18:04:40 -07001082 timings.AddSplit("GrowForUtilization");
Mathieu Chartierb43b7d42012-06-19 13:15:09 -07001083
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001084 thread_list->ResumeAll();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001085 timings.AddSplit("ResumeAll");
Elliott Hughesadb460d2011-10-05 17:02:34 -07001086
1087 EnqueueClearedReferences(&cleared_references);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001088 RequestHeapTrim();
Mathieu Chartier662618f2012-06-06 12:01:47 -07001089 timings.AddSplit("Finish");
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001090
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001091 // If the GC was slow, then print timings in the log.
1092 uint64_t duration = (NanoTime() - start_time) / 1000 * 1000;
1093 if (duration > MsToNs(50)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001094 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001095 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001096 const size_t total_memory = GetTotalMemory();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001097 LOG(INFO) << gc_type_str.str() << " "
Mathieu Chartier637e3482012-08-17 10:41:32 -07001098 << "GC freed " << PrettySize(bytes_freed) << ", " << percent_free << "% free, "
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001099 << PrettySize(current_heap_size) << "/" << PrettySize(total_memory) << ", "
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001100 << "paused " << PrettyDuration(duration);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001101 if (VLOG_IS_ON(heap)) {
1102 timings.Dump();
1103 }
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001104 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001105
Mathieu Chartier0325e622012-09-05 14:22:51 -07001106 CumulativeLogger* logger = cumulative_timings_.Get(gc_type);
1107 logger->Start();
1108 logger->AddLogger(timings);
1109 logger->End(); // Next iteration.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001110}
Mathieu Chartiera6399032012-06-11 18:49:50 -07001111
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001112void Heap::UpdateAndMarkModUnion(TimingLogger& timings, GcType gc_type) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001113 if (gc_type == kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001114 // Don't need to do anythign for mod union table in this case since we are only scanning dirty
1115 // cards.
1116 return;
1117 }
1118
1119 // Update zygote mod union table.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001120 if (gc_type == kGcTypePartial) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001121 zygote_mod_union_table_->Update();
1122 timings.AddSplit("UpdateZygoteModUnionTable");
1123
1124 zygote_mod_union_table_->MarkReferences();
1125 timings.AddSplit("ZygoteMarkReferences");
1126 }
1127
1128 // Processes the cards we cleared earlier and adds their objects into the mod-union table.
1129 mod_union_table_->Update();
1130 timings.AddSplit("UpdateModUnionTable");
1131
1132 // Scans all objects in the mod-union table.
1133 mod_union_table_->MarkReferences();
1134 timings.AddSplit("MarkImageToAllocSpaceReferences");
1135}
1136
1137void Heap::RootMatchesObjectVisitor(const Object* root, void* arg) {
1138 Object* obj = reinterpret_cast<Object*>(arg);
1139 if (root == obj) {
1140 LOG(INFO) << "Object " << obj << " is a root";
1141 }
1142}
1143
1144class ScanVisitor {
1145 public:
1146 void operator ()(const Object* obj) const {
1147 LOG(INFO) << "Would have rescanned object " << obj;
1148 }
1149};
1150
1151class VerifyReferenceVisitor {
1152 public:
1153 VerifyReferenceVisitor(Heap* heap, bool* failed)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001154 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1155 Locks::heap_bitmap_lock_)
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001156 : heap_(heap),
1157 failed_(failed) {
1158 }
1159
1160 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1161 // analysis.
1162 void operator ()(const Object* obj, const Object* ref, const MemberOffset& /* offset */,
1163 bool /* is_static */) const NO_THREAD_SAFETY_ANALYSIS {
1164 // Verify that the reference is live.
1165 if (ref != NULL && !IsLive(ref)) {
1166 CardTable* card_table = heap_->GetCardTable();
1167 MarkStack* alloc_stack = heap_->allocation_stack_.get();
1168 MarkStack* live_stack = heap_->live_stack_.get();
1169
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001170 byte* card_addr = card_table->CardFromAddr(obj);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001171 LOG(ERROR) << "Object " << obj << " references dead object " << ref << " on IsDirty = "
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001172 << (*card_addr == GC_CARD_DIRTY);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001173 LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1174 LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1175 card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001176 void* cover_begin = card_table->AddrFromCard(card_addr);
1177 void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
1178 GC_CARD_SIZE);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001179 LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001180 << "-" << cover_end;
1181 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1182
1183 // Print out how the object is live.
1184 if (bitmap->Test(obj)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001185 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1186 }
1187
1188 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), obj)) {
1189 LOG(ERROR) << "Object " << obj << " found in allocation stack";
1190 }
1191
1192 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1193 LOG(ERROR) << "Object " << obj << " found in live stack";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001194 }
1195
1196 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001197 LOG(ERROR) << "Reference " << ref << " found in live stack!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001198 }
1199
1200 // Attempt to see if the card table missed the reference.
1201 ScanVisitor scan_visitor;
1202 byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
1203 card_table->Scan(bitmap, byte_cover_begin, byte_cover_begin + GC_CARD_SIZE, scan_visitor,
1204 IdentityFunctor());
1205
1206 // Try and see if a mark sweep collector scans the reference.
1207 MarkStack* mark_stack = heap_->mark_stack_.get();
1208 MarkSweep ms(mark_stack);
1209 ms.Init();
1210 mark_stack->Reset();
1211 ms.SetFinger(reinterpret_cast<Object*>(~size_t(0)));
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001212
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001213 // All the references should end up in the mark stack.
1214 ms.ScanRoot(obj);
1215 if (std::find(mark_stack->Begin(), mark_stack->End(), ref)) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001216 LOG(ERROR) << "Ref found in the mark_stack when rescanning the object!";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001217 } else {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001218 LOG(ERROR) << "Dumping mark stack contents";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001219 for (Object** it = mark_stack->Begin(); it != mark_stack->End(); ++it) {
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001220 LOG(ERROR) << *it;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001221 }
1222 }
1223 mark_stack->Reset();
1224
1225 // Search to see if any of the roots reference our object.
1226 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
1227 Runtime::Current()->VisitRoots(&Heap::RootMatchesObjectVisitor, arg);
1228 *failed_ = true;
1229 }
1230 }
1231
1232 bool IsLive(const Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
1233 SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetSpaceBitmap(obj);
1234 if (bitmap != NULL) {
1235 if (bitmap->Test(obj)) {
1236 return true;
1237 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001238 } else if (heap_->GetLargeObjectsSpace()->GetLiveObjects()->Test(obj)) {
1239 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001240 } else {
1241 heap_->DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001242 LOG(ERROR) << "Object " << obj << " not found in any spaces";
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001243 }
1244 MarkStack* alloc_stack = heap_->allocation_stack_.get();
1245 // At this point we need to search the allocation since things in the live stack may get swept.
1246 if (std::binary_search(alloc_stack->Begin(), alloc_stack->End(), const_cast<Object*>(obj))) {
1247 return true;
1248 }
1249 // Not either in the live bitmap or allocation stack, so the object must be dead.
1250 return false;
1251 }
1252
1253 private:
1254 Heap* heap_;
1255 bool* failed_;
1256};
1257
1258class VerifyObjectVisitor {
1259 public:
1260 VerifyObjectVisitor(Heap* heap)
1261 : heap_(heap),
1262 failed_(false) {
1263
1264 }
1265
1266 void operator ()(const Object* obj) const
Ian Rogersb726dcb2012-09-05 08:57:23 -07001267 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001268 VerifyReferenceVisitor visitor(heap_, const_cast<bool*>(&failed_));
1269 MarkSweep::VisitObjectReferences(obj, visitor);
1270 }
1271
1272 bool Failed() const {
1273 return failed_;
1274 }
1275
1276 private:
1277 Heap* heap_;
1278 bool failed_;
1279};
1280
1281// Must do this with mutators suspended since we are directly accessing the allocation stacks.
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001282bool Heap::VerifyHeapReferences() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001283 Locks::mutator_lock_->AssertExclusiveHeld();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001284 // Lets sort our allocation stacks so that we can efficiently binary search them.
1285 std::sort(allocation_stack_->Begin(), allocation_stack_->End());
1286 std::sort(live_stack_->Begin(), live_stack_->End());
1287 // Perform the verification.
1288 VerifyObjectVisitor visitor(this);
1289 GetLiveBitmap()->Visit(visitor);
1290 // We don't want to verify the objects in the allocation stack since they themselves may be
1291 // pointing to dead objects if they are not reachable.
1292 if (visitor.Failed()) {
1293 DumpSpaces();
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001294 return false;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001295 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001296 return true;
1297}
1298
1299class VerifyReferenceCardVisitor {
1300 public:
1301 VerifyReferenceCardVisitor(Heap* heap, bool* failed)
1302 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
1303 Locks::heap_bitmap_lock_)
1304 : heap_(heap),
1305 failed_(failed) {
1306 }
1307
1308 // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for smarter
1309 // analysis.
1310 void operator ()(const Object* obj, const Object* ref, const MemberOffset& offset,
1311 bool is_static) const NO_THREAD_SAFETY_ANALYSIS {
1312 if (ref != NULL) {
1313 CardTable* card_table = heap_->GetCardTable();
1314 // If the object is not dirty and it is referencing something in the live stack other than
1315 // class, then it must be on a dirty card.
1316 if (!card_table->IsDirty(obj)) {
1317 MarkStack* live_stack = heap_->live_stack_.get();
1318 if (std::binary_search(live_stack->Begin(), live_stack->End(), ref) && !ref->IsClass()) {
1319 if (std::binary_search(live_stack->Begin(), live_stack->End(), obj)) {
1320 LOG(ERROR) << "Object " << obj << " found in live stack";
1321 }
1322 if (heap_->GetLiveBitmap()->Test(obj)) {
1323 LOG(ERROR) << "Object " << obj << " found in live bitmap";
1324 }
1325 LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
1326 << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
1327
1328 // Print which field of the object is dead.
1329 if (!obj->IsObjectArray()) {
1330 const Class* klass = is_static ? obj->AsClass() : obj->GetClass();
1331 CHECK(klass != NULL);
1332 const ObjectArray<Field>* fields = is_static ? klass->GetSFields() : klass->GetIFields();
1333 CHECK(fields != NULL);
1334 for (int32_t i = 0; i < fields->GetLength(); ++i) {
1335 const Field* cur = fields->Get(i);
1336 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1337 LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
1338 << PrettyField(cur);
1339 break;
1340 }
1341 }
1342 } else {
1343 const ObjectArray<Object>* object_array = obj->AsObjectArray<Object>();
1344 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
1345 if (object_array->Get(i) == ref) {
1346 LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
1347 }
1348 }
1349 }
1350
1351 *failed_ = true;
1352 }
1353 }
1354 }
1355 }
1356
1357 private:
1358 Heap* heap_;
1359 bool* failed_;
1360};
1361
1362class VerifyLiveStackReferences {
1363 public:
1364 VerifyLiveStackReferences(Heap* heap)
1365 : heap_(heap),
1366 failed_(false) {
1367
1368 }
1369
1370 void operator ()(const Object* obj) const
1371 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1372 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
1373 MarkSweep::VisitObjectReferences(obj, visitor);
1374 }
1375
1376 bool Failed() const {
1377 return failed_;
1378 }
1379
1380 private:
1381 Heap* heap_;
1382 bool failed_;
1383};
1384
1385bool Heap::VerifyMissingCardMarks() {
1386 Locks::mutator_lock_->AssertExclusiveHeld();
1387
1388 VerifyLiveStackReferences visitor(this);
1389 GetLiveBitmap()->Visit(visitor);
1390
1391 // We can verify objects in the live stack since none of these should reference dead objects.
1392 for (Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
1393 visitor(*it);
1394 }
1395
1396 if (visitor.Failed()) {
1397 DumpSpaces();
1398 return false;
1399 }
1400 return true;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001401}
1402
1403void Heap::SwapBitmaps() {
1404 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
1405 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
1406 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark bit
1407 // instead, resulting in no new allocated objects being incorrectly freed by sweep.
Ian Rogersb726dcb2012-09-05 08:57:23 -07001408 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001409 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1410 Space* space = *it;
1411 // We never allocate into zygote spaces.
1412 if (space->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1413 live_bitmap_->ReplaceBitmap(space->GetLiveBitmap(), space->GetMarkBitmap());
1414 mark_bitmap_->ReplaceBitmap(space->GetMarkBitmap(), space->GetLiveBitmap());
1415 space->AsAllocSpace()->SwapBitmaps();
1416 }
1417 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001418
1419 large_object_space_->SwapBitmaps();
1420 live_bitmap_->SetLargeObjects(large_object_space_->GetLiveObjects());
1421 mark_bitmap_->SetLargeObjects(large_object_space_->GetMarkObjects());
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001422}
1423
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001424void Heap::SwapStacks() {
1425 MarkStack* temp = allocation_stack_.release();
1426 allocation_stack_.reset(live_stack_.release());
1427 live_stack_.reset(temp);
1428
1429 // Sort the live stack so that we can quickly binary search it later.
1430 if (VERIFY_OBJECT_ENABLED) {
1431 std::sort(live_stack_->Begin(), live_stack_->End());
1432 }
1433}
1434
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001435void Heap::CollectGarbageConcurrentMarkSweepPlan(GcType gc_type, bool clear_soft_references) {
1436 TimingLogger timings("ConcurrentCollectGarbageInternal", true);
1437 uint64_t root_begin = NanoTime(), root_end = 0, dirty_begin = 0, dirty_end = 0;
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001438 std::stringstream gc_type_str;
1439 gc_type_str << gc_type << " ";
Mathieu Chartiera6399032012-06-11 18:49:50 -07001440
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 // Suspend all threads are get exclusive access to the heap.
1442 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1443 thread_list->SuspendAll();
1444 timings.AddSplit("SuspendAll");
Ian Rogersb726dcb2012-09-05 08:57:23 -07001445 Locks::mutator_lock_->AssertExclusiveHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001446
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001447 size_t bytes_freed = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001448 Object* cleared_references = NULL;
1449 {
1450 MarkSweep mark_sweep(mark_stack_.get());
1451 timings.AddSplit("ctor");
1452
1453 mark_sweep.Init();
1454 timings.AddSplit("Init");
1455
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001456 if (verify_pre_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001457 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001458 if (!VerifyHeapReferences()) {
1459 LOG(FATAL) << "Pre " << gc_type_str.str() << "Gc verification failed";
1460 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001461 timings.AddSplit("VerifyHeapReferencesPreGC");
1462 }
1463
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001464 // Swap the stacks, this is safe since all the mutators are suspended at this point.
1465 SwapStacks();
1466
1467 // Check that all objects which reference things in the live stack are on dirty cards.
1468 if (verify_missing_card_marks_) {
1469 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
1470 // Sort the live stack so that we can quickly binary search it later.
1471 std::sort(live_stack_->Begin(), live_stack_->End());
1472 if (!VerifyMissingCardMarks()) {
1473 LOG(FATAL) << "Pre GC verification of missing card marks failed";
1474 }
1475 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001476
1477 // We will need to know which cards were dirty for doing concurrent processing of dirty cards.
1478 // TODO: Investigate using a mark stack instead of a vector.
1479 std::vector<byte*> dirty_cards;
Mathieu Chartier0325e622012-09-05 14:22:51 -07001480 if (gc_type == kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001481 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1482 card_table_->GetDirtyCards(*it, dirty_cards);
1483 }
1484 }
1485
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001486 // Make sure that the tables have the correct pointer for the mark sweep.
1487 mod_union_table_->Init(&mark_sweep);
1488 zygote_mod_union_table_->Init(&mark_sweep);
1489
1490 // Clear image space cards and keep track of cards we cleared in the mod-union table.
1491 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
1492 Space* space = *it;
1493 if (space->IsImageSpace()) {
1494 mod_union_table_->ClearCards(*it);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001495 timings.AddSplit("ModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001496 } else if (space->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1497 zygote_mod_union_table_->ClearCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001498 timings.AddSplit("ZygoteModUnionClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001499 } else {
1500 card_table_->ClearSpaceCards(space);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001501 timings.AddSplit("ClearCards");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001502 }
1503 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001504
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001505 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001506 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001507
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001508 for (Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
1509 CHECK(!GetLiveBitmap()->Test(*it));
1510 }
1511
Mathieu Chartier0325e622012-09-05 14:22:51 -07001512 if (gc_type == kGcTypePartial) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001513 // Copy the mark bits over from the live bits, do this as early as possible or else we can
1514 // accidentally un-mark roots.
1515 // Needed for scanning dirty objects.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001516 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001517 if ((*it)->GetGcRetentionPolicy() == GCRP_FULL_COLLECT) {
1518 mark_sweep.CopyMarkBits(*it);
1519 }
1520 }
1521 timings.AddSplit("CopyMarkBits");
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001522 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_.front()->Begin()),
1523 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier0325e622012-09-05 14:22:51 -07001524 } else if (gc_type == kGcTypeSticky) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001525 for (Spaces::iterator it = spaces_.begin(); it != spaces_.end(); ++it) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001526 if ((*it)->GetGcRetentionPolicy() != GCRP_NEVER_COLLECT) {
1527 mark_sweep.CopyMarkBits(*it);
1528 }
1529 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001530 large_object_space_->CopyLiveToMarked();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001531 timings.AddSplit("CopyMarkBits");
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001532 mark_sweep.SetImmuneRange(reinterpret_cast<Object*>(spaces_.front()->Begin()),
1533 reinterpret_cast<Object*>(alloc_space_->Begin()));
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001534 }
1535
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001536 // Marking roots is not necessary for sticky mark bits since we only actually require the
1537 // remarking of roots.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001538 if (gc_type != kGcTypeSticky) {
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001539 mark_sweep.MarkRoots();
1540 timings.AddSplit("MarkRoots");
1541 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001542
1543 if (verify_mod_union_table_) {
1544 zygote_mod_union_table_->Update();
1545 zygote_mod_union_table_->Verify();
1546 mod_union_table_->Update();
1547 mod_union_table_->Verify();
1548 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001549 }
1550
1551 // Roots are marked on the bitmap and the mark_stack is empty.
1552 DCHECK(mark_sweep.IsMarkStackEmpty());
1553
1554 // Allow mutators to go again, acquire share on mutator_lock_ to continue.
1555 thread_list->ResumeAll();
1556 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001557 ReaderMutexLock reader_lock(*Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001558 root_end = NanoTime();
1559 timings.AddSplit("RootEnd");
1560
Ian Rogersb726dcb2012-09-05 08:57:23 -07001561 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001562 UpdateAndMarkModUnion(timings, gc_type);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001563
1564 // Mark everything as live so that sweeping system weak works correctly for sticky mark bit
1565 // GCs.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001566 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1567 live_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001568 timings.AddSplit("MarkStackAsLive");
1569
Mathieu Chartier0325e622012-09-05 14:22:51 -07001570 if (gc_type != kGcTypeSticky) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001571 // Recursively mark all the non-image bits set in the mark bitmap.
Mathieu Chartier0325e622012-09-05 14:22:51 -07001572 mark_sweep.RecursiveMark(gc_type == kGcTypePartial, timings);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001573 } else {
1574 mark_sweep.RecursiveMarkCards(card_table_.get(), dirty_cards, timings);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001575 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001576 mark_sweep.DisableFinger();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001577 }
1578 // Release share on mutator_lock_ and then get exclusive access.
1579 dirty_begin = NanoTime();
1580 thread_list->SuspendAll();
1581 timings.AddSplit("ReSuspend");
Ian Rogersb726dcb2012-09-05 08:57:23 -07001582 Locks::mutator_lock_->AssertExclusiveHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001583
1584 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001585 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001586
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001587 // Re-mark root set.
1588 mark_sweep.ReMarkRoots();
1589 timings.AddSplit("ReMarkRoots");
1590
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001591 if (verify_missing_card_marks_) {
1592 // Since verify missing card marks uses a sweep array to empty the allocation stack, we
1593 // need to make sure that we don't free weaks which wont get swept by SweepSystemWeaks.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001594 MarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1595 allocation_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001596 }
1597
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001598 // Scan dirty objects, this is only required if we are not doing concurrent GC.
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001599 mark_sweep.RecursiveMarkDirtyObjects(false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001600 timings.AddSplit("RecursiveMarkDirtyObjects");
1601 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001602
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001603 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001604 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001605
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606 mark_sweep.ProcessReferences(clear_soft_references);
1607 timings.AddSplit("ProcessReferences");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001608
1609 // This doesn't work with mutators unpaused for some reason, TODO: Fix.
1610 mark_sweep.SweepSystemWeaks(false);
1611 timings.AddSplit("SweepSystemWeaks");
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001612 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001613
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001614 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
1615 // these bitmaps. Doing this enables us to sweep with the heap unlocked since new allocations
1616 // set the live bit, but since we have the bitmaps reversed at this point, this sets the mark
1617 // bit instead, resulting in no new allocated objects being incorrectly freed by sweep.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001618 const bool swap = true;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001619 if (swap) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001620 SwapBitmaps();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001621 }
1622
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001623 // Only need to do this if we have the card mark verification on, and only during concurrent GC.
1624 if (verify_missing_card_marks_) {
1625 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
1626 mark_sweep.SweepArray(timings, allocation_stack_.get(), swap);
1627 } else {
1628 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
1629 // We only sweep over the live stack, and the live stack should not intersect with the
1630 // allocation stack, so it should be safe to UnMark anything in the allocation stack as live.
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001631 UnMarkAllocStack(alloc_space_->GetLiveBitmap(), large_object_space_->GetLiveObjects(),
1632 allocation_stack_.get());
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001633 timings.AddSplit("UnMarkAllocStack");
1634 }
1635
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001636 if (kIsDebugBuild) {
1637 // Verify that we only reach marked objects from the image space.
Ian Rogersb726dcb2012-09-05 08:57:23 -07001638 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001639 mark_sweep.VerifyImageRoots();
1640 timings.AddSplit("VerifyImageRoots");
1641 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001642
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001643 if (verify_post_gc_heap_) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001644 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001645 if (!VerifyHeapReferences()) {
1646 LOG(FATAL) << "Post " << gc_type_str.str() << "Gc verification failed";
1647 }
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001648 timings.AddSplit("VerifyHeapReferencesPostGC");
1649 }
1650
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001651 thread_list->ResumeAll();
1652 dirty_end = NanoTime();
Ian Rogersb726dcb2012-09-05 08:57:23 -07001653 Locks::mutator_lock_->AssertNotHeld();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001654
1655 {
1656 // TODO: this lock shouldn't be necessary (it's why we did the bitmap flip above).
Ian Rogersb726dcb2012-09-05 08:57:23 -07001657 WriterMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001658 if (gc_type != kGcTypeSticky) {
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001659 mark_sweep.SweepLargeObjects(swap);
1660 timings.AddSplit("SweepLargeObjects");
Mathieu Chartier0325e622012-09-05 14:22:51 -07001661 mark_sweep.Sweep(gc_type == kGcTypePartial, swap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001662 } else {
1663 mark_sweep.SweepArray(timings, live_stack_.get(), swap);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001664 timings.AddSplit("SweepArray");
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001665 }
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001666 live_stack_->Reset();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001667 timings.AddSplit("Sweep");
1668 }
1669
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001670 if (verify_system_weaks_) {
1671 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
1672 mark_sweep.VerifySystemWeaks();
1673 timings.AddSplit("VerifySystemWeaks");
1674 }
1675
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001676 cleared_references = mark_sweep.GetClearedReferences();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001677 bytes_freed = mark_sweep.GetFreedBytes();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001678 }
1679
1680 GrowForUtilization();
1681 timings.AddSplit("GrowForUtilization");
1682
1683 EnqueueClearedReferences(&cleared_references);
1684 RequestHeapTrim();
1685 timings.AddSplit("Finish");
1686
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001687 // If the GC was slow, then print timings in the log.
1688 uint64_t pause_roots = (root_end - root_begin) / 1000 * 1000;
1689 uint64_t pause_dirty = (dirty_end - dirty_begin) / 1000 * 1000;
Mathieu Chartier637e3482012-08-17 10:41:32 -07001690 uint64_t duration = (NanoTime() - root_begin) / 1000 * 1000;
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001691 if (pause_roots > MsToNs(5) || pause_dirty > MsToNs(5)) {
Mathieu Chartier637e3482012-08-17 10:41:32 -07001692 const size_t percent_free = GetPercentFree();
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001693 const size_t current_heap_size = GetUsedMemorySize();
Mathieu Chartier637e3482012-08-17 10:41:32 -07001694 const size_t total_memory = GetTotalMemory();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001695 LOG(INFO) << gc_type_str.str()
Mathieu Chartier637e3482012-08-17 10:41:32 -07001696 << "Concurrent GC freed " << PrettySize(bytes_freed) << ", " << percent_free
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001697 << "% free, " << PrettySize(current_heap_size) << "/"
Mathieu Chartier637e3482012-08-17 10:41:32 -07001698 << PrettySize(total_memory) << ", " << "paused " << PrettyDuration(pause_roots)
1699 << "+" << PrettyDuration(pause_dirty) << " total " << PrettyDuration(duration);
Mathieu Chartier0325e622012-09-05 14:22:51 -07001700 if (VLOG_IS_ON(heap)) {
1701 timings.Dump();
1702 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001703 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001704
Mathieu Chartier0325e622012-09-05 14:22:51 -07001705 CumulativeLogger* logger = cumulative_timings_.Get(gc_type);
1706 logger->Start();
1707 logger->AddLogger(timings);
1708 logger->End(); // Next iteration.
Carl Shapiro69759ea2011-07-21 18:13:35 -07001709}
1710
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001711GcType Heap::WaitForConcurrentGcToComplete() {
1712 GcType last_gc_type = kGcTypeNone;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001713 if (concurrent_gc_) {
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001714 bool do_wait;
1715 uint64_t wait_start = NanoTime();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001716 {
1717 // Check if GC is running holding gc_complete_lock_.
1718 MutexLock mu(*gc_complete_lock_);
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001719 do_wait = is_gc_running_;
Mathieu Chartiera6399032012-06-11 18:49:50 -07001720 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001721 if (do_wait) {
1722 // We must wait, change thread state then sleep on gc_complete_cond_;
1723 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForGcToComplete);
1724 {
1725 MutexLock mu(*gc_complete_lock_);
1726 while (is_gc_running_) {
1727 gc_complete_cond_->Wait(*gc_complete_lock_);
1728 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001729 last_gc_type = last_gc_type_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001730 }
1731 uint64_t wait_time = NanoTime() - wait_start;
1732 if (wait_time > MsToNs(5)) {
1733 LOG(INFO) << "WaitForConcurrentGcToComplete blocked for " << PrettyDuration(wait_time);
1734 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001735 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001736 }
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001737 return last_gc_type;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001738}
1739
Elliott Hughesc967f782012-04-16 10:23:15 -07001740void Heap::DumpForSigQuit(std::ostream& os) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001741 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(num_bytes_allocated_) << "/"
1742 << PrettySize(GetTotalMemory()) << "; " << num_objects_allocated_ << " objects\n";
Mathieu Chartier0325e622012-09-05 14:22:51 -07001743 // Dump cumulative timings.
1744 LOG(INFO) << "Dumping cumulative Gc timings";
1745 for (CumulativeTimings::iterator it = cumulative_timings_.begin();
1746 it != cumulative_timings_.end(); ++it) {
1747 it->second->Dump();
1748 }
Elliott Hughesc967f782012-04-16 10:23:15 -07001749}
1750
1751size_t Heap::GetPercentFree() {
1752 size_t total = GetTotalMemory();
1753 return 100 - static_cast<size_t>(100.0f * static_cast<float>(num_bytes_allocated_) / total);
1754}
1755
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001756void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001757 AllocSpace* alloc_space = alloc_space_;
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001758 size_t alloc_space_capacity = alloc_space->Capacity();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07001759 alloc_space_capacity -= large_object_space_->GetNumBytesAllocated();
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001760 if (max_allowed_footprint > alloc_space_capacity) {
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001761 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
1762 << PrettySize(alloc_space_capacity);
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001763 max_allowed_footprint = alloc_space_capacity;
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001764 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001765 alloc_space->SetFootprintLimit(max_allowed_footprint);
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001766}
1767
Ian Rogers3bb17a62012-01-27 23:56:44 -08001768// kHeapIdealFree is the ideal maximum free size, when we grow the heap for utilization.
Shih-wei Liao7f1caab2011-10-06 12:11:04 -07001769static const size_t kHeapIdealFree = 2 * MB;
Ian Rogers3bb17a62012-01-27 23:56:44 -08001770// kHeapMinFree guarantees that you always have at least 512 KB free, when you grow for utilization,
1771// regardless of target utilization ratio.
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001772static const size_t kHeapMinFree = kHeapIdealFree / 4;
1773
Carl Shapiro69759ea2011-07-21 18:13:35 -07001774void Heap::GrowForUtilization() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001775 size_t target_size;
1776 bool use_footprint_limit = false;
1777 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001778 // We know what our utilization is at this moment.
1779 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
1780 target_size = num_bytes_allocated_ / Heap::GetTargetHeapUtilization();
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001781
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001782 if (target_size > num_bytes_allocated_ + kHeapIdealFree) {
1783 target_size = num_bytes_allocated_ + kHeapIdealFree;
1784 } else if (target_size < num_bytes_allocated_ + kHeapMinFree) {
1785 target_size = num_bytes_allocated_ + kHeapMinFree;
1786 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001787
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001788 // Calculate when to perform the next ConcurrentGC.
Mathieu Chartier1cd9c5c2012-08-23 10:52:44 -07001789 if (GetTotalMemory() - GetUsedMemorySize() < concurrent_min_free_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001790 // Not enough free memory to perform concurrent GC.
1791 concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1792 } else {
1793 // Compute below to avoid holding both the statistics and the alloc space lock
1794 use_footprint_limit = true;
1795 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001796 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001797
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001798 if (use_footprint_limit) {
1799 size_t foot_print_limit = alloc_space_->GetFootprintLimit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001800 concurrent_start_bytes_ = foot_print_limit - concurrent_start_size_;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001801 }
Shih-wei Liao8c2f6412011-10-03 22:58:14 -07001802 SetIdealFootprint(target_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001803}
1804
jeffhaoc1160702011-10-27 15:48:45 -07001805void Heap::ClearGrowthLimit() {
jeffhaoc1160702011-10-27 15:48:45 -07001806 WaitForConcurrentGcToComplete();
jeffhaoc1160702011-10-27 15:48:45 -07001807 alloc_space_->ClearGrowthLimit();
1808}
1809
Elliott Hughesadb460d2011-10-05 17:02:34 -07001810void Heap::SetReferenceOffsets(MemberOffset reference_referent_offset,
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001811 MemberOffset reference_queue_offset,
1812 MemberOffset reference_queueNext_offset,
1813 MemberOffset reference_pendingNext_offset,
1814 MemberOffset finalizer_reference_zombie_offset) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07001815 reference_referent_offset_ = reference_referent_offset;
1816 reference_queue_offset_ = reference_queue_offset;
1817 reference_queueNext_offset_ = reference_queueNext_offset;
1818 reference_pendingNext_offset_ = reference_pendingNext_offset;
1819 finalizer_reference_zombie_offset_ = finalizer_reference_zombie_offset;
1820 CHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1821 CHECK_NE(reference_queue_offset_.Uint32Value(), 0U);
1822 CHECK_NE(reference_queueNext_offset_.Uint32Value(), 0U);
1823 CHECK_NE(reference_pendingNext_offset_.Uint32Value(), 0U);
1824 CHECK_NE(finalizer_reference_zombie_offset_.Uint32Value(), 0U);
1825}
1826
1827Object* Heap::GetReferenceReferent(Object* reference) {
1828 DCHECK(reference != NULL);
1829 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1830 return reference->GetFieldObject<Object*>(reference_referent_offset_, true);
1831}
1832
1833void Heap::ClearReferenceReferent(Object* reference) {
1834 DCHECK(reference != NULL);
1835 DCHECK_NE(reference_referent_offset_.Uint32Value(), 0U);
1836 reference->SetFieldObject(reference_referent_offset_, NULL, true);
1837}
1838
1839// Returns true if the reference object has not yet been enqueued.
1840bool Heap::IsEnqueuable(const Object* ref) {
1841 DCHECK(ref != NULL);
1842 const Object* queue = ref->GetFieldObject<Object*>(reference_queue_offset_, false);
1843 const Object* queue_next = ref->GetFieldObject<Object*>(reference_queueNext_offset_, false);
1844 return (queue != NULL) && (queue_next == NULL);
1845}
1846
1847void Heap::EnqueueReference(Object* ref, Object** cleared_reference_list) {
1848 DCHECK(ref != NULL);
1849 CHECK(ref->GetFieldObject<Object*>(reference_queue_offset_, false) != NULL);
1850 CHECK(ref->GetFieldObject<Object*>(reference_queueNext_offset_, false) == NULL);
1851 EnqueuePendingReference(ref, cleared_reference_list);
1852}
1853
1854void Heap::EnqueuePendingReference(Object* ref, Object** list) {
1855 DCHECK(ref != NULL);
1856 DCHECK(list != NULL);
1857
1858 if (*list == NULL) {
1859 ref->SetFieldObject(reference_pendingNext_offset_, ref, false);
1860 *list = ref;
1861 } else {
1862 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1863 ref->SetFieldObject(reference_pendingNext_offset_, head, false);
1864 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false);
1865 }
1866}
1867
1868Object* Heap::DequeuePendingReference(Object** list) {
1869 DCHECK(list != NULL);
1870 DCHECK(*list != NULL);
1871 Object* head = (*list)->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1872 Object* ref;
1873 if (*list == head) {
1874 ref = *list;
1875 *list = NULL;
1876 } else {
1877 Object* next = head->GetFieldObject<Object*>(reference_pendingNext_offset_, false);
1878 (*list)->SetFieldObject(reference_pendingNext_offset_, next, false);
1879 ref = head;
1880 }
1881 ref->SetFieldObject(reference_pendingNext_offset_, NULL, false);
1882 return ref;
1883}
1884
Ian Rogers5d4bdc22011-11-02 22:15:43 -07001885void Heap::AddFinalizerReference(Thread* self, Object* object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001886 ScopedObjectAccess soa(self);
Elliott Hughes77405792012-03-15 15:22:12 -07001887 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001888 args[0].SetL(object);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001889 soa.DecodeMethod(WellKnownClasses::java_lang_ref_FinalizerReference_add)->Invoke(self, NULL, args,
1890 NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001891}
1892
1893size_t Heap::GetBytesAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001894 return num_bytes_allocated_;
1895}
1896
1897size_t Heap::GetObjectsAllocated() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001898 return num_objects_allocated_;
1899}
1900
1901size_t Heap::GetConcurrentStartSize() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001902 return concurrent_start_size_;
1903}
1904
1905size_t Heap::GetConcurrentMinFree() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001906 return concurrent_min_free_;
Elliott Hughesadb460d2011-10-05 17:02:34 -07001907}
1908
1909void Heap::EnqueueClearedReferences(Object** cleared) {
1910 DCHECK(cleared != NULL);
1911 if (*cleared != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001912 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes77405792012-03-15 15:22:12 -07001913 JValue args[1];
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001914 args[0].SetL(*cleared);
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001915 soa.DecodeMethod(WellKnownClasses::java_lang_ref_ReferenceQueue_add)->Invoke(soa.Self(), NULL,
1916 args, NULL);
Elliott Hughesadb460d2011-10-05 17:02:34 -07001917 *cleared = NULL;
1918 }
1919}
1920
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001921void Heap::RequestConcurrentGC() {
Mathieu Chartier069387a2012-06-18 12:01:01 -07001922 // Make sure that we can do a concurrent GC.
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001923 if (requesting_gc_ || !Runtime::Current()->IsFinishedStarting() ||
1924 Runtime::Current()->IsShuttingDown() || !Runtime::Current()->IsConcurrentGcEnabled()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001925 return;
1926 }
1927
1928 requesting_gc_ = true;
1929 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001930 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1931 DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001932 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1933 WellKnownClasses::java_lang_Daemons_requestGC);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001934 CHECK(!env->ExceptionCheck());
1935 requesting_gc_ = false;
1936}
1937
1938void Heap::ConcurrentGC() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001939 if (Runtime::Current()->IsShuttingDown() || !concurrent_gc_) {
Mathieu Chartier2542d662012-06-21 17:14:11 -07001940 return;
1941 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001942
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001943 // TODO: We shouldn't need a WaitForConcurrentGcToComplete here since only
1944 // concurrent GC resumes threads before the GC is completed and this function
1945 // is only called within the GC daemon thread.
Mathieu Chartier866fb2a2012-09-10 10:47:49 -07001946 if (WaitForConcurrentGcToComplete() == kGcTypeNone) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001947 // Start a concurrent GC as one wasn't in progress
1948 ScopedThreadStateChange tsc(Thread::Current(), kWaitingPerformingGc);
Mathieu Chartierc7b83a02012-09-11 18:07:39 -07001949 if (alloc_space_->Size() > min_alloc_space_size_for_sticky_gc_) {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001950 CollectGarbageInternal(kGcTypeSticky, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001951 } else {
Mathieu Chartier0325e622012-09-05 14:22:51 -07001952 CollectGarbageInternal(kGcTypePartial, false);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001953 }
Mathieu Chartiercc236d72012-07-20 10:29:05 -07001954 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001955}
1956
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001957void Heap::Trim() {
Mathieu Chartiera6399032012-06-11 18:49:50 -07001958 WaitForConcurrentGcToComplete();
Mathieu Chartierfd678be2012-08-30 14:50:54 -07001959 alloc_space_->Trim();
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001960}
1961
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001962void Heap::RequestHeapTrim() {
1963 // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
1964 // because that only marks object heads, so a large array looks like lots of empty space. We
1965 // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
1966 // to utilization (which is probably inversely proportional to how much benefit we can expect).
1967 // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
1968 // not how much use we're making of those pages.
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001969 uint64_t ms_time = NsToMs(NanoTime());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001970 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001971 float utilization = static_cast<float>(num_bytes_allocated_) / alloc_space_->Size();
1972 if ((utilization > 0.75f) || ((ms_time - last_trim_time_) < 2 * 1000)) {
1973 // Don't bother trimming the heap if it's more than 75% utilized, or if a
1974 // heap trim occurred in the last two seconds.
1975 return;
1976 }
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001977 }
Mathieu Chartiera6399032012-06-11 18:49:50 -07001978 if (!Runtime::Current()->IsFinishedStarting() || Runtime::Current()->IsShuttingDown()) {
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001979 // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
Mathieu Chartiera6399032012-06-11 18:49:50 -07001980 // Also: we do not wish to start a heap trim if the runtime is shutting down.
Ian Rogerse1d490c2012-02-03 09:09:07 -08001981 return;
1982 }
Mathieu Chartier7664f5c2012-06-08 18:15:32 -07001983 last_trim_time_ = ms_time;
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001984 JNIEnv* env = Thread::Current()->GetJniEnv();
Mathieu Chartiera6399032012-06-11 18:49:50 -07001985 DCHECK(WellKnownClasses::java_lang_Daemons != NULL);
1986 DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001987 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
1988 WellKnownClasses::java_lang_Daemons_requestHeapTrim);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -08001989 CHECK(!env->ExceptionCheck());
1990}
1991
Carl Shapiro69759ea2011-07-21 18:13:35 -07001992} // namespace art