OLD | NEW |
1 // Copyright (c) 2005, Google Inc. | 1 // Copyright (c) 2005, 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 extern AtomicPtr<MallocHook::PreSbrkHook> presbrk_hook_; | 97 extern AtomicPtr<MallocHook::PreSbrkHook> presbrk_hook_; |
98 extern AtomicPtr<MallocHook::SbrkHook> sbrk_hook_; | 98 extern AtomicPtr<MallocHook::SbrkHook> sbrk_hook_; |
99 // End DEPRECATED code. | 99 // End DEPRECATED code. |
100 | 100 |
101 // Maximum of 7 hooks means that HookList is 8 words. | 101 // Maximum of 7 hooks means that HookList is 8 words. |
102 static const int kHookListMaxValues = 7; | 102 static const int kHookListMaxValues = 7; |
103 | 103 |
104 // HookList: a class that provides synchronized insertions and removals and | 104 // HookList: a class that provides synchronized insertions and removals and |
105 // lockless traversal. Most of the implementation is in malloc_hook.cc. | 105 // lockless traversal. Most of the implementation is in malloc_hook.cc. |
106 template <typename T> | 106 template <typename T> |
107 struct HookList { | 107 struct PERFTOOLS_DLL_DECL HookList { |
108 COMPILE_ASSERT(sizeof(T) <= sizeof(AtomicWord), T_should_fit_in_AtomicWord); | 108 COMPILE_ASSERT(sizeof(T) <= sizeof(AtomicWord), T_should_fit_in_AtomicWord); |
109 | 109 |
110 // Adds value to the list. Note that duplicates are allowed. Thread-safe and | 110 // Adds value to the list. Note that duplicates are allowed. Thread-safe and |
111 // blocking (acquires hooklist_spinlock). Returns true on success; false | 111 // blocking (acquires hooklist_spinlock). Returns true on success; false |
112 // otherwise (failures include invalid value and no space left). | 112 // otherwise (failures include invalid value and no space left). |
113 bool Add(T value); | 113 bool Add(T value); |
114 | 114 |
115 // Removes the first entry matching value from the list. Thread-safe and | 115 // Removes the first entry matching value from the list. Thread-safe and |
116 // blocking (acquires hooklist_spinlock). Returns true on success; false | 116 // blocking (acquires hooklist_spinlock). Returns true on success; false |
117 // otherwise (failures include invalid value and no value found). | 117 // otherwise (failures include invalid value and no value found). |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 old_addr, old_size, | 286 old_addr, old_size, |
287 new_size, flags, new_addr); | 287 new_size, flags, new_addr); |
288 // End DEPRECATED code. | 288 // End DEPRECATED code. |
289 } | 289 } |
290 | 290 |
291 // The following method is DEPRECATED | 291 // The following method is DEPRECATED |
292 inline MallocHook::PreSbrkHook MallocHook::GetPreSbrkHook() { | 292 inline MallocHook::PreSbrkHook MallocHook::GetPreSbrkHook() { |
293 return base::internal::presbrk_hook_.Get(); | 293 return base::internal::presbrk_hook_.Get(); |
294 } | 294 } |
295 | 295 |
296 inline void MallocHook::InvokePreSbrkHook(std::ptrdiff_t increment) { | 296 inline void MallocHook::InvokePreSbrkHook(ptrdiff_t increment) { |
297 if (!base::internal::presbrk_hooks_.empty() && increment != 0) { | 297 if (!base::internal::presbrk_hooks_.empty() && increment != 0) { |
298 InvokePreSbrkHookSlow(increment); | 298 InvokePreSbrkHookSlow(increment); |
299 } | 299 } |
300 // The following code is DEPRECATED. | 300 // The following code is DEPRECATED. |
301 MallocHook::PreSbrkHook hook = MallocHook::GetPreSbrkHook(); | 301 MallocHook::PreSbrkHook hook = MallocHook::GetPreSbrkHook(); |
302 if (hook != NULL && increment != 0) (*hook)(increment); | 302 if (hook != NULL && increment != 0) (*hook)(increment); |
303 // End DEPRECATED code. | 303 // End DEPRECATED code. |
304 } | 304 } |
305 | 305 |
306 // The following method is DEPRECATED | 306 // The following method is DEPRECATED |
307 inline MallocHook::SbrkHook MallocHook::GetSbrkHook() { | 307 inline MallocHook::SbrkHook MallocHook::GetSbrkHook() { |
308 return base::internal::sbrk_hook_.Get(); | 308 return base::internal::sbrk_hook_.Get(); |
309 } | 309 } |
310 | 310 |
311 inline void MallocHook::InvokeSbrkHook(const void* result, | 311 inline void MallocHook::InvokeSbrkHook(const void* result, |
312 std::ptrdiff_t increment) { | 312 ptrdiff_t increment) { |
313 if (!base::internal::sbrk_hooks_.empty() && increment != 0) { | 313 if (!base::internal::sbrk_hooks_.empty() && increment != 0) { |
314 InvokeSbrkHookSlow(result, increment); | 314 InvokeSbrkHookSlow(result, increment); |
315 } | 315 } |
316 // The following code is DEPRECATED. | 316 // The following code is DEPRECATED. |
317 MallocHook::SbrkHook hook = MallocHook::GetSbrkHook(); | 317 MallocHook::SbrkHook hook = MallocHook::GetSbrkHook(); |
318 if (hook != NULL && increment != 0) (*hook)(result, increment); | 318 if (hook != NULL && increment != 0) (*hook)(result, increment); |
319 // End DEPRECATED code. | 319 // End DEPRECATED code. |
320 } | 320 } |
321 | 321 |
322 #endif /* _MALLOC_HOOK_INL_H_ */ | 322 #endif /* _MALLOC_HOOK_INL_H_ */ |
OLD | NEW |