blob: 161eba9c1d7959d798f5f45a45f7b3ff4a04b265 [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
47RosAllocSpace::RosAllocSpace(const std::string& name, MemMap* mem_map,
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,
Mathieu Chartier31f44142014-04-08 14:40:03 -070050 size_t starting_size, size_t initial_size, bool low_memory_mode)
51 : 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);
62 allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(), starting_size, initial_size,
Hiroshi Yamauchi26d69ff2014-02-27 11:27:10 -080063 capacity, low_memory_mode);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080064 if (rosalloc == NULL) {
65 LOG(ERROR) << "Failed to initialize rosalloc for alloc space (" << name << ")";
66 return NULL;
67 }
68
lzang1385de732014-02-21 14:15:01 +080069 // Protect memory beyond the starting size. MoreCore will add r/w permissions when necessory
Ian Rogers13735952014-10-08 12:43:28 -070070 uint8_t* end = mem_map->Begin() + starting_size;
lzang1385de732014-02-21 14:15:01 +080071 if (capacity - starting_size > 0) {
72 CHECK_MEMORY_CALL(mprotect, (end, capacity - starting_size, PROT_NONE), name);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080073 }
74
75 // Everything is set so record in immutable structure and leave
Ian Rogers13735952014-10-08 12:43:28 -070076 uint8_t* begin = mem_map->Begin();
Mathieu Chartier661974a2014-01-09 11:23:53 -080077 // TODO: Fix RosAllocSpace to support valgrind. There is currently some issues with
78 // AllocationSize caused by redzones. b/12944686
Ian Rogerscf7f1912014-10-22 22:06:39 -070079 if (Runtime::Current()->RunningOnValgrind()) {
80 UNIMPLEMENTED(FATAL);
81 UNREACHABLE();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080082 } else {
Mathieu Chartier31f44142014-04-08 14:40:03 -070083 return new RosAllocSpace(name, mem_map, rosalloc, begin, end, begin + capacity, growth_limit,
84 can_move_objects, starting_size, initial_size, low_memory_mode);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080085 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080086}
87
Mathieu Chartier661974a2014-01-09 11:23:53 -080088RosAllocSpace::~RosAllocSpace() {
89 delete rosalloc_;
90}
91
Ian Rogers6fac4472014-02-25 17:01:10 -080092RosAllocSpace* RosAllocSpace::Create(const std::string& name, size_t initial_size,
Ian Rogers13735952014-10-08 12:43:28 -070093 size_t growth_limit, size_t capacity, uint8_t* requested_begin,
Mathieu Chartier31f44142014-04-08 14:40:03 -070094 bool low_memory_mode, bool can_move_objects) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070095 uint64_t start_time = 0;
96 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
97 start_time = NanoTime();
98 VLOG(startup) << "RosAllocSpace::Create entering " << name
99 << " initial_size=" << PrettySize(initial_size)
100 << " growth_limit=" << PrettySize(growth_limit)
101 << " capacity=" << PrettySize(capacity)
102 << " requested_begin=" << reinterpret_cast<void*>(requested_begin);
103 }
104
105 // Memory we promise to rosalloc before it asks for morecore.
106 // Note: making this value large means that large allocations are unlikely to succeed as rosalloc
107 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
108 // size of the large allocation) will be greater than the footprint limit.
Hiroshi Yamauchi5ccd4982014-03-11 12:19:04 -0700109 size_t starting_size = Heap::kDefaultStartingSize;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700110 MemMap* mem_map = CreateMemMap(name, starting_size, &initial_size, &growth_limit, &capacity,
111 requested_begin);
112 if (mem_map == NULL) {
113 LOG(ERROR) << "Failed to create mem map for alloc space (" << name << ") of size "
114 << PrettySize(capacity);
115 return NULL;
116 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700117
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800118 RosAllocSpace* space = CreateFromMemMap(mem_map, name, starting_size, initial_size,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700119 growth_limit, capacity, low_memory_mode,
120 can_move_objects);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700121 // We start out with only the initial size possibly containing objects.
122 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
123 LOG(INFO) << "RosAllocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
124 << " ) " << *space;
125 }
126 return space;
127}
128
Mathieu Chartier31f44142014-04-08 14:40:03 -0700129allocator::RosAlloc* RosAllocSpace::CreateRosAlloc(void* begin, size_t morecore_start,
130 size_t initial_size,
Hiroshi Yamauchi26d69ff2014-02-27 11:27:10 -0800131 size_t maximum_size, bool low_memory_mode) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700132 // clear errno to allow PLOG on error
133 errno = 0;
134 // create rosalloc using our backing storage starting at begin and
135 // with a footprint of morecore_start. When morecore_start bytes of
136 // memory is exhaused morecore will be called.
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800137 allocator::RosAlloc* rosalloc = new art::gc::allocator::RosAlloc(
Hiroshi Yamauchi26d69ff2014-02-27 11:27:10 -0800138 begin, morecore_start, maximum_size,
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800139 low_memory_mode ?
140 art::gc::allocator::RosAlloc::kPageReleaseModeAll :
141 art::gc::allocator::RosAlloc::kPageReleaseModeSizeAndEnd);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700142 if (rosalloc != NULL) {
143 rosalloc->SetFootprintLimit(initial_size);
144 } else {
145 PLOG(ERROR) << "RosAlloc::Create failed";
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800146 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700147 return rosalloc;
148}
149
Ian Rogers6fac4472014-02-25 17:01:10 -0800150mirror::Object* RosAllocSpace::AllocWithGrowth(Thread* self, size_t num_bytes,
151 size_t* bytes_allocated, size_t* usable_size) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700152 mirror::Object* result;
153 {
154 MutexLock mu(self, lock_);
155 // Grow as much as possible within the space.
156 size_t max_allowed = Capacity();
157 rosalloc_->SetFootprintLimit(max_allowed);
158 // Try the allocation.
Ian Rogers6fac4472014-02-25 17:01:10 -0800159 result = AllocCommon(self, num_bytes, bytes_allocated, usable_size);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700160 // Shrink back down as small as possible.
161 size_t footprint = rosalloc_->Footprint();
162 rosalloc_->SetFootprintLimit(footprint);
163 }
164 // Note RosAlloc zeroes memory internally.
165 // Return the new allocation or NULL.
Mathieu Chartier0651d412014-04-29 14:37:57 -0700166 CHECK(!kDebugSpaces || result == nullptr || Contains(result));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700167 return result;
168}
169
170MallocSpace* RosAllocSpace::CreateInstance(const std::string& name, MemMap* mem_map, void* allocator,
Ian Rogers13735952014-10-08 12:43:28 -0700171 uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700172 bool can_move_objects) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700173 return new RosAllocSpace(name, mem_map, reinterpret_cast<allocator::RosAlloc*>(allocator),
Mathieu Chartier31f44142014-04-08 14:40:03 -0700174 begin, end, limit, growth_limit, can_move_objects, starting_size_,
175 initial_size_, low_memory_mode_);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700176}
177
178size_t RosAllocSpace::Free(Thread* self, mirror::Object* ptr) {
179 if (kDebugSpaces) {
180 CHECK(ptr != NULL);
181 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
182 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700183 if (kRecentFreeCount > 0) {
184 MutexLock mu(self, lock_);
185 RegisterRecentFree(ptr);
186 }
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700187 return rosalloc_->Free(self, ptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700188}
189
190size_t RosAllocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) {
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700191 DCHECK(ptrs != nullptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700192
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700193 size_t verify_bytes = 0;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700194 for (size_t i = 0; i < num_ptrs; i++) {
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700195 if (kPrefetchDuringRosAllocFreeList && i + kPrefetchLookAhead < num_ptrs) {
196 __builtin_prefetch(reinterpret_cast<char*>(ptrs[i + kPrefetchLookAhead]));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700197 }
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700198 if (kVerifyFreedBytes) {
199 verify_bytes += AllocationSizeNonvirtual(ptrs[i], nullptr);
200 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700201 }
202
203 if (kRecentFreeCount > 0) {
204 MutexLock mu(self, lock_);
205 for (size_t i = 0; i < num_ptrs; i++) {
206 RegisterRecentFree(ptrs[i]);
207 }
208 }
209
210 if (kDebugSpaces) {
211 size_t num_broken_ptrs = 0;
212 for (size_t i = 0; i < num_ptrs; i++) {
213 if (!Contains(ptrs[i])) {
214 num_broken_ptrs++;
215 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
216 } else {
217 size_t size = rosalloc_->UsableSize(ptrs[i]);
218 memset(ptrs[i], 0xEF, size);
219 }
220 }
221 CHECK_EQ(num_broken_ptrs, 0u);
222 }
223
Mathieu Chartier8585bad2014-04-11 17:53:48 -0700224 const size_t bytes_freed = rosalloc_->BulkFree(self, reinterpret_cast<void**>(ptrs), num_ptrs);
225 if (kVerifyFreedBytes) {
226 CHECK_EQ(verify_bytes, bytes_freed);
227 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700228 return bytes_freed;
229}
230
231// Callback from rosalloc when it needs to increase the footprint
232extern "C" void* art_heap_rosalloc_morecore(allocator::RosAlloc* rosalloc, intptr_t increment) {
233 Heap* heap = Runtime::Current()->GetHeap();
Zuo Wangf37a88b2014-07-10 04:26:41 -0700234 RosAllocSpace* rosalloc_space = heap->GetRosAllocSpace(rosalloc);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800235 DCHECK(rosalloc_space != nullptr);
236 DCHECK_EQ(rosalloc_space->GetRosAlloc(), rosalloc);
237 return rosalloc_space->MoreCore(increment);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700238}
239
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700240size_t RosAllocSpace::Trim() {
Hiroshi Yamauchid9a88de2014-04-07 13:52:31 -0700241 VLOG(heap) << "RosAllocSpace::Trim() ";
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800242 {
243 MutexLock mu(Thread::Current(), lock_);
244 // Trim to release memory at the end of the space.
245 rosalloc_->Trim();
246 }
247 // Attempt to release pages if it does not release all empty pages.
248 if (!rosalloc_->DoesReleaseAllPages()) {
Hiroshi Yamauchid9a88de2014-04-07 13:52:31 -0700249 return rosalloc_->ReleasePages();
Hiroshi Yamauchi573f7d22013-12-17 11:54:23 -0800250 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700251 return 0;
252}
253
254void RosAllocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
255 void* arg) {
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700256 InspectAllRosAlloc(callback, arg, true);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700257}
258
259size_t RosAllocSpace::GetFootprint() {
260 MutexLock mu(Thread::Current(), lock_);
261 return rosalloc_->Footprint();
262}
263
264size_t RosAllocSpace::GetFootprintLimit() {
265 MutexLock mu(Thread::Current(), lock_);
266 return rosalloc_->FootprintLimit();
267}
268
269void RosAllocSpace::SetFootprintLimit(size_t new_size) {
270 MutexLock mu(Thread::Current(), lock_);
271 VLOG(heap) << "RosAllocSpace::SetFootprintLimit " << PrettySize(new_size);
272 // Compare against the actual footprint, rather than the Size(), because the heap may not have
273 // grown all the way to the allowed size yet.
274 size_t current_space_size = rosalloc_->Footprint();
275 if (new_size < current_space_size) {
276 // Don't let the space grow any more.
277 new_size = current_space_size;
278 }
279 rosalloc_->SetFootprintLimit(new_size);
280}
281
282uint64_t RosAllocSpace::GetBytesAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800283 size_t bytes_allocated = 0;
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700284 InspectAllRosAlloc(art::gc::allocator::RosAlloc::BytesAllocatedCallback, &bytes_allocated, false);
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800285 return bytes_allocated;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700286}
287
288uint64_t RosAllocSpace::GetObjectsAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800289 size_t objects_allocated = 0;
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700290 InspectAllRosAlloc(art::gc::allocator::RosAlloc::ObjectsAllocatedCallback, &objects_allocated, false);
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800291 return objects_allocated;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700292}
293
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700294void RosAllocSpace::InspectAllRosAllocWithSuspendAll(
295 void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
296 void* arg, bool do_null_callback_at_end) NO_THREAD_SAFETY_ANALYSIS {
297 // TODO: NO_THREAD_SAFETY_ANALYSIS.
298 Thread* self = Thread::Current();
299 ThreadList* tl = Runtime::Current()->GetThreadList();
300 tl->SuspendAll();
301 {
302 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
303 MutexLock mu2(self, *Locks::thread_list_lock_);
304 rosalloc_->InspectAll(callback, arg);
305 if (do_null_callback_at_end) {
306 callback(NULL, NULL, 0, arg); // Indicate end of a space.
307 }
308 }
309 tl->ResumeAll();
310}
311
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700312void RosAllocSpace::InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700313 void* arg, bool do_null_callback_at_end) NO_THREAD_SAFETY_ANALYSIS {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700314 // TODO: NO_THREAD_SAFETY_ANALYSIS.
315 Thread* self = Thread::Current();
316 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
317 // The mutators are already suspended. For example, a call path
318 // from SignalCatcher::HandleSigQuit().
319 rosalloc_->InspectAll(callback, arg);
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700320 if (do_null_callback_at_end) {
321 callback(NULL, NULL, 0, arg); // Indicate end of a space.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700322 }
Hiroshi Yamauchi1cd53db2014-03-28 15:26:48 -0700323 } else if (Locks::mutator_lock_->IsSharedHeld(self)) {
324 // The mutators are not suspended yet and we have a shared access
325 // to the mutator lock. Temporarily release the shared access by
326 // transitioning to the suspend state, and suspend the mutators.
327 self->TransitionFromRunnableToSuspended(kSuspended);
328 InspectAllRosAllocWithSuspendAll(callback, arg, do_null_callback_at_end);
329 self->TransitionFromSuspendedToRunnable();
330 Locks::mutator_lock_->AssertSharedHeld(self);
331 } else {
332 // The mutators are not suspended yet. Suspend the mutators.
333 InspectAllRosAllocWithSuspendAll(callback, arg, do_null_callback_at_end);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700334 }
335}
336
337void RosAllocSpace::RevokeThreadLocalBuffers(Thread* thread) {
338 rosalloc_->RevokeThreadLocalRuns(thread);
339}
340
341void RosAllocSpace::RevokeAllThreadLocalBuffers() {
342 rosalloc_->RevokeAllThreadLocalRuns();
343}
344
Ian Rogers68d8b422014-07-17 11:09:10 -0700345void RosAllocSpace::AssertThreadLocalBuffersAreRevoked(Thread* thread) {
346 if (kIsDebugBuild) {
347 rosalloc_->AssertThreadLocalRunsAreRevoked(thread);
348 }
349}
350
Hiroshi Yamauchic93c5302014-03-20 16:15:37 -0700351void RosAllocSpace::AssertAllThreadLocalBuffersAreRevoked() {
352 if (kIsDebugBuild) {
353 rosalloc_->AssertAllThreadLocalRunsAreRevoked();
354 }
355}
356
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800357void RosAllocSpace::Clear() {
Mathieu Chartier31f44142014-04-08 14:40:03 -0700358 size_t footprint_limit = GetFootprintLimit();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800359 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700360 live_bitmap_->Clear();
361 mark_bitmap_->Clear();
Ian Rogersbe2a1df2014-07-10 00:56:36 -0700362 SetEnd(begin_ + starting_size_);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700363 delete rosalloc_;
364 rosalloc_ = CreateRosAlloc(mem_map_->Begin(), starting_size_, initial_size_, Capacity(),
365 low_memory_mode_);
366 SetFootprintLimit(footprint_limit);
Mathieu Chartier15d34022014-02-26 17:16:38 -0800367}
368
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700369} // namespace space
370} // namespace gc
371} // namespace art