blob: 74d1a2b7dbf93cc3fc5b55ad3be1051d16a48872 [file] [log] [blame]
Hiroshi Yamauchi7cb7bbc2013-11-18 17:27:37 -08001
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07002/*
3 * Copyright (C) 2013 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070018#include "rosalloc_space-inl.h"
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070019
Ian Rogerscf7f1912014-10-22 22:06:39 -070020#define ATRACE_TAG ATRACE_TAG_DALVIK
21#include "cutils/trace.h"
22
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070023#include "gc/accounting/card_table.h"
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070024#include "gc/accounting/space_bitmap-inl.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070025#include "gc/heap.h"
26#include "mirror/class-inl.h"
27#include "mirror/object-inl.h"
28#include "runtime.h"
29#include "thread.h"
30#include "thread_list.h"
31#include "utils.h"
Ian Rogers6fac4472014-02-25 17:01:10 -080032#include "valgrind_malloc_space-inl.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070033
34namespace art {
35namespace gc {
36namespace space {
37
Mathieu Chartier73d1e172014-04-11 17:53:48 -070038static constexpr bool kPrefetchDuringRosAllocFreeList = false;
Mathieu Chartier8585bad2014-04-11 17:53:48 -070039static constexpr size_t kPrefetchLookAhead = 8;
40// Use this only for verification, it is not safe to use since the class of the object may have
41// been freed.
42static constexpr bool kVerifyFreedBytes = false;
Ian Rogers6fac4472014-02-25 17:01:10 -080043
Mathieu Chartier31f44142014-04-08 14:40:03 -070044// TODO: Fix
45// template class ValgrindMallocSpace<RosAllocSpace, allocator::RosAlloc*>;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070046
Andreas Gamped7576322014-10-24 22:13:45 -070047RosAllocSpace::RosAllocSpace(MemMap* mem_map, size_t initial_size, const std::string& name,
Ian Rogers13735952014-10-08 12:43:28 -070048 art::gc::allocator::RosAlloc* rosalloc, uint8_t* begin, uint8_t* end,
49 uint8_t* limit, size_t growth_limit, bool can_move_objects,
Andreas Gamped7576322014-10-24 22:13:45 -070050 size_t starting_size, bool low_memory_mode)
Mathieu Chartier31f44142014-04-08 14:40:03 -070051 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects,
52 starting_size, initial_size),
53 rosalloc_(rosalloc), low_memory_mode_(low_memory_mode) {
54 CHECK(rosalloc != nullptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070055}
56
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080057RosAllocSpace* RosAllocSpace::CreateFromMemMap(MemMap* mem_map, const std::string& name,
Ian Rogersa55cf412014-02-27 00:31:26 -080058 size_t starting_size, size_t initial_size,
59 size_t growth_limit, size_t capacity,
Mathieu Chartier31f44142014-04-08 14:40:03 -070060 bool low_memory_mode, bool can_move_objects) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080061 DCHECK(mem_map != nullptr);
Andreas Gamped7576322014-10-24 22:13:45 -070062
63 bool running_on_valgrind = Runtime::Current()->RunningOnValgrind();
64
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080065 allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(), starting_size, initial_size,
Andreas Gamped7576322014-10-24 22:13:45 -070066 capacity, low_memory_mode, running_on_valgrind);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080067 if (rosalloc == NULL) {
68 LOG(ERROR) << "Failed to initialize rosalloc for alloc space (" << name << ")";
69 return NULL;
70 }
71
lzang1385de732014-02-21 14:15:01 +080072 // Protect memory beyond the starting size. MoreCore will add r/w permissions when necessory
Ian Rogers13735952014-10-08 12:43:28 -070073 uint8_t* end = mem_map->Begin() + starting_size;
lzang1385de732014-02-21 14:15:01 +080074 if (capacity - starting_size > 0) {
75 CHECK_MEMORY_CALL(mprotect, (end, capacity - starting_size, PROT_NONE), name);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080076 }
77
78 // Everything is set so record in immutable structure and leave
Ian Rogers13735952014-10-08 12:43:28 -070079 uint8_t* begin = mem_map->Begin();
Mathieu Chartier661974a2014-01-09 11:23:53 -080080 // TODO: Fix RosAllocSpace to support valgrind. There is currently some issues with
81 // AllocationSize caused by redzones. b/12944686
Andreas Gamped7576322014-10-24 22:13:45 -070082 if (running_on_valgrind) {
83 return new ValgrindMallocSpace<RosAllocSpace, kDefaultValgrindRedZoneBytes, false, true>(
84 mem_map, initial_size, name, rosalloc, begin, end, begin + capacity, growth_limit,
85 can_move_objects, starting_size, low_memory_mode);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080086 } else {
Andreas Gamped7576322014-10-24 22:13:45 -070087 return new RosAllocSpace(mem_map, initial_size, name, rosalloc, begin, end, begin + capacity,
88 growth_limit, can_move_objects, starting_size, low_memory_mode);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080089 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080090}
91
Mathieu Chartier661974a2014-01-09 11:23:53 -080092RosAllocSpace::~RosAllocSpace() {
93 delete rosalloc_;
94}
95
Ian Rogers6fac4472014-02-25 17:01:10 -080096RosAllocSpace* RosAllocSpace::Create(const std::string& name, size_t initial_size,
Ian Rogers13735952014-10-08 12:43:28 -070097 size_t growth_limit, size_t capacity, uint8_t* requested_begin,
Mathieu Chartier31f44142014-04-08 14:40:03 -070098 bool low_memory_mode, bool can_move_objects) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070099 uint64_t start_time = 0;
100 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
101 start_time = NanoTime();
102 VLOG(startup) << "RosAllocSpace::Create entering " << name
103 << " initial_size=" << PrettySize(initial_size)
104 << " growth_limit=" << PrettySize(growth_limit)
105 << " capacity=" << PrettySize(capacity)
106 << " requested_begin=" << reinterpret_cast<void*>(requested_begin);
107 }
108
109 // Memory we promise to rosalloc before it asks for morecore.
110 // Note: making this value large means that large allocations are unlikely to succeed as rosalloc
111 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
112 // size of the large allocation) will be greater than the footprint limit.
Hiroshi Yamauchi5ccd4982014-03-11 12:19:04 -0700113 size_t starting_size = Heap::kDefaultStartingSize;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700114 MemMap* mem_map = CreateMemMap(name, starting_size, &initial_size, &growth_limit, &capacity,
115 requested_begin);
116 if (mem_map == NULL) {
117 LOG(ERROR) << "Failed to create mem map for alloc space (" << name << ") of size "
118 << PrettySize(capacity);
119 return NULL;
120 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700121
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800122 RosAllocSpace* space = CreateFromMemMap(mem_map, name, starting_size, initial_size,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700123 growth_limit, capacity, low_memory_mode,
124 can_move_objects);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700125 // We start out with only the initial size possibly containing objects.
126 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
127 LOG(INFO) << "RosAllocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
128 << " ) " << *space;
129 }
130 return space;
131}
132
Mathieu Chartier31f44142014-04-08 14:40:03 -0700133allocator::RosAlloc* RosAllocSpace::CreateRosAlloc(void* begin, size_t morecore_start,
134 size_t initial_size,
Andreas Gamped7576322014-10-24 22:13:45 -0700135 size_t maximum_size, bool low_memory_mode,
136 bool running_on_valgrind) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700137 // clear errno to allow PLOG on error
138 errno = 0;
139 // create rosalloc using our backing storage starting at begin and
140 // with a footprint of morecore_start. When morecore_start bytes of
141 // memory is exhaused morecore will be called.
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800142 allocator::RosAlloc* rosalloc = new art::gc::allocator::RosAlloc(
Hiroshi Yamauchi26d69ff2014-02-27 11:27:10 -0800143 begin, morecore_start, maximum_size,
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800144 low_memory_mode ?
145 art::gc::allocator::RosAlloc::kPageReleaseModeAll :
Andreas Gamped7576322014-10-24 22:13:45 -0700146 art::gc::allocator::RosAlloc::kPageReleaseModeSizeAndEnd,
147 running_on_valgrind);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700148 if (rosalloc != NULL) {
149 rosalloc->SetFootprintLimit(initial_size);
150 } else {
151 PLOG(ERROR) << "RosAlloc::Create failed";
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800152 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700153 return rosalloc;
154}
155
Ian Rogers6fac4472014-02-25 17:01:10 -0800156mirror::Object* RosAllocSpace::AllocWithGrowth(Thread* self, size_t num_bytes,
157 size_t* bytes_allocated, size_t* usable_size) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700158 mirror::Object* result;
159 {
160 MutexLock mu(self, lock_);
161 // Grow as much as possible within the space.
162 size_t max_allowed = Capacity();
163 rosalloc_->SetFootprintLimit(max_allowed);
164 // Try the allocation.
Ian Rogers6fac4472014-02-25 17:01:10 -0800165 result = AllocCommon(self, num_bytes, bytes_allocated, usable_size);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700166 // Shrink back down as small as possible.
167 size_t footprint = rosalloc_->Footprint();
168 rosalloc_->SetFootprintLimit(footprint);
169 }
170 // Note RosAlloc zeroes memory internally.
171 // Return the new allocation or NULL.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700172 CHECK(!kDebugSpaces || result == nullptr || Contains(result));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700173 return result;
174}
175
Andreas Gamped7576322014-10-24 22:13:45 -0700176MallocSpace* RosAllocSpace::CreateInstance(MemMap* mem_map, const std::string& name,
177 void* allocator, uint8_t* begin, uint8_t* end,
178 uint8_t* limit, size_t growth_limit,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700179 bool can_move_objects) {
Andreas Gamped7576322014-10-24 22:13:45 -0700180 if (Runtime::Current()->RunningOnValgrind()) {
181 return new ValgrindMallocSpace<RosAllocSpace, kDefaultValgrindRedZoneBytes, false, true>(
182 mem_map, initial_size_, name, reinterpret_cast<allocator::RosAlloc*>(allocator), begin, end,
183 limit, growth_limit, can_move_objects, starting_size_, low_memory_mode_);
184 } else {
185 return new RosAllocSpace(mem_map, initial_size_, name,
186 reinterpret_cast<allocator::RosAlloc*>(allocator), begin, end, limit,
187 growth_limit, can_move_objects, starting_size_, low_memory_mode_);
188 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700189}
190
191size_t RosAllocSpace::Free(Thread* self, mirror::Object* ptr) {
192 if (kDebugSpaces) {
193 CHECK(ptr != NULL);
194 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
195 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700196 if (kRecentFreeCount > 0) {
197 MutexLock mu(self, lock_);
198 RegisterRecentFree(ptr);
199 }
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700200 return rosalloc_->Free(self, ptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700201}
202
203size_t RosAllocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) {
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700204 DCHECK(ptrs != nullptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700205
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700206 size_t verify_bytes = 0;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700207 for (size_t i = 0; i < num_ptrs; i++) {
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700208 if (kPrefetchDuringRosAllocFreeList && i + kPrefetchLookAhead < num_ptrs) {
209 __builtin_prefetch(reinterpret_cast<char*>(ptrs[i + kPrefetchLookAhead]));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700210 }
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700211 if (kVerifyFreedBytes) {
212 verify_bytes += AllocationSizeNonvirtual(ptrs[i], nullptr);
213 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700214 }
215
216 if (kRecentFreeCount > 0) {
217 MutexLock mu(self, lock_);
218 for (size_t i = 0; i < num_ptrs; i++) {
219 RegisterRecentFree(ptrs[i]);
220 }
221 }
222
223 if (kDebugSpaces) {
224 size_t num_broken_ptrs = 0;
225 for (size_t i = 0; i < num_ptrs; i++) {
226 if (!Contains(ptrs[i])) {
227 num_broken_ptrs++;
228 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
229 } else {
230 size_t size = rosalloc_->UsableSize(ptrs[i]);
231 memset(ptrs[i], 0xEF, size);
232 }
233 }
234 CHECK_EQ(num_broken_ptrs, 0u);
235 }
236
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700237 const size_t bytes_freed = rosalloc_->BulkFree(self, reinterpret_cast<void**>(ptrs), num_ptrs);
238 if (kVerifyFreedBytes) {
239 CHECK_EQ(verify_bytes, bytes_freed);
240 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700241 return bytes_freed;
242}
243
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700244size_t RosAllocSpace::Trim() {
Hiroshi Yamauchid9a88de2014-04-07 13:52:31 -0700245 VLOG(heap) << "RosAllocSpace::Trim() ";
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800246 {
247 MutexLock mu(Thread::Current(), lock_);
248 // Trim to release memory at the end of the space.
249 rosalloc_->Trim();
250 }
251 // Attempt to release pages if it does not release all empty pages.
252 if (!rosalloc_->DoesReleaseAllPages()) {
Hiroshi Yamauchid9a88de2014-04-07 13:52:31 -0700253 return rosalloc_->ReleasePages();
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800254 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700255 return 0;
256}
257
258void RosAllocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
259 void* arg) {
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700260 InspectAllRosAlloc(callback, arg, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700261}
262
263size_t RosAllocSpace::GetFootprint() {
264 MutexLock mu(Thread::Current(), lock_);
265 return rosalloc_->Footprint();
266}
267
268size_t RosAllocSpace::GetFootprintLimit() {
269 MutexLock mu(Thread::Current(), lock_);
270 return rosalloc_->FootprintLimit();
271}
272
273void RosAllocSpace::SetFootprintLimit(size_t new_size) {
274 MutexLock mu(Thread::Current(), lock_);
275 VLOG(heap) << "RosAllocSpace::SetFootprintLimit " << PrettySize(new_size);
276 // Compare against the actual footprint, rather than the Size(), because the heap may not have
277 // grown all the way to the allowed size yet.
278 size_t current_space_size = rosalloc_->Footprint();
279 if (new_size < current_space_size) {
280 // Don't let the space grow any more.
281 new_size = current_space_size;
282 }
283 rosalloc_->SetFootprintLimit(new_size);
284}
285
286uint64_t RosAllocSpace::GetBytesAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800287 size_t bytes_allocated = 0;
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700288 InspectAllRosAlloc(art::gc::allocator::RosAlloc::BytesAllocatedCallback, &bytes_allocated, false);
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800289 return bytes_allocated;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700290}
291
292uint64_t RosAllocSpace::GetObjectsAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800293 size_t objects_allocated = 0;
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700294 InspectAllRosAlloc(art::gc::allocator::RosAlloc::ObjectsAllocatedCallback, &objects_allocated, false);
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800295 return objects_allocated;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700296}
297
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700298void RosAllocSpace::InspectAllRosAllocWithSuspendAll(
299 void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
300 void* arg, bool do_null_callback_at_end) NO_THREAD_SAFETY_ANALYSIS {
301 // TODO: NO_THREAD_SAFETY_ANALYSIS.
302 Thread* self = Thread::Current();
303 ThreadList* tl = Runtime::Current()->GetThreadList();
304 tl->SuspendAll();
305 {
306 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
307 MutexLock mu2(self, *Locks::thread_list_lock_);
308 rosalloc_->InspectAll(callback, arg);
309 if (do_null_callback_at_end) {
310 callback(NULL, NULL, 0, arg); // Indicate end of a space.
311 }
312 }
313 tl->ResumeAll();
314}
315
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700316void RosAllocSpace::InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700317 void* arg, bool do_null_callback_at_end) NO_THREAD_SAFETY_ANALYSIS {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700318 // TODO: NO_THREAD_SAFETY_ANALYSIS.
319 Thread* self = Thread::Current();
320 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
321 // The mutators are already suspended. For example, a call path
322 // from SignalCatcher::HandleSigQuit().
323 rosalloc_->InspectAll(callback, arg);
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700324 if (do_null_callback_at_end) {
325 callback(NULL, NULL, 0, arg); // Indicate end of a space.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700326 }
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700327 } else if (Locks::mutator_lock_->IsSharedHeld(self)) {
328 // The mutators are not suspended yet and we have a shared access
329 // to the mutator lock. Temporarily release the shared access by
330 // transitioning to the suspend state, and suspend the mutators.
331 self->TransitionFromRunnableToSuspended(kSuspended);
332 InspectAllRosAllocWithSuspendAll(callback, arg, do_null_callback_at_end);
333 self->TransitionFromSuspendedToRunnable();
334 Locks::mutator_lock_->AssertSharedHeld(self);
335 } else {
336 // The mutators are not suspended yet. Suspend the mutators.
337 InspectAllRosAllocWithSuspendAll(callback, arg, do_null_callback_at_end);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700338 }
339}
340
341void RosAllocSpace::RevokeThreadLocalBuffers(Thread* thread) {
342 rosalloc_->RevokeThreadLocalRuns(thread);
343}
344
345void RosAllocSpace::RevokeAllThreadLocalBuffers() {
346 rosalloc_->RevokeAllThreadLocalRuns();
347}
348
Ian Rogers68d8b422014-07-17 11:09:10 -0700349void RosAllocSpace::AssertThreadLocalBuffersAreRevoked(Thread* thread) {
350 if (kIsDebugBuild) {
351 rosalloc_->AssertThreadLocalRunsAreRevoked(thread);
352 }
353}
354
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700355void RosAllocSpace::AssertAllThreadLocalBuffersAreRevoked() {
356 if (kIsDebugBuild) {
357 rosalloc_->AssertAllThreadLocalRunsAreRevoked();
358 }
359}
360
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800361void RosAllocSpace::Clear() {
Mathieu Chartier31f44142014-04-08 14:40:03 -0700362 size_t footprint_limit = GetFootprintLimit();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800363 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700364 live_bitmap_->Clear();
365 mark_bitmap_->Clear();
Ian Rogersbe2a1df2014-07-10 00:56:36 -0700366 SetEnd(begin_ + starting_size_);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700367 delete rosalloc_;
368 rosalloc_ = CreateRosAlloc(mem_map_->Begin(), starting_size_, initial_size_, Capacity(),
Andreas Gamped7576322014-10-24 22:13:45 -0700369 low_memory_mode_, Runtime::Current()->RunningOnValgrind());
Mathieu Chartier31f44142014-04-08 14:40:03 -0700370 SetFootprintLimit(footprint_limit);
Mathieu Chartier15d34022014-02-26 17:16:38 -0800371}
372
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700373} // namespace space
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800374
375namespace allocator {
376
377// Callback from rosalloc when it needs to increase the footprint.
378void* ArtRosAllocMoreCore(allocator::RosAlloc* rosalloc, intptr_t increment) {
379 Heap* heap = Runtime::Current()->GetHeap();
380 art::gc::space::RosAllocSpace* rosalloc_space = heap->GetRosAllocSpace(rosalloc);
381 DCHECK(rosalloc_space != nullptr);
382 DCHECK_EQ(rosalloc_space->GetRosAlloc(), rosalloc);
383 return rosalloc_space->MoreCore(increment);
384}
385
386} // namespace allocator
387
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700388} // namespace gc
389} // namespace art