Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: third_party/tcmalloc/chromium/src/common.h

Issue 9667026: Revert 126020 - Experiment for updating the tcmalloc chromium branch to r144 (gperftools 2.0). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2008, Google Inc. 1 // Copyright (c) 2008, Google Inc.
2 // All rights reserved. 2 // All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 // --- 30 // ---
31 // Author: Sanjay Ghemawat <opensource@google.com> 31 // Author: Sanjay Ghemawat <opensource@google.com>
32 // 32 //
33 // Common definitions for tcmalloc code. 33 // Common definitions for tcmalloc code.
34
35 #ifndef TCMALLOC_COMMON_H_ 34 #ifndef TCMALLOC_COMMON_H_
36 #define TCMALLOC_COMMON_H_ 35 #define TCMALLOC_COMMON_H_
37 36
38 #include "config.h" 37 #include "config.h"
39 #include <stddef.h> // for size_t 38 #include <stddef.h> // for size_t
40 #ifdef HAVE_STDINT_H 39 #ifdef HAVE_STDINT_H
41 #include <stdint.h> // for uintptr_t, uint64_t 40 #include <stdint.h> // for uintptr_t, uint64_t
42 #endif 41 #endif
43 #include "free_list.h" // for SIZE_CLASS macros 42 #include "free_list.h" // for SIZE_CLASS macros
44 #include "internal_logging.h" // for ASSERT, etc 43 #include "internal_logging.h" // for ASSERT, etc
(...skipping 12 matching lines...) Expand all
57 // Deallocation may speed up by a factor as the page map gets 8x smaller, so 56 // Deallocation may speed up by a factor as the page map gets 8x smaller, so
58 // lookups in the page map result in fewer L2 cache misses, which translates to 57 // lookups in the page map result in fewer L2 cache misses, which translates to
59 // speedup for application/platform combinations with high L2 cache pressure. 58 // speedup for application/platform combinations with high L2 cache pressure.
60 // As the number of size classes increases with large pages, we increase 59 // As the number of size classes increases with large pages, we increase
61 // the thread cache allowance to avoid passing more free ranges to and from 60 // the thread cache allowance to avoid passing more free ranges to and from
62 // central lists. Also, larger pages are less likely to get freed. 61 // central lists. Also, larger pages are less likely to get freed.
63 // These two factors cause a bounded increase in memory use. 62 // These two factors cause a bounded increase in memory use.
64 63
65 static const size_t kAlignment = 8; 64 static const size_t kAlignment = 8;
66 65
67 // Constants dependant on tcmalloc configuration and archetecture. Chromium 66 // Constants dependant on tcmalloc configuration and archetecture.
68 // tunes these constants.
69 // We need to guarantee the smallest class size is big enough to hold the 67 // We need to guarantee the smallest class size is big enough to hold the
70 // pointers that form the free list. 68 // pointers that form the free list.
71 static const size_t kNumFreeListPointers = 69 static const size_t kNumFreeListPointers =
72 (tcmalloc::kSupportsDoublyLinkedList ? 2 : 1); 70 (tcmalloc::kSupportsDoublyLinkedList ? 2 : 1);
73 static const size_t kLinkSize = kNumFreeListPointers * sizeof(void *); 71 static const size_t kLinkSize = kNumFreeListPointers * sizeof(void *);
74 static const size_t kMinClassSize = 72 static const size_t kMinClassSize =
75 (kLinkSize > kAlignment ? kLinkSize : kAlignment); 73 (kLinkSize > kAlignment ? kLinkSize : kAlignment);
76 static const size_t kSkippedClasses = (kAlignment < kMinClassSize ? 1 : 0); 74 static const size_t kSkippedClasses = (kAlignment < kMinClassSize ? 1 : 0);
77 75
78 #if defined(TCMALLOC_LARGE_PAGES) 76 #if defined(TCMALLOC_LARGE_PAGES)
79 static const size_t kPageShift = 15; 77 static const size_t kPageShift = 15;
80 static const size_t kNumClasses = 78 - kSkippedClasses; 78 static const size_t kNumClasses = 95 - kSkippedClasses;
79 static const size_t kMaxThreadCacheSize = 4 << 20;
81 #else 80 #else
82 static const size_t kPageShift = 13; 81 static const size_t kPageShift = 12;
83 static const size_t kNumClasses = 86 - kSkippedClasses; 82 static const size_t kNumClasses = 61 - kSkippedClasses;
83 static const size_t kMaxThreadCacheSize = 2 << 20;
84 #endif 84 #endif
85 static const size_t kMaxThreadCacheSize = 4 << 20;
86 85
87 static const size_t kPageSize = 1 << kPageShift; 86 static const size_t kPageSize = 1 << kPageShift;
88 // TODO(dmikurube): We Chromium may want to tune this kMaxSize. 87 static const size_t kMaxSize = 8u * kPageSize;
89 static const size_t kMaxSize = 256 * 1024;
90 // For all span-lengths < kMaxPages we keep an exact-size list. 88 // For all span-lengths < kMaxPages we keep an exact-size list.
91 static const size_t kMaxPages = 1 << (20 - kPageShift); 89 static const size_t kMaxPages = 1 << (20 - kPageShift);
92 90
93 // Default bound on the total amount of thread caches. 91 // Default bound on the total amount of thread caches.
94 #ifdef TCMALLOC_SMALL_BUT_SLOW 92 #ifdef TCMALLOC_SMALL_BUT_SLOW
95 // Make the overall thread cache no bigger than that of a single thread 93 // Make the overall thread cache no bigger than that of a single thread
96 // for the small memory footprint case. 94 // for the small memory footprint case.
97 static const size_t kDefaultOverallThreadCacheSize = kMaxThreadCacheSize; 95 static const size_t kDefaultOverallThreadCacheSize = kMaxThreadCacheSize;
98 #else 96 #else
99 static const size_t kDefaultOverallThreadCacheSize = 8u * kMaxThreadCacheSize; 97 static const size_t kDefaultOverallThreadCacheSize = 8u * kMaxThreadCacheSize;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // ------------------------------------------------------- 169 // -------------------------------------------------------
172 // 0 (0 + 7) / 8 0 170 // 0 (0 + 7) / 8 0
173 // 1 (1 + 7) / 8 1 171 // 1 (1 + 7) / 8 1
174 // ... 172 // ...
175 // 1024 (1024 + 7) / 8 128 173 // 1024 (1024 + 7) / 8 128
176 // 1025 (1025 + 127 + (120<<7)) / 128 129 174 // 1025 (1025 + 127 + (120<<7)) / 128 129
177 // ... 175 // ...
178 // 32768 (32768 + 127 + (120<<7)) / 128 376 176 // 32768 (32768 + 127 + (120<<7)) / 128 376
179 static const int kMaxSmallSize = 1024; 177 static const int kMaxSmallSize = 1024;
180 static const size_t kClassArraySize = 178 static const size_t kClassArraySize =
181 ((kMaxSize + 127 + (120 << 7)) >> 7) + 1; 179 (((1 << kPageShift) * 8u + 127 + (120 << 7)) >> 7) + 1;
182 unsigned char class_array_[kClassArraySize]; 180 unsigned char class_array_[kClassArraySize];
183 181
184 // Compute index of the class_array[] entry for a given size 182 // Compute index of the class_array[] entry for a given size
185 static inline int ClassIndex(int s) { 183 static inline int ClassIndex(int s) {
186 ASSERT(0 <= s); 184 ASSERT(0 <= s);
187 ASSERT(s <= kMaxSize); 185 ASSERT(s <= kMaxSize);
188 const bool big = (s > kMaxSmallSize); 186 const bool big = (s > kMaxSmallSize);
189 const int add_amount = big ? (127 + (120<<7)) : 7; 187 const int add_amount = big ? (127 + (120<<7)) : 7;
190 const int shift_amount = big ? 7 : 3; 188 const int shift_amount = big ? 7 : 3;
191 return (s + add_amount) >> shift_amount; 189 return (s + add_amount) >> shift_amount;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 } 225 }
228 226
229 // Number of objects to move between a per-thread list and a central 227 // Number of objects to move between a per-thread list and a central
230 // list in one shot. We want this to be not too small so we can 228 // list in one shot. We want this to be not too small so we can
231 // amortize the lock overhead for accessing the central list. Making 229 // amortize the lock overhead for accessing the central list. Making
232 // it too big may temporarily cause unnecessary memory wastage in the 230 // it too big may temporarily cause unnecessary memory wastage in the
233 // per-thread free list until the scavenger cleans up the list. 231 // per-thread free list until the scavenger cleans up the list.
234 inline int num_objects_to_move(size_t cl) { 232 inline int num_objects_to_move(size_t cl) {
235 return num_objects_to_move_[cl]; 233 return num_objects_to_move_[cl];
236 } 234 }
235
236 // Dump contents of the computed size map
237 void Dump(TCMalloc_Printer* out);
237 }; 238 };
238 239
239 // Allocates "bytes" worth of memory and returns it. Increments 240 // Allocates "bytes" worth of memory and returns it. Increments
240 // metadata_system_bytes appropriately. May return NULL if allocation 241 // metadata_system_bytes appropriately. May return NULL if allocation
241 // fails. Requires pageheap_lock is held. 242 // fails. Requires pageheap_lock is held.
242 void* MetaDataAlloc(size_t bytes); 243 void* MetaDataAlloc(size_t bytes);
243 244
244 // Returns the total number of bytes allocated from the system. 245 // Returns the total number of bytes allocated from the system.
245 // Requires pageheap_lock is held. 246 // Requires pageheap_lock is held.
246 uint64_t metadata_system_bytes(); 247 uint64_t metadata_system_bytes();
247 248
248 // Adjust metadata_system_bytes to indicate that bytes are actually committed. 249 // Adjust metadata_system_bytes to indicate that bytes are actually committed.
249 // Requires pageheap_lock is held. 250 // Requires pageheap_lock is held.
250 void increment_metadata_system_bytes(size_t bytes); 251 void increment_metadata_system_bytes(size_t bytes);
251 252
252 // size/depth are made the same size as a pointer so that some generic 253 // size/depth are made the same size as a pointer so that some generic
253 // code below can conveniently cast them back and forth to void*. 254 // code below can conveniently cast them back and forth to void*.
254 static const int kMaxStackDepth = 31; 255 static const int kMaxStackDepth = 31;
255 struct StackTrace { 256 struct StackTrace {
256 uintptr_t size; // Size of object 257 uintptr_t size; // Size of object
257 uintptr_t depth; // Number of PC values stored in array below 258 uintptr_t depth; // Number of PC values stored in array below
258 void* stack[kMaxStackDepth]; 259 void* stack[kMaxStackDepth];
259 }; 260 };
260 261
261 } // namespace tcmalloc 262 } // namespace tcmalloc
262 263
263 #endif // TCMALLOC_COMMON_H_ 264 #endif // TCMALLOC_COMMON_H_
OLDNEW
« no previous file with comments | « third_party/tcmalloc/chromium/src/central_freelist.cc ('k') | third_party/tcmalloc/chromium/src/common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698