blob: 5cdf6718f1b0d9e7fc0ad09e4fd491761e6f70e3 [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 ",
Aart Bik96202302016-10-04 17:33:56 -070072 "LoopOpt ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010073 "SsaLiveness ",
74 "SsaPhiElim ",
75 "RefTypeProp ",
Vladimir Marko2aaa4b52015-09-17 17:03:26 +010076 "SideEffects ",
77 "RegAllocator ",
Vladimir Markof6a35de2016-03-21 12:01:50 +000078 "RegAllocVldt ",
Vladimir Marko225b6462015-09-28 12:17:40 +010079 "StackMapStm ",
80 "CodeGen ",
Vladimir Marko93205e32016-04-13 11:59:46 +010081 "Assembler ",
Vladimir Marko225b6462015-09-28 12:17:40 +010082 "ParallelMove ",
Vladimir Marko655e5852015-10-12 10:38:28 +010083 "GraphChecker ",
Mathieu Chartierde40d472015-10-15 17:47:48 -070084 "Verifier ",
Vladimir Marko93205e32016-04-13 11:59:46 +010085 "CallingConv ",
buzbee862a7602013-04-05 10:58:54 -070086};
87
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000088template <bool kCount>
89ArenaAllocatorStatsImpl<kCount>::ArenaAllocatorStatsImpl()
90 : num_allocations_(0u) {
91 std::fill_n(alloc_stats_, arraysize(alloc_stats_), 0u);
92}
93
94template <bool kCount>
95void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) {
96 num_allocations_ = other.num_allocations_;
97 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_);
98}
99
100template <bool kCount>
101void ArenaAllocatorStatsImpl<kCount>::RecordAlloc(size_t bytes, ArenaAllocKind kind) {
102 alloc_stats_[kind] += bytes;
103 ++num_allocations_;
104}
105
106template <bool kCount>
107size_t ArenaAllocatorStatsImpl<kCount>::NumAllocations() const {
108 return num_allocations_;
109}
110
111template <bool kCount>
112size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const {
113 const size_t init = 0u; // Initial value of the correct type.
114 return std::accumulate(alloc_stats_, alloc_stats_ + arraysize(alloc_stats_), init);
115}
116
117template <bool kCount>
118void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first,
119 ssize_t lost_bytes_adjustment) const {
120 size_t malloc_bytes = 0u;
121 size_t lost_bytes = 0u;
122 size_t num_arenas = 0u;
123 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) {
124 malloc_bytes += arena->Size();
125 lost_bytes += arena->RemainingSpace();
126 ++num_arenas;
127 }
128 // The lost_bytes_adjustment is used to make up for the fact that the current arena
129 // may not have the bytes_allocated_ updated correctly.
130 lost_bytes += lost_bytes_adjustment;
131 const size_t bytes_allocated = BytesAllocated();
132 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
133 << ", lost: " << lost_bytes << "\n";
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000134 size_t num_allocations = NumAllocations();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000135 if (num_allocations != 0) {
136 os << "Number of arenas allocated: " << num_arenas << ", Number of allocations: "
137 << num_allocations << ", avg size: " << bytes_allocated / num_allocations << "\n";
138 }
139 os << "===== Allocation by kind\n";
Andreas Gampe785d2f22014-11-03 22:57:30 -0800140 static_assert(arraysize(kAllocNames) == kNumArenaAllocKinds, "arraysize of kAllocNames");
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000141 for (int i = 0; i < kNumArenaAllocKinds; i++) {
Vladimir Markobd9e9db2014-03-07 19:41:05 +0000142 os << kAllocNames[i] << std::setw(10) << alloc_stats_[i] << "\n";
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000143 }
144}
145
146// Explicitly instantiate the used implementation.
147template class ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations>;
148
Vladimir Marko7bda3b62015-10-07 12:44:31 +0000149void ArenaAllocatorMemoryTool::DoMakeDefined(void* ptr, size_t size) {
150 MEMORY_TOOL_MAKE_DEFINED(ptr, size);
151}
152
153void ArenaAllocatorMemoryTool::DoMakeUndefined(void* ptr, size_t size) {
154 MEMORY_TOOL_MAKE_UNDEFINED(ptr, size);
155}
156
157void ArenaAllocatorMemoryTool::DoMakeInaccessible(void* ptr, size_t size) {
158 MEMORY_TOOL_MAKE_NOACCESS(ptr, size);
159}
160
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700161Arena::Arena() : bytes_allocated_(0), next_(nullptr) {
Ian Rogerse7a5b7d2013-04-18 20:09:02 -0700162}
163
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700164MallocArena::MallocArena(size_t size) {
165 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size));
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100166 CHECK(memory_ != nullptr); // Abort on OOM.
Andreas Gampef6dd8292016-08-19 20:22:19 -0700167 DCHECK_ALIGNED(memory_, ArenaAllocator::kAlignment);
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700168 size_ = size;
buzbee862a7602013-04-05 10:58:54 -0700169}
170
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700171MallocArena::~MallocArena() {
172 free(reinterpret_cast<void*>(memory_));
173}
174
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000175MemMapArena::MemMapArena(size_t size, bool low_4gb, const char* name) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700176 std::string error_msg;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700177 map_.reset(MemMap::MapAnonymous(
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000178 name, nullptr, size, PROT_READ | PROT_WRITE, low_4gb, false, &error_msg));
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700179 CHECK(map_.get() != nullptr) << error_msg;
180 memory_ = map_->Begin();
181 size_ = map_->Size();
182}
183
Vladimir Marko3481ba22015-04-13 12:22:36 +0100184MemMapArena::~MemMapArena() {
185 // Destroys MemMap via std::unique_ptr<>.
186}
187
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700188void MemMapArena::Release() {
189 if (bytes_allocated_ > 0) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700190 map_->MadviseDontNeedAndZero();
191 bytes_allocated_ = 0;
192 }
193}
194
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700195void Arena::Reset() {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700196 if (bytes_allocated_ > 0) {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700197 memset(Begin(), 0, bytes_allocated_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700198 bytes_allocated_ = 0;
buzbee862a7602013-04-05 10:58:54 -0700199 }
buzbee862a7602013-04-05 10:58:54 -0700200}
201
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000202ArenaPool::ArenaPool(bool use_malloc, bool low_4gb, const char* name)
203 : use_malloc_(use_malloc),
204 lock_("Arena pool lock", kArenaPoolLock),
205 free_arenas_(nullptr),
206 low_4gb_(low_4gb),
207 name_(name) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700208 if (low_4gb) {
209 CHECK(!use_malloc) << "low4gb must use map implementation";
210 }
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700211 if (!use_malloc) {
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700212 MemMap::Init();
213 }
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700214}
215
216ArenaPool::~ArenaPool() {
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100217 ReclaimMemory();
218}
219
220void ArenaPool::ReclaimMemory() {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700221 while (free_arenas_ != nullptr) {
222 auto* arena = free_arenas_;
223 free_arenas_ = free_arenas_->next_;
224 delete arena;
225 }
226}
227
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +0100228void ArenaPool::LockReclaimMemory() {
229 MutexLock lock(Thread::Current(), lock_);
230 ReclaimMemory();
231}
232
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700233Arena* ArenaPool::AllocArena(size_t size) {
234 Thread* self = Thread::Current();
235 Arena* ret = nullptr;
236 {
237 MutexLock lock(self, lock_);
238 if (free_arenas_ != nullptr && LIKELY(free_arenas_->Size() >= size)) {
239 ret = free_arenas_;
240 free_arenas_ = free_arenas_->next_;
241 }
242 }
243 if (ret == nullptr) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700244 ret = use_malloc_ ? static_cast<Arena*>(new MallocArena(size)) :
Nicolas Geoffray25e04562016-03-01 13:17:58 +0000245 new MemMapArena(size, low_4gb_, name_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700246 }
247 ret->Reset();
248 return ret;
249}
250
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700251void ArenaPool::TrimMaps() {
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700252 if (!use_malloc_) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800253 ScopedTrace trace(__PRETTY_FUNCTION__);
Mathieu Chartierc6201fa2015-03-12 10:06:33 -0700254 // Doesn't work for malloc.
255 MutexLock lock(Thread::Current(), lock_);
256 for (auto* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
257 arena->Release();
258 }
Mathieu Chartier9b34b242015-03-09 11:30:17 -0700259 }
260}
261
Mathieu Chartier49285c52014-12-02 15:43:48 -0800262size_t ArenaPool::GetBytesAllocated() const {
263 size_t total = 0;
264 MutexLock lock(Thread::Current(), lock_);
265 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
266 total += arena->GetBytesAllocated();
267 }
268 return total;
269}
270
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000271void ArenaPool::FreeArenaChain(Arena* first) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700272 if (UNLIKELY(RUNNING_ON_MEMORY_TOOL > 0)) {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000273 for (Arena* arena = first; arena != nullptr; arena = arena->next_) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700274 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000275 }
Mathieu Chartier75165d02013-09-12 14:00:31 -0700276 }
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000277 if (first != nullptr) {
278 Arena* last = first;
279 while (last->next_ != nullptr) {
280 last = last->next_;
281 }
282 Thread* self = Thread::Current();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700283 MutexLock lock(self, lock_);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000284 last->next_ = free_arenas_;
285 free_arenas_ = first;
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700286 }
287}
288
289size_t ArenaAllocator::BytesAllocated() const {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000290 return ArenaAllocatorStats::BytesAllocated();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700291}
292
Mathieu Chartierc7853442015-03-27 14:35:38 -0700293size_t ArenaAllocator::BytesUsed() const {
294 size_t total = ptr_ - begin_;
295 if (arena_head_ != nullptr) {
296 for (Arena* cur_arena = arena_head_->next_; cur_arena != nullptr;
297 cur_arena = cur_arena->next_) {
298 total += cur_arena->GetBytesAllocated();
299 }
300 }
301 return total;
302}
303
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700304ArenaAllocator::ArenaAllocator(ArenaPool* pool)
305 : pool_(pool),
306 begin_(nullptr),
307 end_(nullptr),
308 ptr_(nullptr),
Vladimir Marko2a408a32015-09-18 14:11:00 +0100309 arena_head_(nullptr) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700310}
311
312void ArenaAllocator::UpdateBytesAllocated() {
313 if (arena_head_ != nullptr) {
314 // Update how many bytes we have allocated into the arena so that the arena pool knows how
315 // much memory to zero out.
316 arena_head_->bytes_allocated_ = ptr_ - begin_;
317 }
318}
319
Vladimir Marko2a408a32015-09-18 14:11:00 +0100320void* ArenaAllocator::AllocWithMemoryTool(size_t bytes, ArenaAllocKind kind) {
Vladimir Marko75001932015-11-10 20:54:22 +0000321 // We mark all memory for a newly retrieved arena as inaccessible and then
322 // mark only the actually allocated memory as defined. That leaves red zones
323 // and padding between allocations marked as inaccessible.
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700324 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000325 ArenaAllocatorStats::RecordAlloc(rounded_bytes, kind);
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100326 uint8_t* ret;
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100327 if (UNLIKELY(rounded_bytes > static_cast<size_t>(end_ - ptr_))) {
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100328 ret = AllocFromNewArena(rounded_bytes);
329 uint8_t* noaccess_begin = ret + bytes;
330 uint8_t* noaccess_end;
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100331 if (ret == arena_head_->Begin()) {
332 DCHECK(ptr_ - rounded_bytes == ret);
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100333 noaccess_end = end_;
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100334 } else {
335 // We're still using the old arena but `ret` comes from a new one just after it.
336 DCHECK(arena_head_->next_ != nullptr);
337 DCHECK(ret == arena_head_->next_->Begin());
338 DCHECK_EQ(rounded_bytes, arena_head_->next_->GetBytesAllocated());
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100339 noaccess_end = arena_head_->next_->End();
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100340 }
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100341 MEMORY_TOOL_MAKE_NOACCESS(noaccess_begin, noaccess_end - noaccess_begin);
342 } else {
343 ret = ptr_;
344 ptr_ += rounded_bytes;
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100345 }
Vladimir Marko2a408a32015-09-18 14:11:00 +0100346 MEMORY_TOOL_MAKE_DEFINED(ret, bytes);
Vladimir Marko75001932015-11-10 20:54:22 +0000347 // Check that the memory is already zeroed out.
348 DCHECK(std::all_of(ret, ret + bytes, [](uint8_t val) { return val == 0u; }));
Mathieu Chartier75165d02013-09-12 14:00:31 -0700349 return ret;
350}
351
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700352ArenaAllocator::~ArenaAllocator() {
353 // Reclaim all the arenas by giving them back to the thread pool.
354 UpdateBytesAllocated();
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000355 pool_->FreeArenaChain(arena_head_);
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700356}
357
Vladimir Marko3f84f2c2016-04-25 19:40:34 +0100358uint8_t* ArenaAllocator::AllocFromNewArena(size_t bytes) {
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100359 Arena* new_arena = pool_->AllocArena(std::max(Arena::kDefaultSize, bytes));
360 DCHECK(new_arena != nullptr);
361 DCHECK_LE(bytes, new_arena->Size());
362 if (static_cast<size_t>(end_ - ptr_) > new_arena->Size() - bytes) {
363 // The old arena has more space remaining than the new one, so keep using it.
364 // This can happen when the requested size is over half of the default size.
365 DCHECK(arena_head_ != nullptr);
366 new_arena->bytes_allocated_ = bytes; // UpdateBytesAllocated() on the new_arena.
367 new_arena->next_ = arena_head_->next_;
368 arena_head_->next_ = new_arena;
369 } else {
370 UpdateBytesAllocated();
371 new_arena->next_ = arena_head_;
372 arena_head_ = new_arena;
373 // Update our internal data structures.
374 begin_ = new_arena->Begin();
Andreas Gampef6dd8292016-08-19 20:22:19 -0700375 DCHECK_ALIGNED(begin_, kAlignment);
Vladimir Marko3e0e7172016-04-22 18:07:13 +0100376 ptr_ = begin_ + bytes;
377 end_ = new_arena->End();
378 }
379 return new_arena->Begin();
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700380}
381
Mathieu Chartiere401d142015-04-22 13:56:20 -0700382bool ArenaAllocator::Contains(const void* ptr) const {
383 if (ptr >= begin_ && ptr < end_) {
384 return true;
385 }
386 for (const Arena* cur_arena = arena_head_; cur_arena != nullptr; cur_arena = cur_arena->next_) {
387 if (cur_arena->Contains(ptr)) {
388 return true;
389 }
390 }
391 return false;
392}
393
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000394MemStats::MemStats(const char* name, const ArenaAllocatorStats* stats, const Arena* first_arena,
395 ssize_t lost_bytes_adjustment)
396 : name_(name),
397 stats_(stats),
398 first_arena_(first_arena),
399 lost_bytes_adjustment_(lost_bytes_adjustment) {
400}
401
402void MemStats::Dump(std::ostream& os) const {
403 os << name_ << " stats:\n";
404 stats_->Dump(os, first_arena_, lost_bytes_adjustment_);
405}
406
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700407// Dump memory usage stats.
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000408MemStats ArenaAllocator::GetMemStats() const {
409 ssize_t lost_bytes_adjustment =
410 (arena_head_ == nullptr) ? 0 : (end_ - ptr_) - arena_head_->RemainingSpace();
411 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment);
buzbee862a7602013-04-05 10:58:54 -0700412}
413
414} // namespace art