blob: d951089bb2ca3a88c9bff7c19fcb030bad077a03 [file] [log] [blame]
buzbee862a7602013-04-05 10:58:54 -07001/*
2 * Copyright (C) 2013 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 */
16
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000017#include <algorithm>
Ian Rogers6f3dbba2014-10-14 17:41:57 -070018#include <iomanip>
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000019#include <numeric>
20
buzbee862a7602013-04-05 10:58:54 -070021#include "arena_allocator.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080022#include "logging.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010023#include "mem_map.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080024#include "mutex.h"
Ian Rogers02ed4c02013-09-06 13:10:04 -070025#include "thread-inl.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080026#include "systrace.h"
buzbee862a7602013-04-05 10:58:54 -070027
28namespace art {
29
Evgenii Stepanov1e133742015-05-20 12:30:59 -070030static constexpr size_t kMemoryToolRedZoneBytes = 8;
Mark Mendell45c11652013-12-11 12:27:35 -080031constexpr size_t Arena::kDefaultSize;
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -070032
Vladimir Markobd9e9db2014-03-07 19:41:05 +000033template <bool kCount>
Vladimir Marko8dea81c2014-06-06 14:50:36 +010034const char* const ArenaAllocatorStatsImpl<kCount>::kAllocNames[] = {
Vladimir Markof9f64412015-09-02 14:05:49 +010035 "Misc ",
Vladimir Markof9f64412015-09-02 14:05:49 +010036 "SwitchTbl ",
Vladimir Markof9f64412015-09-02 14:05:49 +010037 "SlowPaths ",
Vladimir Markof9f64412015-09-02 14:05:49 +010038 "GrowBitMap ",
Vladimir Markof9f64412015-09-02 14:05:49 +010039 "STL ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010040 "GraphBuilder ",
Vladimir Markof9f64412015-09-02 14:05:49 +010041 "Graph ",
42 "BasicBlock ",
Vladimir Markofa6b93c2015-09-15 10:15:55 +010043 "BlockList ",
44 "RevPostOrder ",
45 "LinearOrder ",
46 "ConstantsMap ",
Vladimir Marko60584552015-09-03 13:35:12 +000047 "Predecessors ",
48 "Successors ",
49 "Dominated ",
Vladimir Markof9f64412015-09-02 14:05:49 +010050 "Instruction ",
Vladimir Markofa6b93c2015-09-15 10:15:55 +010051 "InvokeInputs ",
52 "PhiInputs ",
Vladimir Markof9f64412015-09-02 14:05:49 +010053 "LoopInfo ",
Vladimir Markofa6b93c2015-09-15 10:15:55 +010054 "LIBackEdges ",
Vladimir Markof9f64412015-09-02 14:05:49 +010055 "TryCatchInf ",
56 "UseListNode ",
57 "Environment ",
Vladimir Markofa6b93c2015-09-15 10:15:55 +010058 "EnvVRegs ",
59 "EnvLocations ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010060 "LocSummary ",
Vladimir Marko71bf8092015-09-15 15:33:14 +010061 "SsaBuilder ",
Vladimir Markof9f64412015-09-02 14:05:49 +010062 "MoveOperands ",
63 "CodeBuffer ",
64 "StackMaps ",
Vladimir Markof9f64412015-09-02 14:05:49 +010065 "Optimization ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010066 "GVN ",
Vladimir Marko5233f932015-09-29 19:01:15 +010067 "InductionVar ",
68 "BCE ",
Vladimir Markof6a35de2016-03-21 12:01:50 +000069 "DCE ",
70 "LSE ",
71 "LICM ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010072 "SsaLiveness ",
73 "SsaPhiElim ",
74 "RefTypeProp ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010075 "SideEffects ",
76 "RegAllocator ",
Vladimir Markof6a35de2016-03-21 12:01:50 +000077 "RegAllocVldt ",
Vladimir Marko225b6462015-09-28 12:17:40 +010078 "StackMapStm ",
79 "CodeGen ",
Vladimir Marko93205e32016-04-13 11:59:46 +010080 "Assembler ",
Vladimir Marko225b6462015-09-28 12:17:40 +010081 "ParallelMove ",
Vladimir Marko655e5852015-10-12 10:38:28 +010082 "GraphChecker ",
Mathieu Chartierde40d472015-10-15 17:47:48 -070083 "Verifier ",
Vladimir Marko93205e32016-04-13 11:59:46 +010084 "CallingConv ",
buzbee862a7602013-04-05 10:58:54 -070085};
86
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000087template <bool kCount>
88ArenaAllocatorStatsImpl<kCount>::ArenaAllocatorStatsImpl()
89 : num_allocations_(0u) {
90 std::fill_n(alloc_stats_, arraysize(alloc_stats_), 0u);
91}
92
93template <bool kCount>
94void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) {
95 num_allocations_ = other.num_allocations_;
96 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_);
97}
98
99template <bool kCount>
100void ArenaAllocatorStatsImpl<kCount>::RecordAlloc(size_t bytes, ArenaAllocKind kind) {
101 alloc_stats_[kind] += bytes;
102 ++num_allocations_;
103}
104
105template <bool kCount>
106size_t ArenaAllocatorStatsImpl<kCount>::NumAllocations() const {
107 return num_allocations_;
108}
109
110template <bool kCount>
111size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const {
112 const size_t init = 0u; // Initial value of the correct type.
113 return std::accumulate(alloc_stats_, alloc_stats_ + arraysize(alloc_stats_), init);
114}
115
116template <bool kCount>
117void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first,
118 ssize_t lost_bytes_adjustment) const {
119 size_t malloc_bytes = 0u;
120 size_t lost_bytes = 0u;
121 size_t num_arenas = 0u;
122 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) {
123 malloc_bytes += arena->Size();
124 lost_bytes += arena->RemainingSpace();
125 ++num_arenas;
126 }
127 // The lost_bytes_adjustment is used to make up for the fact that the current arena
128 // may not have the bytes_allocated_ updated correctly.
129 lost_bytes += lost_bytes_adjustment;
130 const size_t bytes_allocated = BytesAllocated();
131 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
132 << ", lost: " << lost_bytes << "\n";
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000133 size_t num_allocations = NumAllocations();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000134 if (num_allocations != 0) {
135 os << "Number of arenas allocated: " << num_arenas << ", Number of allocations: "
136 << num_allocations << ", avg size: " << bytes_allocated / num_allocations << "\n";
137 }
138 os << "===== Allocation by kind\n";
Andreas Gampe785d2f22014-11-03 22:57:30 -0800139 static_assert(arraysize(kAllocNames) == kNumArenaAllocKinds, "arraysize of kAllocNames");
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000140 for (int i = 0; i < kNumArenaAllocKinds; i++) {
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000141 os << kAllocNames[i] << std::setw(10) << alloc_stats_[i] << "\n";
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000142 }
143}
144
145// Explicitly instantiate the used implementation.
146template class ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations>;
147
Vladimir Marko7bda3b62015-10-07 12:44:31 +0000148void ArenaAllocatorMemoryTool::DoMakeDefined(void* ptr, size_t size) {
149 MEMORY_TOOL_MAKE_DEFINED(ptr, size);
150}
151
152void ArenaAllocatorMemoryTool::DoMakeUndefined(void* ptr, size_t size) {
153 MEMORY_TOOL_MAKE_UNDEFINED(ptr, size);
154}
155
156void ArenaAllocatorMemoryTool::DoMakeInaccessible(void* ptr, size_t size) {
157 MEMORY_TOOL_MAKE_NOACCESS(ptr, size);
158}
159
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700160Arena::Arena() : bytes_allocated_(0), next_(nullptr) {
Ian Rogerse7a5b7d2013-04-18 20:09:02 -0700161}
162
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700163MallocArena::MallocArena(size_t size) {
164 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size));
165 size_ = size;
buzbee862a7602013-04-05 10:58:54 -0700166}
167
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700168MallocArena::~MallocArena() {
169 free(reinterpret_cast<void*>(memory_));
170}
171
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000172MemMapArena::MemMapArena(size_t size, bool low_4gb, const char* name) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700173 std::string error_msg;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700174 map_.reset(MemMap::MapAnonymous(
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000175 name, nullptr, size, PROT_READ | PROT_WRITE, low_4gb, false, &error_msg));
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700176 CHECK(map_.get() != nullptr) << error_msg;
177 memory_ = map_->Begin();
178 size_ = map_->Size();
179}
180
Vladimir Marko3481ba22015-04-13 12:22:36 +0100181MemMapArena::~MemMapArena() {
182 // Destroys MemMap via std::unique_ptr<>.
183}
184
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700185void MemMapArena::Release() {
186 if (bytes_allocated_ > 0) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700187 map_->MadviseDontNeedAndZero();
188 bytes_allocated_ = 0;
189 }
190}
191
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700192void Arena::Reset() {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700193 if (bytes_allocated_ > 0) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700194 memset(Begin(), 0, bytes_allocated_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700195 bytes_allocated_ = 0;
buzbee862a7602013-04-05 10:58:54 -0700196 }
buzbee862a7602013-04-05 10:58:54 -0700197}
198
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000199ArenaPool::ArenaPool(bool use_malloc, bool low_4gb, const char* name)
200 : use_malloc_(use_malloc),
201 lock_("Arena pool lock", kArenaPoolLock),
202 free_arenas_(nullptr),
203 low_4gb_(low_4gb),
204 name_(name) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700205 if (low_4gb) {
206 CHECK(!use_malloc) << "low4gb must use map implementation";
207 }
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700208 if (!use_malloc) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700209 MemMap::Init();
210 }
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700211}
212
213ArenaPool::~ArenaPool() {
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100214 ReclaimMemory();
215}
216
217void ArenaPool::ReclaimMemory() {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700218 while (free_arenas_ != nullptr) {
219 auto* arena = free_arenas_;
220 free_arenas_ = free_arenas_->next_;
221 delete arena;
222 }
223}
224
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100225void ArenaPool::LockReclaimMemory() {
226 MutexLock lock(Thread::Current(), lock_);
227 ReclaimMemory();
228}
229
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700230Arena* ArenaPool::AllocArena(size_t size) {
231 Thread* self = Thread::Current();
232 Arena* ret = nullptr;
233 {
234 MutexLock lock(self, lock_);
235 if (free_arenas_ != nullptr && LIKELY(free_arenas_->Size() >= size)) {
236 ret = free_arenas_;
237 free_arenas_ = free_arenas_->next_;
238 }
239 }
240 if (ret == nullptr) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700241 ret = use_malloc_ ? static_cast<Arena*>(new MallocArena(size)) :
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000242 new MemMapArena(size, low_4gb_, name_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700243 }
244 ret->Reset();
245 return ret;
246}
247
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700248void ArenaPool::TrimMaps() {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700249 if (!use_malloc_) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800250 ScopedTrace trace(__PRETTY_FUNCTION__);
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700251 // Doesn't work for malloc.
252 MutexLock lock(Thread::Current(), lock_);
253 for (auto* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
254 arena->Release();
255 }
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700256 }
257}
258
Mathieu Chartier49285c52014-12-02 15:43:48 -0800259size_t ArenaPool::GetBytesAllocated() const {
260 size_t total = 0;
261 MutexLock lock(Thread::Current(), lock_);
262 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
263 total += arena->GetBytesAllocated();
264 }
265 return total;
266}
267
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000268void ArenaPool::FreeArenaChain(Arena* first) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700269 if (UNLIKELY(RUNNING_ON_MEMORY_TOOL > 0)) {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000270 for (Arena* arena = first; arena != nullptr; arena = arena->next_) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700271 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000272 }
Mathieu Chartier75165d02013-09-12 14:00:31 -0700273 }
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000274 if (first != nullptr) {
275 Arena* last = first;
276 while (last->next_ != nullptr) {
277 last = last->next_;
278 }
279 Thread* self = Thread::Current();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700280 MutexLock lock(self, lock_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000281 last->next_ = free_arenas_;
282 free_arenas_ = first;
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700283 }
284}
285
286size_t ArenaAllocator::BytesAllocated() const {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000287 return ArenaAllocatorStats::BytesAllocated();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700288}
289
Mathieu Chartierc7853442015-03-27 14:35:38 -0700290size_t ArenaAllocator::BytesUsed() const {
291 size_t total = ptr_ - begin_;
292 if (arena_head_ != nullptr) {
293 for (Arena* cur_arena = arena_head_->next_; cur_arena != nullptr;
294 cur_arena = cur_arena->next_) {
295 total += cur_arena->GetBytesAllocated();
296 }
297 }
298 return total;
299}
300
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700301ArenaAllocator::ArenaAllocator(ArenaPool* pool)
302 : pool_(pool),
303 begin_(nullptr),
304 end_(nullptr),
305 ptr_(nullptr),
Vladimir Marko2a408a32015-09-18 14:11:00 +0100306 arena_head_(nullptr) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700307}
308
309void ArenaAllocator::UpdateBytesAllocated() {
310 if (arena_head_ != nullptr) {
311 // Update how many bytes we have allocated into the arena so that the arena pool knows how
312 // much memory to zero out.
313 arena_head_->bytes_allocated_ = ptr_ - begin_;
314 }
315}
316
Vladimir Marko2a408a32015-09-18 14:11:00 +0100317void* ArenaAllocator::AllocWithMemoryTool(size_t bytes, ArenaAllocKind kind) {
Vladimir Marko75001932015-11-10 20:54:22 +0000318 // We mark all memory for a newly retrieved arena as inaccessible and then
319 // mark only the actually allocated memory as defined. That leaves red zones
320 // and padding between allocations marked as inaccessible.
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700321 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700322 if (UNLIKELY(ptr_ + rounded_bytes > end_)) {
323 // Obtain a new block.
324 ObtainNewArenaForAllocation(rounded_bytes);
Vladimir Marko2a408a32015-09-18 14:11:00 +0100325 CHECK(ptr_ != nullptr);
Vladimir Marko75001932015-11-10 20:54:22 +0000326 MEMORY_TOOL_MAKE_NOACCESS(ptr_, end_ - ptr_);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700327 }
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000328 ArenaAllocatorStats::RecordAlloc(rounded_bytes, kind);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700329 uint8_t* ret = ptr_;
330 ptr_ += rounded_bytes;
Vladimir Marko2a408a32015-09-18 14:11:00 +0100331 MEMORY_TOOL_MAKE_DEFINED(ret, bytes);
Vladimir Marko75001932015-11-10 20:54:22 +0000332 // Check that the memory is already zeroed out.
333 DCHECK(std::all_of(ret, ret + bytes, [](uint8_t val) { return val == 0u; }));
Mathieu Chartier75165d02013-09-12 14:00:31 -0700334 return ret;
335}
336
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700337ArenaAllocator::~ArenaAllocator() {
338 // Reclaim all the arenas by giving them back to the thread pool.
339 UpdateBytesAllocated();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000340 pool_->FreeArenaChain(arena_head_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700341}
342
343void ArenaAllocator::ObtainNewArenaForAllocation(size_t allocation_size) {
344 UpdateBytesAllocated();
345 Arena* new_arena = pool_->AllocArena(std::max(Arena::kDefaultSize, allocation_size));
346 new_arena->next_ = arena_head_;
347 arena_head_ = new_arena;
348 // Update our internal data structures.
349 ptr_ = begin_ = new_arena->Begin();
350 end_ = new_arena->End();
351}
352
Mathieu Chartiere401d142015-04-22 13:56:20 -0700353bool ArenaAllocator::Contains(const void* ptr) const {
354 if (ptr >= begin_ && ptr < end_) {
355 return true;
356 }
357 for (const Arena* cur_arena = arena_head_; cur_arena != nullptr; cur_arena = cur_arena->next_) {
358 if (cur_arena->Contains(ptr)) {
359 return true;
360 }
361 }
362 return false;
363}
364
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000365MemStats::MemStats(const char* name, const ArenaAllocatorStats* stats, const Arena* first_arena,
366 ssize_t lost_bytes_adjustment)
367 : name_(name),
368 stats_(stats),
369 first_arena_(first_arena),
370 lost_bytes_adjustment_(lost_bytes_adjustment) {
371}
372
373void MemStats::Dump(std::ostream& os) const {
374 os << name_ << " stats:\n";
375 stats_->Dump(os, first_arena_, lost_bytes_adjustment_);
376}
377
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700378// Dump memory usage stats.
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000379MemStats ArenaAllocator::GetMemStats() const {
380 ssize_t lost_bytes_adjustment =
381 (arena_head_ == nullptr) ? 0 : (end_ - ptr_) - arena_head_->RemainingSpace();
382 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment);
buzbee862a7602013-04-05 10:58:54 -0700383}
384
385} // namespace art