blob: 569a0c9fb8efdc202ad0641e5cd63105fdaf2297 [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 Chartierb062fdd2012-07-03 09:51:48 -070025#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070026#include "utils.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070027
28namespace art {
29
Ian Rogers30fab402012-01-23 15:43:46 -080030#ifndef NDEBUG
31#define DEBUG_SPACES 1
32#endif
33
34#define CHECK_MEMORY_CALL(call, args, what) \
35 do { \
36 int rc = call args; \
37 if (UNLIKELY(rc != 0)) { \
38 errno = rc; \
39 PLOG(FATAL) << # call << " failed for " << what; \
40 } \
41 } while (false)
42
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070043size_t AllocSpace::bitmap_index_ = 0;
44
45AllocSpace::AllocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* end,
46 size_t growth_limit)
47 : Space(name, mem_map, end), mspace_(mspace), growth_limit_(growth_limit) {
48 CHECK(mspace != NULL);
49
50 size_t bitmap_index = bitmap_index_++;
51
52 live_bitmap_.reset(SpaceBitmap::Create(
53 StringPrintf("allocspace-%s-live-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
54 Begin(), Capacity()));
55 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace live bitmap #" << bitmap_index;
56
57 mark_bitmap_.reset(SpaceBitmap::Create(
58 StringPrintf("allocspace-%s-mark-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
59 Begin(), Capacity()));
60 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace mark bitmap #" << bitmap_index;
61}
62
Ian Rogers30fab402012-01-23 15:43:46 -080063AllocSpace* Space::CreateAllocSpace(const std::string& name, size_t initial_size,
64 size_t growth_limit, size_t capacity,
65 byte* requested_begin) {
Ian Rogers3bb17a62012-01-27 23:56:44 -080066 // Memory we promise to dlmalloc before it asks for morecore.
67 // Note: making this value large means that large allocations are unlikely to succeed as dlmalloc
68 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
69 // size of the large allocation) will be greater than the footprint limit.
70 size_t starting_size = kPageSize;
Ian Rogers30fab402012-01-23 15:43:46 -080071 uint64_t start_time = 0;
72 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
73 start_time = NanoTime();
74 VLOG(startup) << "Space::CreateAllocSpace entering " << name
Ian Rogers3bb17a62012-01-27 23:56:44 -080075 << " initial_size=" << PrettySize(initial_size)
76 << " growth_limit=" << PrettySize(growth_limit)
77 << " capacity=" << PrettySize(capacity)
Ian Rogers30fab402012-01-23 15:43:46 -080078 << " requested_begin=" << reinterpret_cast<void*>(requested_begin);
Carl Shapiro69759ea2011-07-21 18:13:35 -070079 }
Ian Rogers30fab402012-01-23 15:43:46 -080080
81 // Sanity check arguments
Ian Rogers3bb17a62012-01-27 23:56:44 -080082 if (starting_size > initial_size) {
83 initial_size = starting_size;
84 }
Ian Rogers30fab402012-01-23 15:43:46 -080085 if (initial_size > growth_limit) {
86 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the initial size ("
Ian Rogers3bb17a62012-01-27 23:56:44 -080087 << PrettySize(initial_size) << ") is larger than its capacity ("
88 << PrettySize(growth_limit) << ")";
Ian Rogers30fab402012-01-23 15:43:46 -080089 return NULL;
90 }
91 if (growth_limit > capacity) {
Ian Rogers3bb17a62012-01-27 23:56:44 -080092 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the growth limit capacity ("
93 << PrettySize(growth_limit) << ") is larger than the capacity ("
94 << PrettySize(capacity) << ")";
Ian Rogers30fab402012-01-23 15:43:46 -080095 return NULL;
96 }
97
98 // Page align growth limit and capacity which will be used to manage mmapped storage
99 growth_limit = RoundUp(growth_limit, kPageSize);
100 capacity = RoundUp(capacity, kPageSize);
101
102 UniquePtr<MemMap> mem_map(MemMap::MapAnonymous(name.c_str(), requested_begin,
103 capacity, PROT_READ | PROT_WRITE));
104 if (mem_map.get() == NULL) {
105 LOG(ERROR) << "Failed to allocate pages for alloc space (" << name << ") of size "
Ian Rogers3bb17a62012-01-27 23:56:44 -0800106 << PrettySize(capacity);
Ian Rogers30fab402012-01-23 15:43:46 -0800107 return NULL;
108 }
109
Ian Rogers3bb17a62012-01-27 23:56:44 -0800110 void* mspace = AllocSpace::CreateMallocSpace(mem_map->Begin(), starting_size, initial_size);
Ian Rogers30fab402012-01-23 15:43:46 -0800111 if (mspace == NULL) {
112 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
113 return NULL;
114 }
115
Ian Rogers3bb17a62012-01-27 23:56:44 -0800116 // Protect memory beyond the initial size.
117 byte* end = mem_map->Begin() + starting_size;
Ian Rogers30fab402012-01-23 15:43:46 -0800118 if (capacity - initial_size > 0) {
119 CHECK_MEMORY_CALL(mprotect, (end, capacity - initial_size, PROT_NONE), name);
120 }
121
122 // Everything is set so record in immutable structure and leave
123 AllocSpace* space = new AllocSpace(name, mem_map.release(), mspace, end, growth_limit);
124 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800125 LOG(INFO) << "Space::CreateAllocSpace exiting (" << PrettyDuration(NanoTime() - start_time)
126 << " ) " << *space;
Ian Rogers30fab402012-01-23 15:43:46 -0800127 }
128 return space;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700129}
130
Ian Rogers3bb17a62012-01-27 23:56:44 -0800131void* AllocSpace::CreateMallocSpace(void* begin, size_t morecore_start, size_t initial_size) {
Ian Rogers30fab402012-01-23 15:43:46 -0800132 // clear errno to allow PLOG on error
Carl Shapiro69759ea2011-07-21 18:13:35 -0700133 errno = 0;
Ian Rogers3bb17a62012-01-27 23:56:44 -0800134 // create mspace using our backing storage starting at begin and with a footprint of
135 // morecore_start. Don't use an internal dlmalloc lock (as we already hold heap lock). When
136 // morecore_start bytes of memory is exhaused morecore will be called.
137 void* msp = create_mspace_with_base(begin, morecore_start, false /*locked*/);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700138 if (msp != NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800139 // Do not allow morecore requests to succeed beyond the initial size of the heap
Ian Rogers3bb17a62012-01-27 23:56:44 -0800140 mspace_set_footprint_limit(msp, initial_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700141 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800142 PLOG(ERROR) << "create_mspace_with_base failed";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700143 }
144 return msp;
145}
146
Ian Rogers30fab402012-01-23 15:43:46 -0800147Object* AllocSpace::AllocWithoutGrowth(size_t num_bytes) {
148 Object* result = reinterpret_cast<Object*>(mspace_calloc(mspace_, 1, num_bytes));
149#if DEBUG_SPACES
150 if (result != NULL) {
151 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result)
152 << ") not in bounds of heap " << *this;
jeffhaoc1160702011-10-27 15:48:45 -0700153 }
Ian Rogers30fab402012-01-23 15:43:46 -0800154#endif
155 return result;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700156}
157
Ian Rogers30fab402012-01-23 15:43:46 -0800158Object* AllocSpace::AllocWithGrowth(size_t num_bytes) {
159 // Grow as much as possible within the mspace.
160 size_t max_allowed = Capacity();
161 mspace_set_footprint_limit(mspace_, max_allowed);
162 // Try the allocation.
163 void* ptr = AllocWithoutGrowth(num_bytes);
164 // Shrink back down as small as possible.
165 size_t footprint = mspace_footprint(mspace_);
166 mspace_set_footprint_limit(mspace_, footprint);
167 // Return the new allocation or NULL.
168 Object* result = reinterpret_cast<Object*>(ptr);
169 CHECK(result == NULL || Contains(result));
170 return result;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700171}
172
Ian Rogers30fab402012-01-23 15:43:46 -0800173void AllocSpace::Free(Object* ptr) {
174#if DEBUG_SPACES
175 CHECK(ptr != NULL);
176 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
177#endif
178 mspace_free(mspace_, ptr);
179}
180
181void AllocSpace::FreeList(size_t num_ptrs, Object** ptrs) {
182#if DEBUG_SPACES
183 CHECK(ptrs != NULL);
184 size_t num_broken_ptrs = 0;
185 for (size_t i = 0; i < num_ptrs; i++) {
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700186 if (!Contains(ptrs[i])) {
Ian Rogers30fab402012-01-23 15:43:46 -0800187 num_broken_ptrs++;
188 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
189 }
190 }
191 CHECK_EQ(num_broken_ptrs, 0u);
192#endif
193 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs);
194}
195
196// Callback from dlmalloc when it needs to increase the footprint
197extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800198 Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700199 if (heap->GetAllocSpace()->GetMspace() == mspace) {
200 return heap->GetAllocSpace()->MoreCore(increment);
Ian Rogers30fab402012-01-23 15:43:46 -0800201 } else {
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700202 // Exhaustively search alloc spaces.
203 const Spaces& spaces = heap->GetSpaces();
204 // TODO: C++0x auto
205 for (Spaces::const_iterator cur = spaces.begin(); cur != spaces.end(); ++cur) {
206 if ((*cur)->IsAllocSpace()) {
207 AllocSpace* space = (*cur)->AsAllocSpace();
Ian Rogers30fab402012-01-23 15:43:46 -0800208 if (mspace == space->GetMspace()) {
209 return space->MoreCore(increment);
210 }
211 }
212 }
Ian Rogers30fab402012-01-23 15:43:46 -0800213 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700214
215 LOG(FATAL) << "Unexpected call to art_heap_morecore. mspace: " << mspace
216 << " increment: " << increment;
217 return NULL;
Ian Rogers30fab402012-01-23 15:43:46 -0800218}
219
220void* AllocSpace::MoreCore(intptr_t increment) {
221 byte* original_end = end_;
222 if (increment != 0) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800223 VLOG(heap) << "AllocSpace::MoreCore " << PrettySize(increment);
Ian Rogers30fab402012-01-23 15:43:46 -0800224 byte* new_end = original_end + increment;
225 if (increment > 0) {
226#if DEBUG_SPACES
227 // Should never be asked to increase the allocation beyond the capacity of the space. Enforced
228 // by mspace_set_footprint_limit.
229 CHECK_LE(new_end, Begin() + Capacity());
230#endif
231 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetSpaceName());
232 } else {
233#if DEBUG_SPACES
234 // Should never be asked for negative footprint (ie before begin)
235 CHECK_GT(original_end + increment, Begin());
236#endif
237 // Advise we don't need the pages and protect them
Ian Rogers3bb17a62012-01-27 23:56:44 -0800238 // TODO: by removing permissions to the pages we may be causing TLB shoot-down which can be
239 // expensive (note the same isn't true for giving permissions to a page as the protected
240 // page shouldn't be in a TLB). We should investigate performance impact of just
241 // removing ignoring the memory protection change here and in Space::CreateAllocSpace. It's
242 // likely just a useful debug feature.
Ian Rogers30fab402012-01-23 15:43:46 -0800243 size_t size = -increment;
244 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetSpaceName());
245 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetSpaceName());
246 }
247 // Update end_
248 end_ = new_end;
249 }
250 return original_end;
251}
252
253size_t AllocSpace::AllocationSize(const Object* obj) {
254 return mspace_usable_size(const_cast<void*>(reinterpret_cast<const void*>(obj))) + kChunkOverhead;
255}
256
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700257void MspaceMadviseCallback(void* start, void* end, void* /*arg*/) {
258 // Do we have any whole pages to give back?
259 start = reinterpret_cast<void*>(RoundUp(reinterpret_cast<uintptr_t>(start), kPageSize));
260 end = reinterpret_cast<void*>(RoundDown(reinterpret_cast<uintptr_t>(end), kPageSize));
261 if (end > start) {
262 size_t length = reinterpret_cast<byte*>(end) - reinterpret_cast<byte*>(start);
263 CHECK_MEMORY_CALL(madvise, (start, length, MADV_DONTNEED), "trim");
Ian Rogers30fab402012-01-23 15:43:46 -0800264 }
265}
266
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700267void MspaceMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) {
268 // Is this chunk in use?
269 if (used_bytes != 0) {
270 return;
271 }
272 return MspaceMadviseCallback(start, end, arg);
Ian Rogers30fab402012-01-23 15:43:46 -0800273}
274
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700275void AllocSpace::Trim() {
276 // Trim to release memory at the end of the space.
277 mspace_trim(mspace_, 0);
278 // Visit space looking for page-sized holes to advise the kernel we don't need.
279 mspace_inspect_all(mspace_, MspaceMadviseCallback, NULL);
280}
Ian Rogers30fab402012-01-23 15:43:46 -0800281
282void AllocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
283 void* arg) {
284 mspace_inspect_all(mspace_, callback, arg);
285}
286
287size_t AllocSpace::GetFootprintLimit() {
288 return mspace_footprint_limit(mspace_);
289}
290
291void AllocSpace::SetFootprintLimit(size_t new_size) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800292 VLOG(heap) << "AllocSpace::SetFootprintLimit " << PrettySize(new_size);
Ian Rogers30fab402012-01-23 15:43:46 -0800293 // Compare against the actual footprint, rather than the Size(), because the heap may not have
294 // grown all the way to the allowed size yet.
Ian Rogers30fab402012-01-23 15:43:46 -0800295 size_t current_space_size = mspace_footprint(mspace_);
296 if (new_size < current_space_size) {
297 // Don't let the space grow any more.
298 new_size = current_space_size;
299 }
300 mspace_set_footprint_limit(mspace_, new_size);
301}
302
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700303size_t ImageSpace::bitmap_index_ = 0;
304
305ImageSpace::ImageSpace(const std::string& name, MemMap* mem_map)
306 : Space(name, mem_map, mem_map->End()) {
307 const size_t bitmap_index = bitmap_index_++;
308 live_bitmap_.reset(SpaceBitmap::Create(
309 StringPrintf("imagespace-%s-live-bitmap-%d", name.c_str(), static_cast<int>(bitmap_index)),
310 Begin(), Capacity()));
311 DCHECK(live_bitmap_.get() != NULL) << "could not create imagespace live bitmap #" << bitmap_index;
312}
313
Ian Rogers30fab402012-01-23 15:43:46 -0800314ImageSpace* Space::CreateImageSpace(const std::string& image_file_name) {
Brian Carlstrom5643b782012-02-05 12:32:53 -0800315 CHECK(!image_file_name.empty());
Ian Rogers30fab402012-01-23 15:43:46 -0800316
317 uint64_t start_time = 0;
318 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
319 start_time = NanoTime();
320 LOG(INFO) << "Space::CreateImageSpace entering" << " image_file_name=" << image_file_name;
321 }
322
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700323 UniquePtr<File> file(OS::OpenFile(image_file_name.c_str(), false));
Elliott Hughes90a33692011-08-30 13:27:07 -0700324 if (file.get() == NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800325 LOG(ERROR) << "Failed to open " << image_file_name;
326 return NULL;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700327 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700328 ImageHeader image_header;
329 bool success = file->ReadFully(&image_header, sizeof(image_header));
330 if (!success || !image_header.IsValid()) {
Ian Rogers30fab402012-01-23 15:43:46 -0800331 LOG(ERROR) << "Invalid image header " << image_file_name;
332 return NULL;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700333 }
Ian Rogers30fab402012-01-23 15:43:46 -0800334 UniquePtr<MemMap> map(MemMap::MapFileAtAddress(image_header.GetImageBegin(),
Brian Carlstrom89521892011-12-07 22:05:07 -0800335 file->Length(),
336 // TODO: selectively PROT_EXEC stubs
337 PROT_READ | PROT_WRITE | PROT_EXEC,
338 MAP_PRIVATE | MAP_FIXED,
339 file->Fd(),
340 0));
Elliott Hughes90a33692011-08-30 13:27:07 -0700341 if (map.get() == NULL) {
Ian Rogers30fab402012-01-23 15:43:46 -0800342 LOG(ERROR) << "Failed to map " << image_file_name;
343 return NULL;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700344 }
Ian Rogers30fab402012-01-23 15:43:46 -0800345 CHECK_EQ(image_header.GetImageBegin(), map->Begin());
346 DCHECK_EQ(0, memcmp(&image_header, map->Begin(), sizeof(ImageHeader)));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700347
Ian Rogers30fab402012-01-23 15:43:46 -0800348 Runtime* runtime = Runtime::Current();
Brian Carlstrom16192862011-09-12 17:50:06 -0700349 Object* jni_stub_array = image_header.GetImageRoot(ImageHeader::kJniStubArray);
Ian Rogers169c9a72011-11-13 20:13:17 -0800350 runtime->SetJniDlsymLookupStub(down_cast<ByteArray*>(jni_stub_array));
Brian Carlstrom16192862011-09-12 17:50:06 -0700351
Brian Carlstrome24fa612011-09-29 00:53:55 -0700352 Object* ame_stub_array = image_header.GetImageRoot(ImageHeader::kAbstractMethodErrorStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700353 runtime->SetAbstractMethodErrorStubArray(down_cast<ByteArray*>(ame_stub_array));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700354
Ian Rogersfb6adba2012-03-04 21:51:51 -0800355 Object* resolution_stub_array =
356 image_header.GetImageRoot(ImageHeader::kStaticResolutionStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700357 runtime->SetResolutionStubArray(
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700358 down_cast<ByteArray*>(resolution_stub_array), Runtime::kStaticMethod);
359 resolution_stub_array = image_header.GetImageRoot(ImageHeader::kUnknownMethodResolutionStubArray);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700360 runtime->SetResolutionStubArray(
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700361 down_cast<ByteArray*>(resolution_stub_array), Runtime::kUnknownMethod);
Ian Rogersad25ac52011-10-04 19:13:33 -0700362
Ian Rogers19846512012-02-24 11:42:47 -0800363 Object* resolution_method = image_header.GetImageRoot(ImageHeader::kResolutionMethod);
364 runtime->SetResolutionMethod(down_cast<Method*>(resolution_method));
365
Ian Rogersff1ed472011-09-20 13:46:24 -0700366 Object* callee_save_method = image_header.GetImageRoot(ImageHeader::kCalleeSaveMethod);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700367 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kSaveAll);
368 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsOnlySaveMethod);
369 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kRefsOnly);
370 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsAndArgsSaveMethod);
371 runtime->SetCalleeSaveMethod(down_cast<Method*>(callee_save_method), Runtime::kRefsAndArgs);
Ian Rogersff1ed472011-09-20 13:46:24 -0700372
Ian Rogers30fab402012-01-23 15:43:46 -0800373 ImageSpace* space = new ImageSpace(image_file_name, map.release());
374 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800375 LOG(INFO) << "Space::CreateImageSpace exiting (" << PrettyDuration(NanoTime() - start_time)
376 << ") " << *space;
Ian Rogers5d76c432011-10-31 21:42:49 -0700377 }
Ian Rogers30fab402012-01-23 15:43:46 -0800378 return space;
Ian Rogers5d76c432011-10-31 21:42:49 -0700379}
380
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700381void ImageSpace::RecordImageAllocations(SpaceBitmap* live_bitmap) const {
Ian Rogers30fab402012-01-23 15:43:46 -0800382 uint64_t start_time = 0;
383 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
384 LOG(INFO) << "ImageSpace::RecordImageAllocations entering";
385 start_time = NanoTime();
Carl Shapiro69759ea2011-07-21 18:13:35 -0700386 }
Ian Rogers30fab402012-01-23 15:43:46 -0800387 DCHECK(!Runtime::Current()->IsStarted());
388 CHECK(live_bitmap != NULL);
389 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment);
390 byte* end = End();
391 while (current < end) {
392 DCHECK_ALIGNED(current, kObjectAlignment);
393 const Object* obj = reinterpret_cast<const Object*>(current);
394 live_bitmap->Set(obj);
395 current += RoundUp(obj->SizeOf(), kObjectAlignment);
396 }
397 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800398 LOG(INFO) << "ImageSpace::RecordImageAllocations exiting ("
399 << PrettyDuration(NanoTime() - start_time) << ")";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700400 }
401}
402
Ian Rogers30fab402012-01-23 15:43:46 -0800403std::ostream& operator<<(std::ostream& os, const Space& space) {
404 os << (space.IsImageSpace() ? "Image" : "Alloc") << "Space["
405 << "begin=" << reinterpret_cast<void*>(space.Begin())
406 << ",end=" << reinterpret_cast<void*>(space.End())
Ian Rogers3bb17a62012-01-27 23:56:44 -0800407 << ",size=" << PrettySize(space.Size()) << ",capacity=" << PrettySize(space.Capacity())
Ian Rogers30fab402012-01-23 15:43:46 -0800408 << ",name=\"" << space.GetSpaceName() << "\"]";
409 return os;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700410}
411
412} // namespace art