blob: 70ff60f3d7162d0c141e5613f46d5b22905f5992 [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 ",
80 "ParallelMove ",
Vladimir Marko655e5852015-10-12 10:38:28 +010081 "GraphChecker ",
Mathieu Chartierde40d472015-10-15 17:47:48 -070082 "Verifier ",
buzbee862a7602013-04-05 10:58:54 -070083};
84
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000085template <bool kCount>
86ArenaAllocatorStatsImpl<kCount>::ArenaAllocatorStatsImpl()
87 : num_allocations_(0u) {
88 std::fill_n(alloc_stats_, arraysize(alloc_stats_), 0u);
89}
90
91template <bool kCount>
92void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) {
93 num_allocations_ = other.num_allocations_;
94 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_);
95}
96
97template <bool kCount>
98void ArenaAllocatorStatsImpl<kCount>::RecordAlloc(size_t bytes, ArenaAllocKind kind) {
99 alloc_stats_[kind] += bytes;
100 ++num_allocations_;
101}
102
103template <bool kCount>
104size_t ArenaAllocatorStatsImpl<kCount>::NumAllocations() const {
105 return num_allocations_;
106}
107
108template <bool kCount>
109size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const {
110 const size_t init = 0u; // Initial value of the correct type.
111 return std::accumulate(alloc_stats_, alloc_stats_ + arraysize(alloc_stats_), init);
112}
113
114template <bool kCount>
115void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first,
116 ssize_t lost_bytes_adjustment) const {
117 size_t malloc_bytes = 0u;
118 size_t lost_bytes = 0u;
119 size_t num_arenas = 0u;
120 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) {
121 malloc_bytes += arena->Size();
122 lost_bytes += arena->RemainingSpace();
123 ++num_arenas;
124 }
125 // The lost_bytes_adjustment is used to make up for the fact that the current arena
126 // may not have the bytes_allocated_ updated correctly.
127 lost_bytes += lost_bytes_adjustment;
128 const size_t bytes_allocated = BytesAllocated();
129 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
130 << ", lost: " << lost_bytes << "\n";
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000131 size_t num_allocations = NumAllocations();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000132 if (num_allocations != 0) {
133 os << "Number of arenas allocated: " << num_arenas << ", Number of allocations: "
134 << num_allocations << ", avg size: " << bytes_allocated / num_allocations << "\n";
135 }
136 os << "===== Allocation by kind\n";
Andreas Gampe785d2f22014-11-03 22:57:30 -0800137 static_assert(arraysize(kAllocNames) == kNumArenaAllocKinds, "arraysize of kAllocNames");
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000138 for (int i = 0; i < kNumArenaAllocKinds; i++) {
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000139 os << kAllocNames[i] << std::setw(10) << alloc_stats_[i] << "\n";
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000140 }
141}
142
143// Explicitly instantiate the used implementation.
144template class ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations>;
145
Vladimir Marko7bda3b62015-10-07 12:44:31 +0000146void ArenaAllocatorMemoryTool::DoMakeDefined(void* ptr, size_t size) {
147 MEMORY_TOOL_MAKE_DEFINED(ptr, size);
148}
149
150void ArenaAllocatorMemoryTool::DoMakeUndefined(void* ptr, size_t size) {
151 MEMORY_TOOL_MAKE_UNDEFINED(ptr, size);
152}
153
154void ArenaAllocatorMemoryTool::DoMakeInaccessible(void* ptr, size_t size) {
155 MEMORY_TOOL_MAKE_NOACCESS(ptr, size);
156}
157
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700158Arena::Arena() : bytes_allocated_(0), next_(nullptr) {
Ian Rogerse7a5b7d2013-04-18 20:09:02 -0700159}
160
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700161MallocArena::MallocArena(size_t size) {
162 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size));
163 size_ = size;
buzbee862a7602013-04-05 10:58:54 -0700164}
165
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700166MallocArena::~MallocArena() {
167 free(reinterpret_cast<void*>(memory_));
168}
169
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000170MemMapArena::MemMapArena(size_t size, bool low_4gb, const char* name) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700171 std::string error_msg;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700172 map_.reset(MemMap::MapAnonymous(
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000173 name, nullptr, size, PROT_READ | PROT_WRITE, low_4gb, false, &error_msg));
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700174 CHECK(map_.get() != nullptr) << error_msg;
175 memory_ = map_->Begin();
176 size_ = map_->Size();
177}
178
Vladimir Marko3481ba22015-04-13 12:22:36 +0100179MemMapArena::~MemMapArena() {
180 // Destroys MemMap via std::unique_ptr<>.
181}
182
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700183void MemMapArena::Release() {
184 if (bytes_allocated_ > 0) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700185 map_->MadviseDontNeedAndZero();
186 bytes_allocated_ = 0;
187 }
188}
189
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700190void Arena::Reset() {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700191 if (bytes_allocated_ > 0) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700192 memset(Begin(), 0, bytes_allocated_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700193 bytes_allocated_ = 0;
buzbee862a7602013-04-05 10:58:54 -0700194 }
buzbee862a7602013-04-05 10:58:54 -0700195}
196
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000197ArenaPool::ArenaPool(bool use_malloc, bool low_4gb, const char* name)
198 : use_malloc_(use_malloc),
199 lock_("Arena pool lock", kArenaPoolLock),
200 free_arenas_(nullptr),
201 low_4gb_(low_4gb),
202 name_(name) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700203 if (low_4gb) {
204 CHECK(!use_malloc) << "low4gb must use map implementation";
205 }
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700206 if (!use_malloc) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700207 MemMap::Init();
208 }
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700209}
210
211ArenaPool::~ArenaPool() {
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100212 ReclaimMemory();
213}
214
215void ArenaPool::ReclaimMemory() {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700216 while (free_arenas_ != nullptr) {
217 auto* arena = free_arenas_;
218 free_arenas_ = free_arenas_->next_;
219 delete arena;
220 }
221}
222
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100223void ArenaPool::LockReclaimMemory() {
224 MutexLock lock(Thread::Current(), lock_);
225 ReclaimMemory();
226}
227
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700228Arena* ArenaPool::AllocArena(size_t size) {
229 Thread* self = Thread::Current();
230 Arena* ret = nullptr;
231 {
232 MutexLock lock(self, lock_);
233 if (free_arenas_ != nullptr && LIKELY(free_arenas_->Size() >= size)) {
234 ret = free_arenas_;
235 free_arenas_ = free_arenas_->next_;
236 }
237 }
238 if (ret == nullptr) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700239 ret = use_malloc_ ? static_cast<Arena*>(new MallocArena(size)) :
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000240 new MemMapArena(size, low_4gb_, name_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700241 }
242 ret->Reset();
243 return ret;
244}
245
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700246void ArenaPool::TrimMaps() {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700247 if (!use_malloc_) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800248 ScopedTrace trace(__PRETTY_FUNCTION__);
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700249 // Doesn't work for malloc.
250 MutexLock lock(Thread::Current(), lock_);
251 for (auto* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
252 arena->Release();
253 }
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700254 }
255}
256
Mathieu Chartier49285c52014-12-02 15:43:48 -0800257size_t ArenaPool::GetBytesAllocated() const {
258 size_t total = 0;
259 MutexLock lock(Thread::Current(), lock_);
260 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
261 total += arena->GetBytesAllocated();
262 }
263 return total;
264}
265
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000266void ArenaPool::FreeArenaChain(Arena* first) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700267 if (UNLIKELY(RUNNING_ON_MEMORY_TOOL > 0)) {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000268 for (Arena* arena = first; arena != nullptr; arena = arena->next_) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700269 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000270 }
Mathieu Chartier75165d02013-09-12 14:00:31 -0700271 }
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000272 if (first != nullptr) {
273 Arena* last = first;
274 while (last->next_ != nullptr) {
275 last = last->next_;
276 }
277 Thread* self = Thread::Current();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700278 MutexLock lock(self, lock_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000279 last->next_ = free_arenas_;
280 free_arenas_ = first;
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700281 }
282}
283
284size_t ArenaAllocator::BytesAllocated() const {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000285 return ArenaAllocatorStats::BytesAllocated();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700286}
287
Mathieu Chartierc7853442015-03-27 14:35:38 -0700288size_t ArenaAllocator::BytesUsed() const {
289 size_t total = ptr_ - begin_;
290 if (arena_head_ != nullptr) {
291 for (Arena* cur_arena = arena_head_->next_; cur_arena != nullptr;
292 cur_arena = cur_arena->next_) {
293 total += cur_arena->GetBytesAllocated();
294 }
295 }
296 return total;
297}
298
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700299ArenaAllocator::ArenaAllocator(ArenaPool* pool)
300 : pool_(pool),
301 begin_(nullptr),
302 end_(nullptr),
303 ptr_(nullptr),
Vladimir Marko2a408a32015-09-18 14:11:00 +0100304 arena_head_(nullptr) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700305}
306
307void ArenaAllocator::UpdateBytesAllocated() {
308 if (arena_head_ != nullptr) {
309 // Update how many bytes we have allocated into the arena so that the arena pool knows how
310 // much memory to zero out.
311 arena_head_->bytes_allocated_ = ptr_ - begin_;
312 }
313}
314
Vladimir Marko2a408a32015-09-18 14:11:00 +0100315void* ArenaAllocator::AllocWithMemoryTool(size_t bytes, ArenaAllocKind kind) {
Vladimir Marko75001932015-11-10 20:54:22 +0000316 // We mark all memory for a newly retrieved arena as inaccessible and then
317 // mark only the actually allocated memory as defined. That leaves red zones
318 // and padding between allocations marked as inaccessible.
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700319 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700320 if (UNLIKELY(ptr_ + rounded_bytes > end_)) {
321 // Obtain a new block.
322 ObtainNewArenaForAllocation(rounded_bytes);
Vladimir Marko2a408a32015-09-18 14:11:00 +0100323 CHECK(ptr_ != nullptr);
Vladimir Marko75001932015-11-10 20:54:22 +0000324 MEMORY_TOOL_MAKE_NOACCESS(ptr_, end_ - ptr_);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700325 }
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000326 ArenaAllocatorStats::RecordAlloc(rounded_bytes, kind);
Mathieu Chartier75165d02013-09-12 14:00:31 -0700327 uint8_t* ret = ptr_;
328 ptr_ += rounded_bytes;
Vladimir Marko2a408a32015-09-18 14:11:00 +0100329 MEMORY_TOOL_MAKE_DEFINED(ret, bytes);
Vladimir Marko75001932015-11-10 20:54:22 +0000330 // Check that the memory is already zeroed out.
331 DCHECK(std::all_of(ret, ret + bytes, [](uint8_t val) { return val == 0u; }));
Mathieu Chartier75165d02013-09-12 14:00:31 -0700332 return ret;
333}
334
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700335ArenaAllocator::~ArenaAllocator() {
336 // Reclaim all the arenas by giving them back to the thread pool.
337 UpdateBytesAllocated();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000338 pool_->FreeArenaChain(arena_head_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700339}
340
341void ArenaAllocator::ObtainNewArenaForAllocation(size_t allocation_size) {
342 UpdateBytesAllocated();
343 Arena* new_arena = pool_->AllocArena(std::max(Arena::kDefaultSize, allocation_size));
344 new_arena->next_ = arena_head_;
345 arena_head_ = new_arena;
346 // Update our internal data structures.
347 ptr_ = begin_ = new_arena->Begin();
348 end_ = new_arena->End();
349}
350
Mathieu Chartiere401d142015-04-22 13:56:20 -0700351bool ArenaAllocator::Contains(const void* ptr) const {
352 if (ptr >= begin_ && ptr < end_) {
353 return true;
354 }
355 for (const Arena* cur_arena = arena_head_; cur_arena != nullptr; cur_arena = cur_arena->next_) {
356 if (cur_arena->Contains(ptr)) {
357 return true;
358 }
359 }
360 return false;
361}
362
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000363MemStats::MemStats(const char* name, const ArenaAllocatorStats* stats, const Arena* first_arena,
364 ssize_t lost_bytes_adjustment)
365 : name_(name),
366 stats_(stats),
367 first_arena_(first_arena),
368 lost_bytes_adjustment_(lost_bytes_adjustment) {
369}
370
371void MemStats::Dump(std::ostream& os) const {
372 os << name_ << " stats:\n";
373 stats_->Dump(os, first_arena_, lost_bytes_adjustment_);
374}
375
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700376// Dump memory usage stats.
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000377MemStats ArenaAllocator::GetMemStats() const {
378 ssize_t lost_bytes_adjustment =
379 (arena_head_ == nullptr) ? 0 : (end_ - ptr_) - arena_head_->RemainingSpace();
380 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment);
buzbee862a7602013-04-05 10:58:54 -0700381}
382
383} // namespace art