blob: 19e9e5c952299b5c6867a19e8b36a2e0a06a1555 [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 "space.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070018
Elliott Hughes90a33692011-08-30 13:27:07 -070019#include "UniquePtr.h"
Ian Rogers30fab402012-01-23 15:43:46 -080020#include "dlmalloc.h"
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070021#include "file.h"
22#include "image.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070023#include "logging.h"
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070024#include "os.h"
Mathieu Chartiercc236d72012-07-20 10:29:05 -070025#include "space_bitmap.h"
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070026#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "utils.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070028
29namespace art {
30
Ian Rogers30fab402012-01-23 15:43:46 -080031#ifndef NDEBUG
32#define DEBUG_SPACES 1
33#endif
34
35#define CHECK_MEMORY_CALL(call, args, what) \
36 do { \
37 int rc = call args; \
38 if (UNLIKELY(rc != 0)) { \
39 errno = rc; \
40 PLOG(FATAL) << # call << " failed for " << what; \
41 } \
42 } while (false)
43
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070044size_t AllocSpace::bitmap_index_ = 0;
45
Mathieu Chartiercc236d72012-07-20 10:29:05 -070046AllocSpace::AllocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin, byte* end,
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070047 size_t growth_limit)
Ian Rogers15bf2d32012-08-28 17:33:04 -070048 : Space(name, mem_map, begin, end, GCRP_ALWAYS_COLLECT),
49 lock_("allocation space lock", kAllocSpaceLock), mspace_(mspace),
50 growth_limit_(growth_limit) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070051 CHECK(mspace != NULL);
52
53 size_t bitmap_index = bitmap_index_++;
54
Mathieu Chartiercc236d72012-07-20 10:29:05 -070055 DCHECK(reinterpret_cast<uintptr_t>(mem_map->Begin()) % static_cast<uintptr_t>GC_CARD_SIZE == 0);
56 DCHECK(reinterpret_cast<uintptr_t>(mem_map->End()) % static_cast<uintptr_t>GC_CARD_SIZE == 0);
57
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070058 live_bitmap_.reset(SpaceBitmap::Create(
59 StringPrintf("allocspace-%s-live-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
60 Begin(), Capacity()));
61 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace live bitmap #" << bitmap_index;
62
63 mark_bitmap_.reset(SpaceBitmap::Create(
64 StringPrintf("allocspace-%s-mark-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
65 Begin(), Capacity()));
66 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace mark bitmap #" << bitmap_index;
67}
68
Ian Rogers30fab402012-01-23 15:43:46 -080069AllocSpace* Space::CreateAllocSpace(const std::string& name, size_t initial_size,
70 size_t growth_limit, size_t capacity,
71 byte* requested_begin) {
Ian Rogers3bb17a62012-01-27 23:56:44 -080072 // Memory we promise to dlmalloc before it asks for morecore.
73 // Note: making this value large means that large allocations are unlikely to succeed as dlmalloc
74 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
75 // size of the large allocation) will be greater than the footprint limit.
76 size_t starting_size = kPageSize;
Ian Rogers30fab402012-01-23 15:43:46 -080077 uint64_t start_time = 0;
78 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
79 start_time = NanoTime();
80 VLOG(startup) << "Space::CreateAllocSpace entering " << name
Ian Rogers3bb17a62012-01-27 23:56:44 -080081 << " initial_size=" << PrettySize(initial_size)
82 << " growth_limit=" << PrettySize(growth_limit)
83 << " capacity=" << PrettySize(capacity)
Ian Rogers30fab402012-01-23 15:43:46 -080084 << " requested_begin=" << reinterpret_cast<void*>(requested_begin);
Carl Shapiro69759ea2011-07-21 18:13:35 -070085 }
Ian Rogers30fab402012-01-23 15:43:46 -080086
87 // Sanity check arguments
Ian Rogers3bb17a62012-01-27 23:56:44 -080088 if (starting_size > initial_size) {
89 initial_size = starting_size;
90 }
Ian Rogers30fab402012-01-23 15:43:46 -080091 if (initial_size > growth_limit) {
92 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the initial size ("
Ian Rogers3bb17a62012-01-27 23:56:44 -080093 << PrettySize(initial_size) << ") is larger than its capacity ("
94 << PrettySize(growth_limit) << ")";
Ian Rogers30fab402012-01-23 15:43:46 -080095 return NULL;
96 }
97 if (growth_limit > capacity) {
Ian Rogers3bb17a62012-01-27 23:56:44 -080098 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the growth limit capacity ("
99 << PrettySize(growth_limit) << ") is larger than the capacity ("
100 << PrettySize(capacity) << ")";
Ian Rogers30fab402012-01-23 15:43:46 -0800101 return NULL;
102 }
103
104 // Page align growth limit and capacity which will be used to manage mmapped storage
105 growth_limit = RoundUp(growth_limit, kPageSize);
106 capacity = RoundUp(capacity, kPageSize);
107
108 UniquePtr<MemMap> mem_map(MemMap::MapAnonymous(name.c_str(), requested_begin,
109 capacity, PROT_READ | PROT_WRITE));
110 if (mem_map.get() == NULL) {
111 LOG(ERROR) << "Failed to allocate pages for alloc space (" << name << ") of size "
Ian Rogers3bb17a62012-01-27 23:56:44 -0800112 << PrettySize(capacity);
Ian Rogers30fab402012-01-23 15:43:46 -0800113 return NULL;
114 }
115
Ian Rogers3bb17a62012-01-27 23:56:44 -0800116 void* mspace = AllocSpace::CreateMallocSpace(mem_map->Begin(), starting_size, initial_size);
Ian Rogers30fab402012-01-23 15:43:46 -0800117 if (mspace == NULL) {
118 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
119 return NULL;
120 }
121
Ian Rogers3bb17a62012-01-27 23:56:44 -0800122 // Protect memory beyond the initial size.
123 byte* end = mem_map->Begin() + starting_size;
Ian Rogers30fab402012-01-23 15:43:46 -0800124 if (capacity - initial_size > 0) {
125 CHECK_MEMORY_CALL(mprotect, (end, capacity - initial_size, PROT_NONE), name);
126 }
127
128 // Everything is set so record in immutable structure and leave
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700129 MemMap* mem_map_ptr = mem_map.release();
130 AllocSpace* space = new AllocSpace(name, mem_map_ptr, mspace, mem_map_ptr->Begin(), end, growth_limit);
Ian Rogers30fab402012-01-23 15:43:46 -0800131 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800132 LOG(INFO) << "Space::CreateAllocSpace exiting (" << PrettyDuration(NanoTime() - start_time)
133 << " ) " << *space;
Ian Rogers30fab402012-01-23 15:43:46 -0800134 }
135 return space;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700136}
137
Ian Rogers3bb17a62012-01-27 23:56:44 -0800138void* AllocSpace::CreateMallocSpace(void* begin, size_t morecore_start, size_t initial_size) {
Ian Rogers30fab402012-01-23 15:43:46 -0800139 // clear errno to allow PLOG on error
Carl Shapiro69759ea2011-07-21 18:13:35 -0700140 errno = 0;
Ian Rogers3bb17a62012-01-27 23:56:44 -0800141 // create mspace using our backing storage starting at begin and with a footprint of
142 // morecore_start. Don't use an internal dlmalloc lock (as we already hold heap lock). When
143 // morecore_start bytes of memory is exhaused morecore will be called.
144 void* msp = create_mspace_with_base(begin, morecore_start, false /*locked*/);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700145 if (msp != NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800146 // Do not allow morecore requests to succeed beyond the initial size of the heap
Ian Rogers3bb17a62012-01-27 23:56:44 -0800147 mspace_set_footprint_limit(msp, initial_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700148 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800149 PLOG(ERROR) << "create_mspace_with_base failed";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700150 }
151 return msp;
152}
153
Mathieu Chartier654d3a22012-07-11 17:54:18 -0700154void AllocSpace::SwapBitmaps() {
155 SpaceBitmap* temp_live_bitmap = live_bitmap_.release();
156 live_bitmap_.reset(mark_bitmap_.release());
157 mark_bitmap_.reset(temp_live_bitmap);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700158 // Swap names to get more descriptive diagnostics.
159 std::string temp_name = live_bitmap_->GetName();
160 live_bitmap_->SetName(mark_bitmap_->GetName());
161 mark_bitmap_->SetName(temp_name);
Mathieu Chartier654d3a22012-07-11 17:54:18 -0700162}
163
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700164Object* AllocSpace::AllocWithoutGrowthLocked(size_t num_bytes) {
Ian Rogers30fab402012-01-23 15:43:46 -0800165 Object* result = reinterpret_cast<Object*>(mspace_calloc(mspace_, 1, num_bytes));
166#if DEBUG_SPACES
167 if (result != NULL) {
168 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700169 << ") not in bounds of allocation space " << *this;
jeffhaoc1160702011-10-27 15:48:45 -0700170 }
Ian Rogers30fab402012-01-23 15:43:46 -0800171#endif
172 return result;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700173}
174
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700175Object* AllocSpace::AllocWithoutGrowth(size_t num_bytes) {
176 MutexLock mu(lock_);
177 return AllocWithoutGrowthLocked(num_bytes);
178}
179
Ian Rogers30fab402012-01-23 15:43:46 -0800180Object* AllocSpace::AllocWithGrowth(size_t num_bytes) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700181 MutexLock mu(lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800182 // Grow as much as possible within the mspace.
183 size_t max_allowed = Capacity();
184 mspace_set_footprint_limit(mspace_, max_allowed);
185 // Try the allocation.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700186 void* ptr = AllocWithoutGrowthLocked(num_bytes);
Ian Rogers30fab402012-01-23 15:43:46 -0800187 // Shrink back down as small as possible.
188 size_t footprint = mspace_footprint(mspace_);
189 mspace_set_footprint_limit(mspace_, footprint);
190 // Return the new allocation or NULL.
191 Object* result = reinterpret_cast<Object*>(ptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700192#if DEBUG_SPACES
Ian Rogers30fab402012-01-23 15:43:46 -0800193 CHECK(result == NULL || Contains(result));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700194#endif
Ian Rogers30fab402012-01-23 15:43:46 -0800195 return result;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700196}
197
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700198void AllocSpace::SetGrowthLimit(size_t growth_limit) {
199 growth_limit = RoundUp(growth_limit, kPageSize);
200 growth_limit_ = growth_limit;
201 if (Size() > growth_limit_) {
202 end_ = begin_ + growth_limit;
203 }
204}
205
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700206AllocSpace* AllocSpace::CreateZygoteSpace() {
207 end_ = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(end_), kPageSize));
208 DCHECK(IsAligned<GC_CARD_SIZE>(begin_));
209 DCHECK(IsAligned<GC_CARD_SIZE>(end_));
210 DCHECK(IsAligned<kPageSize>(begin_));
211 DCHECK(IsAligned<kPageSize>(end_));
212 size_t size = RoundUp(Size(), kPageSize);
213 // Trim the heap so that we minimize the size of the Zygote space.
214 Trim();
215 // Trim our mem-map to free unused pages.
216 mem_map_->UnMapAtEnd(end_);
217 // TODO: Not hardcode these in?
218 const size_t starting_size = kPageSize;
219 const size_t initial_size = 2 * MB;
220 // Remaining size is for the new alloc space.
221 const size_t growth_limit = growth_limit_ - size;
222 const size_t capacity = Capacity() - size;
223 VLOG(heap) << "Begin " << reinterpret_cast<const void*>(begin_);
224 VLOG(heap) << "End " << reinterpret_cast<const void*>(end_);
225 VLOG(heap) << "Size " << size;
226 VLOG(heap) << "GrowthLimit " << growth_limit_;
227 VLOG(heap) << "Capacity " << Capacity();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700228 SetGrowthLimit(RoundUp(size, kPageSize));
229 SetFootprintLimit(RoundUp(size, kPageSize));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700230 // FIXME: Do we need reference counted pointers here?
231 // Make the two spaces share the same mark bitmaps since the bitmaps span both of the spaces.
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700232 VLOG(heap) << "Creating new AllocSpace: ";
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700233 VLOG(heap) << "Size " << mem_map_->Size();
234 VLOG(heap) << "GrowthLimit " << PrettySize(growth_limit);
235 VLOG(heap) << "Capacity " << PrettySize(capacity);
236 UniquePtr<MemMap> mem_map(MemMap::MapAnonymous(name_.c_str(), end_, capacity, PROT_READ | PROT_WRITE));
237 void* mspace = CreateMallocSpace(end_, starting_size, initial_size);
238 // Protect memory beyond the initial size.
239 byte* end = mem_map->Begin() + starting_size;
240 if (capacity - initial_size > 0) {
241 CHECK_MEMORY_CALL(mprotect, (end, capacity - initial_size, PROT_NONE), name_.c_str());
242 }
243 AllocSpace* alloc_space = new AllocSpace(name_, mem_map.release(), mspace, end_, end, growth_limit);
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700244 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(end_));
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700245 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(end_));
Mathieu Chartierdcf8d722012-08-02 14:55:54 -0700246 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(end_));
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700247 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(end_));
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700248 name_ += "-zygote-transformed";
249 VLOG(heap) << "zygote space creation done";
250 return alloc_space;
251}
252
Ian Rogers30fab402012-01-23 15:43:46 -0800253void AllocSpace::Free(Object* ptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700254 MutexLock mu(lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800255#if DEBUG_SPACES
256 CHECK(ptr != NULL);
257 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
258#endif
259 mspace_free(mspace_, ptr);
260}
261
262void AllocSpace::FreeList(size_t num_ptrs, Object** ptrs) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700263 MutexLock mu(lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800264#if DEBUG_SPACES
265 CHECK(ptrs != NULL);
266 size_t num_broken_ptrs = 0;
267 for (size_t i = 0; i < num_ptrs; i++) {
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700268 if (!Contains(ptrs[i])) {
Ian Rogers30fab402012-01-23 15:43:46 -0800269 num_broken_ptrs++;
270 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
Mathieu Chartier0325e622012-09-05 14:22:51 -0700271 } else {
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700272 size_t size = mspace_usable_size(ptrs[i]);
273 memset(ptrs[i], 0xEF, size);
Ian Rogers30fab402012-01-23 15:43:46 -0800274 }
275 }
276 CHECK_EQ(num_broken_ptrs, 0u);
277#endif
278 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs);
279}
280
281// Callback from dlmalloc when it needs to increase the footprint
282extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800283 Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700284 DCHECK_EQ(heap->GetAllocSpace()->GetMspace(), mspace);
285 return heap->GetAllocSpace()->MoreCore(increment);
Ian Rogers30fab402012-01-23 15:43:46 -0800286}
287
288void* AllocSpace::MoreCore(intptr_t increment) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700289 lock_.AssertHeld();
Ian Rogers30fab402012-01-23 15:43:46 -0800290 byte* original_end = end_;
291 if (increment != 0) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800292 VLOG(heap) << "AllocSpace::MoreCore " << PrettySize(increment);
Ian Rogers30fab402012-01-23 15:43:46 -0800293 byte* new_end = original_end + increment;
294 if (increment > 0) {
295#if DEBUG_SPACES
296 // Should never be asked to increase the allocation beyond the capacity of the space. Enforced
297 // by mspace_set_footprint_limit.
298 CHECK_LE(new_end, Begin() + Capacity());
299#endif
300 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetSpaceName());
301 } else {
302#if DEBUG_SPACES
303 // Should never be asked for negative footprint (ie before begin)
304 CHECK_GT(original_end + increment, Begin());
305#endif
306 // Advise we don't need the pages and protect them
Ian Rogers3bb17a62012-01-27 23:56:44 -0800307 // TODO: by removing permissions to the pages we may be causing TLB shoot-down which can be
308 // expensive (note the same isn't true for giving permissions to a page as the protected
309 // page shouldn't be in a TLB). We should investigate performance impact of just
310 // removing ignoring the memory protection change here and in Space::CreateAllocSpace. It's
311 // likely just a useful debug feature.
Ian Rogers30fab402012-01-23 15:43:46 -0800312 size_t size = -increment;
313 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetSpaceName());
314 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetSpaceName());
315 }
316 // Update end_
317 end_ = new_end;
318 }
319 return original_end;
320}
321
322size_t AllocSpace::AllocationSize(const Object* obj) {
323 return mspace_usable_size(const_cast<void*>(reinterpret_cast<const void*>(obj))) + kChunkOverhead;
324}
325
Brian Carlstromb18e77a2012-08-21 14:20:03 -0700326void MspaceMadviseCallback(void* start, void* end, size_t used_bytes, void* /* arg */) {
327 // Is this chunk in use?
328 if (used_bytes != 0) {
329 return;
330 }
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700331 // Do we have any whole pages to give back?
332 start = reinterpret_cast<void*>(RoundUp(reinterpret_cast<uintptr_t>(start), kPageSize));
333 end = reinterpret_cast<void*>(RoundDown(reinterpret_cast<uintptr_t>(end), kPageSize));
334 if (end > start) {
335 size_t length = reinterpret_cast<byte*>(end) - reinterpret_cast<byte*>(start);
336 CHECK_MEMORY_CALL(madvise, (start, length, MADV_DONTNEED), "trim");
Ian Rogers30fab402012-01-23 15:43:46 -0800337 }
338}
339
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700340void AllocSpace::Trim() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700341 MutexLock mu(lock_);
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700342 // Trim to release memory at the end of the space.
343 mspace_trim(mspace_, 0);
344 // Visit space looking for page-sized holes to advise the kernel we don't need.
345 mspace_inspect_all(mspace_, MspaceMadviseCallback, NULL);
346}
Ian Rogers30fab402012-01-23 15:43:46 -0800347
348void AllocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
349 void* arg) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700350 MutexLock mu(lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800351 mspace_inspect_all(mspace_, callback, arg);
Ian Rogers15bf2d32012-08-28 17:33:04 -0700352 callback(NULL, NULL, 0, arg); // Indicate end of a space.
Ian Rogers30fab402012-01-23 15:43:46 -0800353}
354
355size_t AllocSpace::GetFootprintLimit() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700356 MutexLock mu(lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800357 return mspace_footprint_limit(mspace_);
358}
359
360void AllocSpace::SetFootprintLimit(size_t new_size) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700361 MutexLock mu(lock_);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800362 VLOG(heap) << "AllocSpace::SetFootprintLimit " << PrettySize(new_size);
Ian Rogers30fab402012-01-23 15:43:46 -0800363 // Compare against the actual footprint, rather than the Size(), because the heap may not have
364 // grown all the way to the allowed size yet.
Ian Rogers30fab402012-01-23 15:43:46 -0800365 size_t current_space_size = mspace_footprint(mspace_);
366 if (new_size < current_space_size) {
367 // Don't let the space grow any more.
368 new_size = current_space_size;
369 }
370 mspace_set_footprint_limit(mspace_, new_size);
371}
372
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700373size_t ImageSpace::bitmap_index_ = 0;
374
375ImageSpace::ImageSpace(const std::string& name, MemMap* mem_map)
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700376 : Space(name, mem_map, mem_map->Begin(), mem_map->End(), GCRP_NEVER_COLLECT) {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700377 const size_t bitmap_index = bitmap_index_++;
378 live_bitmap_.reset(SpaceBitmap::Create(
379 StringPrintf("imagespace-%s-live-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
380 Begin(), Capacity()));
381 DCHECK(live_bitmap_.get() != NULL) << "could not create imagespace live bitmap #" << bitmap_index;
382}
383
Ian Rogers30fab402012-01-23 15:43:46 -0800384ImageSpace* Space::CreateImageSpace(const std::string& image_file_name) {
Brian Carlstrom5643b782012-02-05 12:32:53 -0800385 CHECK(!image_file_name.empty());
Ian Rogers30fab402012-01-23 15:43:46 -0800386
387 uint64_t start_time = 0;
388 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
389 start_time = NanoTime();
390 LOG(INFO) << "Space::CreateImageSpace entering" << " image_file_name=" << image_file_name;
391 }
392
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700393 UniquePtr<File> file(OS::OpenFile(image_file_name.c_str(), false));
Elliott Hughes90a33692011-08-30 13:27:07 -0700394 if (file.get() == NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800395 LOG(ERROR) << "Failed to open " << image_file_name;
396 return NULL;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700397 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700398 ImageHeader image_header;
399 bool success = file->ReadFully(&image_header, sizeof(image_header));
400 if (!success || !image_header.IsValid()) {
Ian Rogers30fab402012-01-23 15:43:46 -0800401 LOG(ERROR) << "Invalid image header " << image_file_name;
402 return NULL;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700403 }
Ian Rogers30fab402012-01-23 15:43:46 -0800404 UniquePtr<MemMap> map(MemMap::MapFileAtAddress(image_header.GetImageBegin(),
Brian Carlstrom89521892011-12-07 22:05:07 -0800405 file->Length(),
406 // TODO: selectively PROT_EXEC stubs
407 PROT_READ | PROT_WRITE | PROT_EXEC,
408 MAP_PRIVATE | MAP_FIXED,
409 file->Fd(),
410 0));
Elliott Hughes90a33692011-08-30 13:27:07 -0700411 if (map.get() == NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800412 LOG(ERROR) << "Failed to map " << image_file_name;
413 return NULL;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700414 }
Ian Rogers30fab402012-01-23 15:43:46 -0800415 CHECK_EQ(image_header.GetImageBegin(), map->Begin());
416 DCHECK_EQ(0, memcmp(&image_header, map->Begin(), sizeof(ImageHeader)));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700417
Ian Rogers30fab402012-01-23 15:43:46 -0800418 Runtime* runtime = Runtime::Current();
Brian Carlstrom16192862011-09-12 17:50:06 -0700419 Object* jni_stub_array = image_header.GetImageRoot(ImageHeader::kJniStubArray);
Ian Rogers169c9a72011-11-13 20:13:17 -0800420 runtime->SetJniDlsymLookupStub(down_cast<ByteArray*>(jni_stub_array));
Brian Carlstrom16192862011-09-12 17:50:06 -0700421
Brian Carlstrome24fa612011-09-29 00:53:55 -0700422 Object* ame_stub_array = image_header.GetImageRoot(ImageHeader::kAbstractMethodErrorStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700423 runtime->SetAbstractMethodErrorStubArray(down_cast<ByteArray*>(ame_stub_array));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700424
Ian Rogersfb6adba2012-03-04 21:51:51 -0800425 Object* resolution_stub_array =
426 image_header.GetImageRoot(ImageHeader::kStaticResolutionStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700427 runtime->SetResolutionStubArray(
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700428 down_cast<ByteArray*>(resolution_stub_array), Runtime::kStaticMethod);
429 resolution_stub_array = image_header.GetImageRoot(ImageHeader::kUnknownMethodResolutionStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700430 runtime->SetResolutionStubArray(
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700431 down_cast<ByteArray*>(resolution_stub_array), Runtime::kUnknownMethod);
Ian Rogersad25ac52011-10-04 19:13:33 -0700432
Ian Rogers19846512012-02-24 11:42:47 -0800433 Object* resolution_method = image_header.GetImageRoot(ImageHeader::kResolutionMethod);
434 runtime->SetResolutionMethod(down_cast<Method*>(resolution_method));
435
Ian Rogersff1ed472011-09-20 13:46:24 -0700436 Object* callee_save_method = image_header.GetImageRoot(ImageHeader::kCalleeSaveMethod);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700437 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kSaveAll);
438 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsOnlySaveMethod);
439 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kRefsOnly);
440 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsAndArgsSaveMethod);
441 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kRefsAndArgs);
Ian Rogersff1ed472011-09-20 13:46:24 -0700442
Ian Rogers30fab402012-01-23 15:43:46 -0800443 ImageSpace* space = new ImageSpace(image_file_name, map.release());
444 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800445 LOG(INFO) << "Space::CreateImageSpace exiting (" << PrettyDuration(NanoTime() - start_time)
446 << ") " << *space;
Ian Rogers5d76c432011-10-31 21:42:49 -0700447 }
Ian Rogers30fab402012-01-23 15:43:46 -0800448 return space;
Ian Rogers5d76c432011-10-31 21:42:49 -0700449}
450
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700451void ImageSpace::RecordImageAllocations(SpaceBitmap* live_bitmap) const {
Ian Rogers30fab402012-01-23 15:43:46 -0800452 uint64_t start_time = 0;
453 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
454 LOG(INFO) << "ImageSpace::RecordImageAllocations entering";
455 start_time = NanoTime();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700456 }
Ian Rogers30fab402012-01-23 15:43:46 -0800457 DCHECK(!Runtime::Current()->IsStarted());
458 CHECK(live_bitmap != NULL);
459 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment);
460 byte* end = End();
461 while (current < end) {
462 DCHECK_ALIGNED(current, kObjectAlignment);
463 const Object* obj = reinterpret_cast<const Object*>(current);
464 live_bitmap->Set(obj);
465 current += RoundUp(obj->SizeOf(), kObjectAlignment);
466 }
467 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800468 LOG(INFO) << "ImageSpace::RecordImageAllocations exiting ("
469 << PrettyDuration(NanoTime() - start_time) << ")";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700470 }
471}
472
Ian Rogers30fab402012-01-23 15:43:46 -0800473std::ostream& operator<<(std::ostream& os, const Space& space) {
474 os << (space.IsImageSpace() ? "Image" : "Alloc") << "Space["
475 << "begin=" << reinterpret_cast<void*>(space.Begin())
476 << ",end=" << reinterpret_cast<void*>(space.End())
Ian Rogers3bb17a62012-01-27 23:56:44 -0800477 << ",size=" << PrettySize(space.Size()) << ",capacity=" << PrettySize(space.Capacity())
Ian Rogers30fab402012-01-23 15:43:46 -0800478 << ",name=\"" << space.GetSpaceName() << "\"]";
479 return os;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700480}
481
482} // namespace art