blob: a3eef90e3a80bd92b72c6bc0849c4a3fc16b55bb [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 */
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070016
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -070017#include "dlmalloc_space-inl.h"
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070018
Andreas Gampe170331f2017-12-07 18:41:03 -080019#include "base/logging.h" // For VLOG.
Vladimir Marko80afd022015-05-19 18:08:00 +010020#include "base/time_utils.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070021#include "gc/accounting/card_table.h"
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070022#include "gc/accounting/space_bitmap-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070023#include "gc/heap.h"
Nicolas Geoffray0a3be162015-11-18 11:15:22 +000024#include "jit/jit.h"
25#include "jit/jit_code_cache.h"
Evgenii Stepanov1e133742015-05-20 12:30:59 -070026#include "memory_tool_malloc_space-inl.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070027#include "mirror/class-inl.h"
Mathieu Chartier0f72e412013-09-06 16:40:01 -070028#include "mirror/object-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "runtime.h"
Andreas Gampe508fdf32017-06-05 16:42:13 -070030#include "scoped_thread_state_change-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "thread.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070032#include "thread_list.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070033#include "utils.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034
Carl Shapiro69759ea2011-07-21 18:13:35 -070035namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070036namespace gc {
37namespace space {
Ian Rogers30fab402012-01-23 15:43:46 -080038
Ian Rogers6fac4472014-02-25 17:01:10 -080039static constexpr bool kPrefetchDuringDlMallocFreeList = true;
40
Andreas Gamped7576322014-10-24 22:13:45 -070041DlMallocSpace::DlMallocSpace(MemMap* mem_map, size_t initial_size, const std::string& name,
42 void* mspace, uint8_t* begin, uint8_t* end, uint8_t* limit,
43 size_t growth_limit, bool can_move_objects, size_t starting_size)
Mathieu Chartier31f44142014-04-08 14:40:03 -070044 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects,
45 starting_size, initial_size),
46 mspace_(mspace) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070047 CHECK(mspace != nullptr);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070048}
49
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080050DlMallocSpace* DlMallocSpace::CreateFromMemMap(MemMap* mem_map, const std::string& name,
Mathieu Chartier661974a2014-01-09 11:23:53 -080051 size_t starting_size, size_t initial_size,
Mathieu Chartier31f44142014-04-08 14:40:03 -070052 size_t growth_limit, size_t capacity,
53 bool can_move_objects) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080054 DCHECK(mem_map != nullptr);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070055 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080056 if (mspace == nullptr) {
Ian Rogers30fab402012-01-23 15:43:46 -080057 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080058 return nullptr;
Ian Rogers30fab402012-01-23 15:43:46 -080059 }
60
lzang1385de732014-02-21 14:15:01 +080061 // Protect memory beyond the starting size. morecore will add r/w permissions when necessory
Ian Rogers13735952014-10-08 12:43:28 -070062 uint8_t* end = mem_map->Begin() + starting_size;
lzang1385de732014-02-21 14:15:01 +080063 if (capacity - starting_size > 0) {
Mathieu Chartier3425d022017-10-03 16:22:05 -070064 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE);
Ian Rogers30fab402012-01-23 15:43:46 -080065 }
66
67 // Everything is set so record in immutable structure and leave
Ian Rogers13735952014-10-08 12:43:28 -070068 uint8_t* begin = mem_map->Begin();
Evgenii Stepanov1e133742015-05-20 12:30:59 -070069 if (Runtime::Current()->IsRunningOnMemoryTool()) {
70 return new MemoryToolMallocSpace<DlMallocSpace, kDefaultMemoryToolRedZoneBytes, true, false>(
Andreas Gamped7576322014-10-24 22:13:45 -070071 mem_map, initial_size, name, mspace, begin, end, begin + capacity, growth_limit,
Mathieu Chartier31f44142014-04-08 14:40:03 -070072 can_move_objects, starting_size);
Ian Rogers1d54e732013-05-02 21:10:01 -070073 } else {
Andreas Gamped7576322014-10-24 22:13:45 -070074 return new DlMallocSpace(mem_map, initial_size, name, mspace, begin, end, begin + capacity,
75 growth_limit, can_move_objects, starting_size);
Ian Rogers1d54e732013-05-02 21:10:01 -070076 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080077}
78
Mathieu Chartier31f44142014-04-08 14:40:03 -070079DlMallocSpace* DlMallocSpace::Create(const std::string& name, size_t initial_size,
Ian Rogers13735952014-10-08 12:43:28 -070080 size_t growth_limit, size_t capacity, uint8_t* requested_begin,
Mathieu Chartier31f44142014-04-08 14:40:03 -070081 bool can_move_objects) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080082 uint64_t start_time = 0;
83 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
84 start_time = NanoTime();
85 LOG(INFO) << "DlMallocSpace::Create entering " << name
86 << " initial_size=" << PrettySize(initial_size)
87 << " growth_limit=" << PrettySize(growth_limit)
88 << " capacity=" << PrettySize(capacity)
89 << " requested_begin=" << reinterpret_cast<void*>(requested_begin);
90 }
91
92 // Memory we promise to dlmalloc before it asks for morecore.
93 // Note: making this value large means that large allocations are unlikely to succeed as dlmalloc
94 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
95 // size of the large allocation) will be greater than the footprint limit.
96 size_t starting_size = kPageSize;
97 MemMap* mem_map = CreateMemMap(name, starting_size, &initial_size, &growth_limit, &capacity,
98 requested_begin);
99 if (mem_map == nullptr) {
100 LOG(ERROR) << "Failed to create mem map for alloc space (" << name << ") of size "
101 << PrettySize(capacity);
102 return nullptr;
103 }
104 DlMallocSpace* space = CreateFromMemMap(mem_map, name, starting_size, initial_size,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700105 growth_limit, capacity, can_move_objects);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700106 // We start out with only the initial size possibly containing objects.
Ian Rogers30fab402012-01-23 15:43:46 -0800107 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700108 LOG(INFO) << "DlMallocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
Ian Rogers3bb17a62012-01-27 23:56:44 -0800109 << " ) " << *space;
Ian Rogers30fab402012-01-23 15:43:46 -0800110 }
111 return space;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700112}
113
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700114void* DlMallocSpace::CreateMspace(void* begin, size_t morecore_start, size_t initial_size) {
Ian Rogers30fab402012-01-23 15:43:46 -0800115 // clear errno to allow PLOG on error
Carl Shapiro69759ea2011-07-21 18:13:35 -0700116 errno = 0;
Ian Rogers3bb17a62012-01-27 23:56:44 -0800117 // create mspace using our backing storage starting at begin and with a footprint of
118 // morecore_start. Don't use an internal dlmalloc lock (as we already hold heap lock). When
119 // morecore_start bytes of memory is exhaused morecore will be called.
120 void* msp = create_mspace_with_base(begin, morecore_start, false /*locked*/);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800121 if (msp != nullptr) {
Ian Rogers30fab402012-01-23 15:43:46 -0800122 // Do not allow morecore requests to succeed beyond the initial size of the heap
Ian Rogers3bb17a62012-01-27 23:56:44 -0800123 mspace_set_footprint_limit(msp, initial_size);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700124 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800125 PLOG(ERROR) << "create_mspace_with_base failed";
Carl Shapiro69759ea2011-07-21 18:13:35 -0700126 }
127 return msp;
128}
129
Ian Rogers6fac4472014-02-25 17:01:10 -0800130mirror::Object* DlMallocSpace::AllocWithGrowth(Thread* self, size_t num_bytes,
Hiroshi Yamauchi4460a842015-03-09 11:57:48 -0700131 size_t* bytes_allocated, size_t* usable_size,
132 size_t* bytes_tl_bulk_allocated) {
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700133 mirror::Object* result;
134 {
135 MutexLock mu(self, lock_);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700136 // Grow as much as possible within the space.
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700137 size_t max_allowed = Capacity();
138 mspace_set_footprint_limit(mspace_, max_allowed);
139 // Try the allocation.
Hiroshi Yamauchi4460a842015-03-09 11:57:48 -0700140 result = AllocWithoutGrowthLocked(self, num_bytes, bytes_allocated, usable_size,
141 bytes_tl_bulk_allocated);
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700142 // Shrink back down as small as possible.
143 size_t footprint = mspace_footprint(mspace_);
144 mspace_set_footprint_limit(mspace_, footprint);
jeffhaoc1160702011-10-27 15:48:45 -0700145 }
Mathieu Chartier661974a2014-01-09 11:23:53 -0800146 if (result != nullptr) {
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700147 // Zero freshly allocated memory, done while not holding the space's lock.
148 memset(result, 0, num_bytes);
Mathieu Chartier661974a2014-01-09 11:23:53 -0800149 // Check that the result is contained in the space.
150 CHECK(!kDebugSpaces || Contains(result));
Hiroshi Yamauchi50b29282013-07-30 13:58:37 -0700151 }
Ian Rogers30fab402012-01-23 15:43:46 -0800152 return result;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700153}
154
Andreas Gamped7576322014-10-24 22:13:45 -0700155MallocSpace* DlMallocSpace::CreateInstance(MemMap* mem_map, const std::string& name,
Ian Rogers13735952014-10-08 12:43:28 -0700156 void* allocator, uint8_t* begin, uint8_t* end,
157 uint8_t* limit, size_t growth_limit,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700158 bool can_move_objects) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700159 if (Runtime::Current()->IsRunningOnMemoryTool()) {
160 return new MemoryToolMallocSpace<DlMallocSpace, kDefaultMemoryToolRedZoneBytes, true, false>(
Andreas Gamped7576322014-10-24 22:13:45 -0700161 mem_map, initial_size_, name, allocator, begin, end, limit, growth_limit,
162 can_move_objects, starting_size_);
163 } else {
164 return new DlMallocSpace(mem_map, initial_size_, name, allocator, begin, end, limit,
165 growth_limit, can_move_objects, starting_size_);
166 }
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700167}
168
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800169size_t DlMallocSpace::Free(Thread* self, mirror::Object* ptr) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700170 MutexLock mu(self, lock_);
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700171 if (kDebugSpaces) {
Mathieu Chartier661974a2014-01-09 11:23:53 -0800172 CHECK(ptr != nullptr);
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700173 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
174 }
Ian Rogers6fac4472014-02-25 17:01:10 -0800175 const size_t bytes_freed = AllocationSizeNonvirtual(ptr, nullptr);
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700176 if (kRecentFreeCount > 0) {
177 RegisterRecentFree(ptr);
178 }
Ian Rogers30fab402012-01-23 15:43:46 -0800179 mspace_free(mspace_, ptr);
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700180 return bytes_freed;
Ian Rogers30fab402012-01-23 15:43:46 -0800181}
182
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183size_t DlMallocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700184 DCHECK(ptrs != nullptr);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800185
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700186 // Don't need the lock to calculate the size of the freed pointers.
187 size_t bytes_freed = 0;
188 for (size_t i = 0; i < num_ptrs; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800189 mirror::Object* ptr = ptrs[i];
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800190 const size_t look_ahead = 8;
191 if (kPrefetchDuringDlMallocFreeList && i + look_ahead < num_ptrs) {
192 // The head of chunk for the allocation is sizeof(size_t) behind the allocation.
193 __builtin_prefetch(reinterpret_cast<char*>(ptrs[i + look_ahead]) - sizeof(size_t));
194 }
Ian Rogers6fac4472014-02-25 17:01:10 -0800195 bytes_freed += AllocationSizeNonvirtual(ptr, nullptr);
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700196 }
197
Mathieu Chartier0f72e412013-09-06 16:40:01 -0700198 if (kRecentFreeCount > 0) {
199 MutexLock mu(self, lock_);
200 for (size_t i = 0; i < num_ptrs; i++) {
201 RegisterRecentFree(ptrs[i]);
202 }
203 }
204
Mathieu Chartier8e9a1492012-10-04 12:25:40 -0700205 if (kDebugSpaces) {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700206 size_t num_broken_ptrs = 0;
207 for (size_t i = 0; i < num_ptrs; i++) {
208 if (!Contains(ptrs[i])) {
209 num_broken_ptrs++;
210 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
211 } else {
212 size_t size = mspace_usable_size(ptrs[i]);
213 memset(ptrs[i], 0xEF, size);
214 }
Ian Rogers30fab402012-01-23 15:43:46 -0800215 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700216 CHECK_EQ(num_broken_ptrs, 0u);
Ian Rogers30fab402012-01-23 15:43:46 -0800217 }
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800218
219 {
220 MutexLock mu(self, lock_);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800221 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs);
222 return bytes_freed;
223 }
Ian Rogers30fab402012-01-23 15:43:46 -0800224}
225
Ian Rogers48931882013-01-22 14:35:16 -0800226size_t DlMallocSpace::Trim() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700227 MutexLock mu(Thread::Current(), lock_);
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700228 // Trim to release memory at the end of the space.
229 mspace_trim(mspace_, 0);
230 // Visit space looking for page-sized holes to advise the kernel we don't need.
Ian Rogers48931882013-01-22 14:35:16 -0800231 size_t reclaimed = 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700232 mspace_inspect_all(mspace_, DlmallocMadviseCallback, &reclaimed);
Ian Rogers48931882013-01-22 14:35:16 -0800233 return reclaimed;
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700234}
Ian Rogers30fab402012-01-23 15:43:46 -0800235
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700236void DlMallocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
Ian Rogers30fab402012-01-23 15:43:46 -0800237 void* arg) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700238 MutexLock mu(Thread::Current(), lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800239 mspace_inspect_all(mspace_, callback, arg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700240 callback(nullptr, nullptr, 0, arg); // Indicate end of a space.
Ian Rogers30fab402012-01-23 15:43:46 -0800241}
242
Hiroshi Yamauchi09b07a92013-07-15 13:17:06 -0700243size_t DlMallocSpace::GetFootprint() {
244 MutexLock mu(Thread::Current(), lock_);
245 return mspace_footprint(mspace_);
246}
247
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700248size_t DlMallocSpace::GetFootprintLimit() {
Ian Rogers50b35e22012-10-04 10:09:15 -0700249 MutexLock mu(Thread::Current(), lock_);
Ian Rogers30fab402012-01-23 15:43:46 -0800250 return mspace_footprint_limit(mspace_);
251}
252
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700253void DlMallocSpace::SetFootprintLimit(size_t new_size) {
Ian Rogers50b35e22012-10-04 10:09:15 -0700254 MutexLock mu(Thread::Current(), lock_);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700255 VLOG(heap) << "DlMallocSpace::SetFootprintLimit " << PrettySize(new_size);
Ian Rogers30fab402012-01-23 15:43:46 -0800256 // Compare against the actual footprint, rather than the Size(), because the heap may not have
257 // grown all the way to the allowed size yet.
Ian Rogers30fab402012-01-23 15:43:46 -0800258 size_t current_space_size = mspace_footprint(mspace_);
259 if (new_size < current_space_size) {
260 // Don't let the space grow any more.
261 new_size = current_space_size;
262 }
263 mspace_set_footprint_limit(mspace_, new_size);
264}
265
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -0700266uint64_t DlMallocSpace::GetBytesAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800267 MutexLock mu(Thread::Current(), lock_);
268 size_t bytes_allocated = 0;
269 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated);
270 return bytes_allocated;
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -0700271}
272
273uint64_t DlMallocSpace::GetObjectsAllocated() {
Hiroshi Yamauchi4ce1f002013-11-18 14:49:09 -0800274 MutexLock mu(Thread::Current(), lock_);
275 size_t objects_allocated = 0;
276 mspace_inspect_all(mspace_, DlmallocObjectsAllocatedCallback, &objects_allocated);
277 return objects_allocated;
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -0700278}
279
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800280void DlMallocSpace::Clear() {
Mathieu Chartier31f44142014-04-08 14:40:03 -0700281 size_t footprint_limit = GetFootprintLimit();
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800282 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700283 live_bitmap_->Clear();
284 mark_bitmap_->Clear();
Ian Rogersbe2a1df2014-07-10 00:56:36 -0700285 SetEnd(Begin() + starting_size_);
Mathieu Chartier31f44142014-04-08 14:40:03 -0700286 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_);
287 SetFootprintLimit(footprint_limit);
Mathieu Chartier15d34022014-02-26 17:16:38 -0800288}
289
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700290#ifndef NDEBUG
291void DlMallocSpace::CheckMoreCoreForPrecondition() {
292 lock_.AssertHeld(Thread::Current());
293}
294#endif
295
Hiroshi Yamauchi654dd482014-07-09 12:54:32 -0700296static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
297 size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
298 if (used_bytes < chunk_size) {
299 size_t chunk_free_bytes = chunk_size - used_bytes;
300 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
301 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
302 }
303}
304
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700305void DlMallocSpace::LogFragmentationAllocFailure(std::ostream& os,
306 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) {
307 Thread* const self = Thread::Current();
Hiroshi Yamauchi654dd482014-07-09 12:54:32 -0700308 size_t max_contiguous_allocation = 0;
309 // To allow the Walk/InspectAll() to exclusively-lock the mutator
310 // lock, temporarily release the shared access to the mutator
311 // lock here by transitioning to the suspended state.
312 Locks::mutator_lock_->AssertSharedHeld(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700313 ScopedThreadSuspension sts(self, kSuspended);
Hiroshi Yamauchi654dd482014-07-09 12:54:32 -0700314 Walk(MSpaceChunkCallback, &max_contiguous_allocation);
Hiroshi Yamauchi654dd482014-07-09 12:54:32 -0700315 os << "; failed due to fragmentation (largest possible contiguous allocation "
316 << max_contiguous_allocation << " bytes)";
317}
318
Ian Rogers1d54e732013-05-02 21:10:01 -0700319} // namespace space
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800320
321namespace allocator {
322
323// Implement the dlmalloc morecore callback.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700324void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000325 Runtime* runtime = Runtime::Current();
326 Heap* heap = runtime->GetHeap();
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800327 ::art::gc::space::DlMallocSpace* dlmalloc_space = heap->GetDlMallocSpace();
328 // Support for multiple DlMalloc provided by a slow path.
329 if (UNLIKELY(dlmalloc_space == nullptr || dlmalloc_space->GetMspace() != mspace)) {
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000330 if (LIKELY(runtime->GetJit() != nullptr)) {
331 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache();
332 if (code_cache->OwnsSpace(mspace)) {
333 return code_cache->MoreCore(mspace, increment);
334 }
335 }
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800336 dlmalloc_space = nullptr;
337 for (space::ContinuousSpace* space : heap->GetContinuousSpaces()) {
338 if (space->IsDlMallocSpace()) {
339 ::art::gc::space::DlMallocSpace* cur_dlmalloc_space = space->AsDlMallocSpace();
340 if (cur_dlmalloc_space->GetMspace() == mspace) {
341 dlmalloc_space = cur_dlmalloc_space;
342 break;
343 }
344 }
345 }
346 CHECK(dlmalloc_space != nullptr) << "Couldn't find DlmMallocSpace with mspace=" << mspace;
347 }
348 return dlmalloc_space->MoreCore(increment);
349}
350
351} // namespace allocator
352
Ian Rogers1d54e732013-05-02 21:10:01 -0700353} // namespace gc
Carl Shapiro69759ea2011-07-21 18:13:35 -0700354} // namespace art