Chromium Code Reviews| Index: src/base/accounting_allocator.cc |
| diff --git a/src/base/accounting_allocator.cc b/src/base/accounting_allocator.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1c1822fc11b0bc58840b8ac80ce98a4f62e39c29 |
| --- /dev/null |
| +++ b/src/base/accounting_allocator.cc |
| @@ -0,0 +1,33 @@ |
| +// Copyright 2016 the V8 project authors. All rights reserved. |
|
Benedikt Meurer
2016/04/01 09:00:03
Nit: accounting-allocator.{h,cc}
Michael Starzinger
2016/04/01 09:15:52
+1
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "src/base/accounting_allocator.h" |
| + |
| +#include <stdlib.h> |
|
Benedikt Meurer
2016/04/01 09:00:03
Nit: cstdlib
|
| + |
| +#if V8_LIBC_BIONIC |
| +#include <malloc.h> // NOLINT |
| +#endif |
| + |
| +namespace v8 { |
| +namespace base { |
| + |
| +void* AccountingAllocator::Allocate(size_t bytes) { |
| + void* memory = malloc(bytes); |
| + if (memory) NoBarrier_AtomicIncrement(¤t_memory_usage_, bytes); |
| + return memory; |
| +} |
| + |
| +void AccountingAllocator::Free(void* memory, size_t bytes) { |
| + free(memory); |
| + NoBarrier_AtomicIncrement(¤t_memory_usage_, |
| + -static_cast<AtomicWord>(bytes)); |
| +} |
| + |
| +size_t AccountingAllocator::GetCurrentMemoryUsage() const { |
| + return NoBarrier_Load(¤t_memory_usage_); |
| +} |
| + |
| +} // namespace base |
| +} // namespace v8 |