Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 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 Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 17 | #include "space.h" |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 18 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 19 | #include "UniquePtr.h" |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 20 | #include "dlmalloc.h" |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 21 | #include "file.h" |
| 22 | #include "image.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 23 | #include "logging.h" |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 24 | #include "os.h" |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 25 | #include "stl_util.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 26 | #include "utils.h" |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 27 | |
| 28 | namespace art { |
| 29 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 30 | #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 Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 43 | size_t AllocSpace::bitmap_index_ = 0; |
| 44 | |
| 45 | AllocSpace::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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 63 | AllocSpace* Space::CreateAllocSpace(const std::string& name, size_t initial_size, |
| 64 | size_t growth_limit, size_t capacity, |
| 65 | byte* requested_begin) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 66 | // 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 71 | 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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 75 | << " initial_size=" << PrettySize(initial_size) |
| 76 | << " growth_limit=" << PrettySize(growth_limit) |
| 77 | << " capacity=" << PrettySize(capacity) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 78 | << " requested_begin=" << reinterpret_cast<void*>(requested_begin); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 79 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 80 | |
| 81 | // Sanity check arguments |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 82 | if (starting_size > initial_size) { |
| 83 | initial_size = starting_size; |
| 84 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 85 | if (initial_size > growth_limit) { |
| 86 | LOG(ERROR) << "Failed to create alloc space (" << name << ") where the initial size (" |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 87 | << PrettySize(initial_size) << ") is larger than its capacity (" |
| 88 | << PrettySize(growth_limit) << ")"; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 89 | return NULL; |
| 90 | } |
| 91 | if (growth_limit > capacity) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 92 | 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 95 | 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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 106 | << PrettySize(capacity); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 107 | return NULL; |
| 108 | } |
| 109 | |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 110 | void* mspace = AllocSpace::CreateMallocSpace(mem_map->Begin(), starting_size, initial_size); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 111 | if (mspace == NULL) { |
| 112 | LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")"; |
| 113 | return NULL; |
| 114 | } |
| 115 | |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 116 | // Protect memory beyond the initial size. |
| 117 | byte* end = mem_map->Begin() + starting_size; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 118 | 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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 125 | LOG(INFO) << "Space::CreateAllocSpace exiting (" << PrettyDuration(NanoTime() - start_time) |
| 126 | << " ) " << *space; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 127 | } |
| 128 | return space; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 131 | void* AllocSpace::CreateMallocSpace(void* begin, size_t morecore_start, size_t initial_size) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 132 | // clear errno to allow PLOG on error |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 133 | errno = 0; |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 134 | // 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 Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 138 | if (msp != NULL) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 139 | // Do not allow morecore requests to succeed beyond the initial size of the heap |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 140 | mspace_set_footprint_limit(msp, initial_size); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 141 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 142 | PLOG(ERROR) << "create_mspace_with_base failed"; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 143 | } |
| 144 | return msp; |
| 145 | } |
| 146 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 147 | Object* 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; |
jeffhao | c116070 | 2011-10-27 15:48:45 -0700 | [diff] [blame] | 153 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 154 | #endif |
| 155 | return result; |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 158 | Object* 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 Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 173 | void 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 | |
| 181 | void 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 Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 186 | if (!Contains(ptrs[i])) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 187 | 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 |
| 197 | extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 198 | Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 199 | if (heap->GetAllocSpace()->GetMspace() == mspace) { |
| 200 | return heap->GetAllocSpace()->MoreCore(increment); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 201 | } else { |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 202 | // 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 208 | if (mspace == space->GetMspace()) { |
| 209 | return space->MoreCore(increment); |
| 210 | } |
| 211 | } |
| 212 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 213 | } |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 214 | |
| 215 | LOG(FATAL) << "Unexpected call to art_heap_morecore. mspace: " << mspace |
| 216 | << " increment: " << increment; |
| 217 | return NULL; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | void* AllocSpace::MoreCore(intptr_t increment) { |
| 221 | byte* original_end = end_; |
| 222 | if (increment != 0) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 223 | VLOG(heap) << "AllocSpace::MoreCore " << PrettySize(increment); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 224 | 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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 238 | // 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 243 | 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 | |
| 253 | size_t AllocSpace::AllocationSize(const Object* obj) { |
| 254 | return mspace_usable_size(const_cast<void*>(reinterpret_cast<const void*>(obj))) + kChunkOverhead; |
| 255 | } |
| 256 | |
Elliott Hughes | 9eebd3b | 2012-06-08 13:56:31 -0700 | [diff] [blame] | 257 | void 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
Elliott Hughes | 9eebd3b | 2012-06-08 13:56:31 -0700 | [diff] [blame] | 267 | void 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Elliott Hughes | 9eebd3b | 2012-06-08 13:56:31 -0700 | [diff] [blame] | 275 | void 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 281 | |
| 282 | void 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 | |
| 287 | size_t AllocSpace::GetFootprintLimit() { |
| 288 | return mspace_footprint_limit(mspace_); |
| 289 | } |
| 290 | |
| 291 | void AllocSpace::SetFootprintLimit(size_t new_size) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 292 | VLOG(heap) << "AllocSpace::SetFootprintLimit " << PrettySize(new_size); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 293 | // 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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 295 | 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 Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 303 | size_t ImageSpace::bitmap_index_ = 0; |
| 304 | |
| 305 | ImageSpace::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 Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 314 | ImageSpace* Space::CreateImageSpace(const std::string& image_file_name) { |
Brian Carlstrom | 5643b78 | 2012-02-05 12:32:53 -0800 | [diff] [blame] | 315 | CHECK(!image_file_name.empty()); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 316 | |
| 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 Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 323 | UniquePtr<File> file(OS::OpenFile(image_file_name.c_str(), false)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 324 | if (file.get() == NULL) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 325 | LOG(ERROR) << "Failed to open " << image_file_name; |
| 326 | return NULL; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 327 | } |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 328 | ImageHeader image_header; |
| 329 | bool success = file->ReadFully(&image_header, sizeof(image_header)); |
| 330 | if (!success || !image_header.IsValid()) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 331 | LOG(ERROR) << "Invalid image header " << image_file_name; |
| 332 | return NULL; |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 333 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 334 | UniquePtr<MemMap> map(MemMap::MapFileAtAddress(image_header.GetImageBegin(), |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 335 | 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 Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 341 | if (map.get() == NULL) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 342 | LOG(ERROR) << "Failed to map " << image_file_name; |
| 343 | return NULL; |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 344 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 345 | CHECK_EQ(image_header.GetImageBegin(), map->Begin()); |
| 346 | DCHECK_EQ(0, memcmp(&image_header, map->Begin(), sizeof(ImageHeader))); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 347 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 348 | Runtime* runtime = Runtime::Current(); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 349 | Object* jni_stub_array = image_header.GetImageRoot(ImageHeader::kJniStubArray); |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 350 | runtime->SetJniDlsymLookupStub(down_cast<ByteArray*>(jni_stub_array)); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 351 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 352 | Object* ame_stub_array = image_header.GetImageRoot(ImageHeader::kAbstractMethodErrorStubArray); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 353 | runtime->SetAbstractMethodErrorStubArray(down_cast<ByteArray*>(ame_stub_array)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 354 | |
Ian Rogers | fb6adba | 2012-03-04 21:51:51 -0800 | [diff] [blame] | 355 | Object* resolution_stub_array = |
| 356 | image_header.GetImageRoot(ImageHeader::kStaticResolutionStubArray); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 357 | runtime->SetResolutionStubArray( |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 358 | down_cast<ByteArray*>(resolution_stub_array), Runtime::kStaticMethod); |
| 359 | resolution_stub_array = image_header.GetImageRoot(ImageHeader::kUnknownMethodResolutionStubArray); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 360 | runtime->SetResolutionStubArray( |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 361 | down_cast<ByteArray*>(resolution_stub_array), Runtime::kUnknownMethod); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 362 | |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 363 | Object* resolution_method = image_header.GetImageRoot(ImageHeader::kResolutionMethod); |
| 364 | runtime->SetResolutionMethod(down_cast<Method*>(resolution_method)); |
| 365 | |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 366 | Object* callee_save_method = image_header.GetImageRoot(ImageHeader::kCalleeSaveMethod); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 367 | 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 Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 372 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 373 | ImageSpace* space = new ImageSpace(image_file_name, map.release()); |
| 374 | if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 375 | LOG(INFO) << "Space::CreateImageSpace exiting (" << PrettyDuration(NanoTime() - start_time) |
| 376 | << ") " << *space; |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 377 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 378 | return space; |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame^] | 381 | void ImageSpace::RecordImageAllocations(SpaceBitmap* live_bitmap) const { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 382 | 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 Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 386 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 387 | 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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 398 | LOG(INFO) << "ImageSpace::RecordImageAllocations exiting (" |
| 399 | << PrettyDuration(NanoTime() - start_time) << ")"; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 400 | } |
| 401 | } |
| 402 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 403 | std::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 Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 407 | << ",size=" << PrettySize(space.Size()) << ",capacity=" << PrettySize(space.Capacity()) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 408 | << ",name=\"" << space.GetSpaceName() << "\"]"; |
| 409 | return os; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | } // namespace art |