blob: 8d1c982f3d8f504581ee7e7d97f6471c9dcbeb07 [file] [log] [blame]
Brian Carlstrom413e89f2013-10-21 23:53:49 -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
Brian Carlstromba150c32013-08-27 17:31:03 -070017#ifndef ART_RUNTIME_BASE_ALLOCATOR_H_
18#define ART_RUNTIME_BASE_ALLOCATOR_H_
Brian Carlstrom413e89f2013-10-21 23:53:49 -070019
Mathieu Chartierbad02672014-08-25 13:08:22 -070020#include <map>
Dan Albert627f9172015-03-04 15:06:16 -080021#include <set>
Mathieu Chartier7b05e172015-10-15 17:47:48 -070022#include <unordered_map>
Mathieu Chartierbad02672014-08-25 13:08:22 -070023
24#include "atomic.h"
Mathieu Chartier0f8e0722015-10-26 14:52:42 -070025#include "base/hash_map.h"
Brian Carlstrom413e89f2013-10-21 23:53:49 -070026#include "base/macros.h"
Mathieu Chartierbad02672014-08-25 13:08:22 -070027#include "base/mutex.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070028#include "base/type_static_if.h"
Brian Carlstrom413e89f2013-10-21 23:53:49 -070029
30namespace art {
31
Mathieu Chartierbad02672014-08-25 13:08:22 -070032static constexpr bool kEnableTrackingAllocator = false;
33
Brian Carlstrom413e89f2013-10-21 23:53:49 -070034class Allocator {
35 public:
36 static Allocator* GetMallocAllocator();
37 static Allocator* GetNoopAllocator();
38
39 Allocator() {}
40 virtual ~Allocator() {}
41
42 virtual void* Alloc(size_t) = 0;
43 virtual void Free(void*) = 0;
44
45 private:
46 DISALLOW_COPY_AND_ASSIGN(Allocator);
47};
48
Mathieu Chartierbad02672014-08-25 13:08:22 -070049// Used by TrackedAllocators.
50enum AllocatorTag {
51 kAllocatorTagHeap,
52 kAllocatorTagMonitorList,
53 kAllocatorTagClassTable,
54 kAllocatorTagInternTable,
55 kAllocatorTagMaps,
56 kAllocatorTagLOS,
57 kAllocatorTagSafeMap,
58 kAllocatorTagLOSMaps,
59 kAllocatorTagReferenceTable,
60 kAllocatorTagHeapBitmap,
61 kAllocatorTagHeapBitmapLOS,
62 kAllocatorTagMonitorPool,
63 kAllocatorTagLOSFreeList,
64 kAllocatorTagVerifier,
65 kAllocatorTagRememberedSet,
66 kAllocatorTagModUnionCardSet,
67 kAllocatorTagModUnionReferenceArray,
Andreas Gampe0a7993e2014-12-05 11:16:26 -080068 kAllocatorTagJNILibraries,
Mathieu Chartierbad02672014-08-25 13:08:22 -070069 kAllocatorTagCompileTimeClassPath,
70 kAllocatorTagOatFile,
71 kAllocatorTagDexFileVerifier,
Mathieu Chartier58553c72014-09-16 16:25:55 -070072 kAllocatorTagRosAlloc,
Mathieu Chartierbad02672014-08-25 13:08:22 -070073 kAllocatorTagCount, // Must always be last element.
74};
75std::ostream& operator<<(std::ostream& os, const AllocatorTag& tag);
76
Ian Rogers7e70b002014-10-08 11:47:24 -070077namespace TrackedAllocators {
Mathieu Chartierbad02672014-08-25 13:08:22 -070078
Ian Rogers7e70b002014-10-08 11:47:24 -070079// Running count of number of bytes used for this kind of allocation. Increased by allocations,
80// decreased by deallocations.
81extern Atomic<size_t> g_bytes_used[kAllocatorTagCount];
Mathieu Chartierbad02672014-08-25 13:08:22 -070082
Ian Rogers7e70b002014-10-08 11:47:24 -070083// Largest value of bytes used seen.
84extern volatile size_t g_max_bytes_used[kAllocatorTagCount];
85
86// Total number of bytes allocated of this kind.
87extern Atomic<uint64_t> g_total_bytes_used[kAllocatorTagCount];
88
89void Dump(std::ostream& os);
90
91inline void RegisterAllocation(AllocatorTag tag, size_t bytes) {
92 g_total_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes);
93 size_t new_bytes = g_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes) + bytes;
94 if (g_max_bytes_used[tag] < new_bytes) {
95 g_max_bytes_used[tag] = new_bytes;
96 }
97}
98
99inline void RegisterFree(AllocatorTag tag, size_t bytes) {
100 g_bytes_used[tag].FetchAndSubSequentiallyConsistent(bytes);
101}
102
103} // namespace TrackedAllocators
104
105// Tracking allocator for use with STL types, tracks how much memory is used.
Mathieu Chartierbad02672014-08-25 13:08:22 -0700106template<class T, AllocatorTag kTag>
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800107class TrackingAllocatorImpl : public std::allocator<T> {
Mathieu Chartierbad02672014-08-25 13:08:22 -0700108 public:
109 typedef typename std::allocator<T>::value_type value_type;
110 typedef typename std::allocator<T>::size_type size_type;
111 typedef typename std::allocator<T>::difference_type difference_type;
112 typedef typename std::allocator<T>::pointer pointer;
113 typedef typename std::allocator<T>::const_pointer const_pointer;
114 typedef typename std::allocator<T>::reference reference;
115 typedef typename std::allocator<T>::const_reference const_reference;
116
117 // Used internally by STL data structures.
118 template <class U>
Chih-Hung Hsieha5931182016-09-01 15:08:13 -0700119 TrackingAllocatorImpl( // NOLINT, implicit
120 const TrackingAllocatorImpl<U, kTag>& alloc ATTRIBUTE_UNUSED) noexcept {}
Mathieu Chartierbad02672014-08-25 13:08:22 -0700121
122 // Used internally by STL data structures.
Andreas Gampe758a8012015-04-03 21:28:42 -0700123 TrackingAllocatorImpl() noexcept {
Andreas Gampe575e78c2014-11-03 23:41:03 -0800124 static_assert(kTag < kAllocatorTagCount, "kTag must be less than kAllocatorTagCount");
Mathieu Chartierbad02672014-08-25 13:08:22 -0700125 }
126
127 // Enables an allocator for objects of one type to allocate storage for objects of another type.
128 // Used internally by STL data structures.
129 template <class U>
130 struct rebind {
131 typedef TrackingAllocatorImpl<U, kTag> other;
132 };
133
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100134 pointer allocate(size_type n, const_pointer hint ATTRIBUTE_UNUSED = 0) {
Mathieu Chartierbad02672014-08-25 13:08:22 -0700135 const size_t size = n * sizeof(T);
136 TrackedAllocators::RegisterAllocation(GetTag(), size);
137 return reinterpret_cast<pointer>(malloc(size));
138 }
139
140 template <typename PT>
141 void deallocate(PT p, size_type n) {
142 const size_t size = n * sizeof(T);
143 TrackedAllocators::RegisterFree(GetTag(), size);
144 free(p);
145 }
146
Ian Rogers7e70b002014-10-08 11:47:24 -0700147 static constexpr AllocatorTag GetTag() {
Mathieu Chartierbad02672014-08-25 13:08:22 -0700148 return kTag;
149 }
150};
151
152template<class T, AllocatorTag kTag>
153// C++ doesn't allow template typedefs. This is a workaround template typedef which is
154// TrackingAllocatorImpl<T> if kEnableTrackingAllocator is true, std::allocator<T> otherwise.
Mathieu Chartier7b05e172015-10-15 17:47:48 -0700155using TrackingAllocator = typename TypeStaticIf<kEnableTrackingAllocator,
156 TrackingAllocatorImpl<T, kTag>,
157 std::allocator<T>>::type;
Mathieu Chartierbad02672014-08-25 13:08:22 -0700158
159template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
Mathieu Chartier7b05e172015-10-15 17:47:48 -0700160using AllocationTrackingMultiMap = std::multimap<
Dan Albertafeb3092016-01-12 14:23:14 -0800161 Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>;
Mathieu Chartierbad02672014-08-25 13:08:22 -0700162
Mathieu Chartier58553c72014-09-16 16:25:55 -0700163template<class Key, AllocatorTag kTag, class Compare = std::less<Key>>
Mathieu Chartier7b05e172015-10-15 17:47:48 -0700164using AllocationTrackingSet = std::set<Key, Compare, TrackingAllocator<Key, kTag>>;
165
166template<class Key,
167 class T,
168 AllocatorTag kTag,
169 class Hash = std::hash<Key>,
170 class Pred = std::equal_to<Key>>
171using AllocationTrackingUnorderedMap = std::unordered_map<
172 Key, T, Hash, Pred, TrackingAllocator<std::pair<const Key, T>, kTag>>;
Mathieu Chartier58553c72014-09-16 16:25:55 -0700173
Mathieu Chartier0f8e0722015-10-26 14:52:42 -0700174template<class Key,
175 class T,
176 class EmptyFn,
177 AllocatorTag kTag,
178 class Hash = std::hash<Key>,
179 class Pred = std::equal_to<Key>>
180using AllocationTrackingHashMap = HashMap<
181 Key, T, EmptyFn, Hash, Pred, TrackingAllocator<std::pair<Key, T>, kTag>>;
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700182} // namespace art
183
Brian Carlstromba150c32013-08-27 17:31:03 -0700184#endif // ART_RUNTIME_BASE_ALLOCATOR_H_