blob: 7369804541d4425ad4240967766e1f125bded36a [file] [log] [blame]
Carl Shapiro69759ea2011-07-21 18:13:35 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro69759ea2011-07-21 18:13:35 -07002
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "heap.h"
Carl Shapiro58551df2011-07-24 03:09:51 -07004
5#include <vector>
6
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07007#include "image.h"
Carl Shapiro58551df2011-07-24 03:09:51 -07008#include "mark_sweep.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07009#include "object.h"
10#include "space.h"
Carl Shapirofc322c72011-07-27 00:20:01 -070011#include "scoped_ptr.h"
Carl Shapiro58551df2011-07-24 03:09:51 -070012#include "stl_util.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070013
14namespace art {
15
Carl Shapiro58551df2011-07-24 03:09:51 -070016std::vector<Space*> Heap::spaces_;
Carl Shapiro69759ea2011-07-21 18:13:35 -070017
Brian Carlstroma663ea52011-08-19 23:33:41 -070018Space* Heap::boot_space_ = NULL;
19
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070020Space* Heap::alloc_space_ = NULL;
Carl Shapiro69759ea2011-07-21 18:13:35 -070021
22size_t Heap::maximum_size_ = 0;
23
Carl Shapiro58551df2011-07-24 03:09:51 -070024size_t Heap::num_bytes_allocated_ = 0;
25
26size_t Heap::num_objects_allocated_ = 0;
27
Carl Shapiro69759ea2011-07-21 18:13:35 -070028bool Heap::is_gc_running_ = false;
29
30HeapBitmap* Heap::mark_bitmap_ = NULL;
31
32HeapBitmap* Heap::live_bitmap_ = NULL;
33
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070034bool Heap::Init(size_t initial_size, size_t maximum_size, const char* boot_image_file_name) {
35 Space* boot_space;
36 byte* requested_base;
37 if (boot_image_file_name == NULL) {
38 boot_space = NULL;
39 requested_base = NULL;
40 } else {
41 boot_space = Space::Create(boot_image_file_name);
42 if (boot_space == NULL) {
43 return false;
44 }
45 spaces_.push_back(boot_space);
46 requested_base = boot_space->GetBase() + RoundUp(boot_space->Size(), kPageSize);
47 }
48
49 Space* space = Space::Create(initial_size, maximum_size, requested_base);
Carl Shapiro58551df2011-07-24 03:09:51 -070050 if (space == NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -070051 return false;
52 }
53
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070054 if (boot_space == NULL) {
55 boot_space = space;
56 }
57 byte* base = std::min(boot_space->GetBase(), space->GetBase());
58 byte* limit = std::max(boot_space->GetLimit(), space->GetLimit());
59 DCHECK_LT(base, limit);
60 size_t num_bytes = limit - base;
Carl Shapiro69759ea2011-07-21 18:13:35 -070061
62 // Allocate the initial live bitmap.
63 scoped_ptr<HeapBitmap> live_bitmap(HeapBitmap::Create(base, num_bytes));
64 if (live_bitmap == NULL) {
65 return false;
66 }
67
68 // Allocate the initial mark bitmap.
69 scoped_ptr<HeapBitmap> mark_bitmap(HeapBitmap::Create(base, num_bytes));
70 if (mark_bitmap == NULL) {
71 return false;
72 }
73
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070074 alloc_space_ = space;
Carl Shapiro58551df2011-07-24 03:09:51 -070075 spaces_.push_back(space);
Carl Shapiro69759ea2011-07-21 18:13:35 -070076 maximum_size_ = maximum_size;
77 live_bitmap_ = live_bitmap.release();
78 mark_bitmap_ = mark_bitmap.release();
79
80 // TODO: allocate the card table
81
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070082 // Make objects in boot_space live (after live_bitmap_ is set)
83 if (boot_image_file_name != NULL) {
Brian Carlstroma663ea52011-08-19 23:33:41 -070084 boot_space_ = boot_space;
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070085 RecordImageAllocations(boot_space);
86 }
87
Carl Shapiro69759ea2011-07-21 18:13:35 -070088 return true;
89}
90
91void Heap::Destroy() {
Carl Shapiro58551df2011-07-24 03:09:51 -070092 STLDeleteElements(&spaces_);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070093 if (mark_bitmap_ != NULL) {
94 delete mark_bitmap_;
95 mark_bitmap_ = NULL;
96 }
97 if (live_bitmap_ != NULL) {
98 delete live_bitmap_;
99 }
100 live_bitmap_ = NULL;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700101}
102
Carl Shapiro58551df2011-07-24 03:09:51 -0700103Object* Heap::AllocObject(Class* klass, size_t num_bytes) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700104 DCHECK(klass == NULL
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700105 || klass->descriptor_ == NULL
106 || (klass->object_size_ == (klass->IsArray() ? 0 : num_bytes)));
Carl Shapiro58551df2011-07-24 03:09:51 -0700107 Object* obj = Allocate(num_bytes);
108 if (obj != NULL) {
109 obj->klass_ = klass;
110 }
111 return obj;
112}
113
114void Heap::RecordAllocation(Space* space, const Object* obj) {
115 size_t size = space->AllocationSize(obj);
116 DCHECK_NE(size, 0u);
117 num_bytes_allocated_ += size;
118 num_objects_allocated_ += 1;
119 live_bitmap_->Set(obj);
120}
121
122void Heap::RecordFree(Space* space, const Object* obj) {
123 size_t size = space->AllocationSize(obj);
124 DCHECK_NE(size, 0u);
125 if (size < num_bytes_allocated_) {
126 num_bytes_allocated_ -= size;
127 } else {
128 num_bytes_allocated_ = 0;
129 }
130 live_bitmap_->Clear(obj);
131 if (num_objects_allocated_ > 0) {
132 num_objects_allocated_ -= 1;
133 }
134}
135
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700136void Heap::RecordImageAllocations(Space* space) {
137 CHECK(space != NULL);
138 CHECK(live_bitmap_ != NULL);
139 byte* current = space->GetBase() + RoundUp(sizeof(ImageHeader), 8);
140 while (current < space->GetLimit()) {
141 DCHECK(IsAligned(current, 8));
142 const Object* obj = reinterpret_cast<const Object*>(current);
143 live_bitmap_->Set(obj);
144 current += RoundUp(obj->SizeOf(), 8);
145 }
146}
147
Carl Shapiro69759ea2011-07-21 18:13:35 -0700148Object* Heap::Allocate(size_t size) {
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700149 DCHECK(alloc_space_ != NULL);
150 Space* space = alloc_space_;
Carl Shapiro58551df2011-07-24 03:09:51 -0700151 Object* obj = Allocate(space, size);
152 if (obj != NULL) {
153 RecordAllocation(space, obj);
154 }
155 return obj;
156}
157
158Object* Heap::Allocate(Space* space, size_t size) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700159 // Fail impossible allocations. TODO: collect soft references.
160 if (size > maximum_size_) {
161 return NULL;
162 }
163
Carl Shapiro58551df2011-07-24 03:09:51 -0700164 Object* ptr = space->AllocWithoutGrowth(size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700165 if (ptr != NULL) {
166 return ptr;
167 }
168
169 // The allocation failed. If the GC is running, block until it
170 // completes and retry.
171 if (is_gc_running_) {
172 // The GC is concurrently tracing the heap. Release the heap
173 // lock, wait for the GC to complete, and retrying allocating.
174 WaitForConcurrentGcToComplete();
Carl Shapiro58551df2011-07-24 03:09:51 -0700175 ptr = space->AllocWithoutGrowth(size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700176 if (ptr != NULL) {
177 return ptr;
178 }
179 }
180
181 // Another failure. Our thread was starved or there may be too many
182 // live objects. Try a foreground GC. This will have no effect if
183 // the concurrent GC is already running.
Carl Shapiro58551df2011-07-24 03:09:51 -0700184 CollectGarbageInternal();
185 ptr = space->AllocWithoutGrowth(size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700186 if (ptr != NULL) {
187 return ptr;
188 }
189
190 // Even that didn't work; this is an exceptional state.
191 // Try harder, growing the heap if necessary.
Carl Shapiro58551df2011-07-24 03:09:51 -0700192 ptr = space->AllocWithGrowth(size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700193 if (ptr != NULL) {
194 //size_t new_footprint = dvmHeapSourceGetIdealFootprint();
Carl Shapiro58551df2011-07-24 03:09:51 -0700195 size_t new_footprint = space->MaxAllowedFootprint();
196 // TODO: may want to grow a little bit more so that the amount of
197 // free space is equal to the old free space + the
198 // utilization slop for the new allocation.
199 LOG(INFO) << "Grow heap (frag case) to " << new_footprint / MB
Carl Shapiro69759ea2011-07-21 18:13:35 -0700200 << "for " << size << "-byte allocation";
201 return ptr;
202 }
203
204 // Most allocations should have succeeded by now, so the heap is
205 // really full, really fragmented, or the requested size is really
206 // big. Do another GC, collecting SoftReferences this time. The VM
207 // spec requires that all SoftReferences have been collected and
208 // cleared before throwing an OOME.
209
Carl Shapiro58551df2011-07-24 03:09:51 -0700210 // TODO: wait for the finalizers from the previous GC to finish
Carl Shapiro69759ea2011-07-21 18:13:35 -0700211 LOG(INFO) << "Forcing collection of SoftReferences for "
212 << size << "-byte allocation";
Carl Shapiro58551df2011-07-24 03:09:51 -0700213 CollectGarbageInternal();
214 ptr = space->AllocWithGrowth(size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700215 if (ptr != NULL) {
216 return ptr;
217 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700218
Carl Shapiro69759ea2011-07-21 18:13:35 -0700219 LOG(ERROR) << "Out of memory on a " << size << " byte allocation";
220
Carl Shapiro58551df2011-07-24 03:09:51 -0700221 // TODO: tell the HeapSource to dump its state
222 // TODO: dump stack traces for all threads
Carl Shapiro69759ea2011-07-21 18:13:35 -0700223
Carl Shapiro69759ea2011-07-21 18:13:35 -0700224 return NULL;
225}
226
Carl Shapiro69759ea2011-07-21 18:13:35 -0700227void Heap::CollectGarbage() {
Carl Shapiro58551df2011-07-24 03:09:51 -0700228 CollectGarbageInternal();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700229}
230
231void Heap::CollectGarbageInternal() {
Carl Shapiro58551df2011-07-24 03:09:51 -0700232 // TODO: check that heap lock is held
233
234 // TODO: Suspend all threads
235 {
236 MarkSweep mark_sweep;
237
238 mark_sweep.Init();
239
240 mark_sweep.MarkRoots();
241
242 // Push marked roots onto the mark stack
243
244 // TODO: if concurrent
245 // unlock heap
246 // resume threads
247
248 mark_sweep.RecursiveMark();
249
250 // TODO: if concurrent
251 // lock heap
252 // suspend threads
253 // re-mark root set
254 // scan dirty objects
255
256 mark_sweep.ProcessReferences(false);
257
258 // TODO: swap bitmaps
259
260 mark_sweep.Sweep();
261 }
262
263 GrowForUtilization();
264
265 // TODO: Resume all threads
Carl Shapiro69759ea2011-07-21 18:13:35 -0700266}
267
268void Heap::WaitForConcurrentGcToComplete() {
269}
270
271// Given the current contents of the active heap, increase the allowed
272// heap footprint to match the target utilization ratio. This should
273// only be called immediately after a full garbage collection.
274void Heap::GrowForUtilization() {
Elliott Hughes53b61312011-08-12 18:28:20 -0700275 UNIMPLEMENTED(ERROR);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700276}
277
278} // namespace art