1 //===-- sanitizer_allocator.h -----------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Specialized memory allocator for ThreadSanitizer, MemorySanitizer, etc.
11 //===----------------------------------------------------------------------===//
13 #ifndef SANITIZER_ALLOCATOR_H
14 #define SANITIZER_ALLOCATOR_H
16 #include "sanitizer_common.h"
17 #include "sanitizer_flat_map.h"
18 #include "sanitizer_internal_defs.h"
19 #include "sanitizer_lfstack.h"
20 #include "sanitizer_libc.h"
21 #include "sanitizer_list.h"
22 #include "sanitizer_local_address_space_view.h"
23 #include "sanitizer_mutex.h"
24 #include "sanitizer_procmaps.h"
25 #include "sanitizer_type_traits.h"
27 namespace __sanitizer
{
29 // Allows the tools to name their allocations appropriately.
30 extern const char *PrimaryAllocatorName
;
31 extern const char *SecondaryAllocatorName
;
33 // Since flags are immutable and allocator behavior can be changed at runtime
34 // (unit tests or ASan on Android are some examples), allocator_may_return_null
35 // flag value is cached here and can be altered later.
36 bool AllocatorMayReturnNull();
37 void SetAllocatorMayReturnNull(bool may_return_null
);
39 // Returns true if allocator detected OOM condition. Can be used to avoid memory
41 bool IsAllocatorOutOfMemory();
42 // Should be called by a particular allocator when OOM is detected.
43 void SetAllocatorOutOfMemory();
45 void PrintHintAllocatorCannotReturnNull();
47 // Callback type for iterating over chunks.
48 typedef void (*ForEachChunkCallback
)(uptr chunk
, void *arg
);
50 inline u32
Rand(u32
*state
) { // ANSI C linear congruential PRNG.
51 return (*state
= *state
* 1103515245 + 12345) >> 16;
54 inline u32
RandN(u32
*state
, u32 n
) { return Rand(state
) % n
; } // [0, n)
57 inline void RandomShuffle(T
*a
, u32 n
, u32
*rand_state
) {
59 u32 state
= *rand_state
;
60 for (u32 i
= n
- 1; i
> 0; i
--)
61 Swap(a
[i
], a
[RandN(&state
, i
+ 1)]);
65 struct NoOpMapUnmapCallback
{
66 void OnMap(uptr p
, uptr size
) const {}
67 void OnMapSecondary(uptr p
, uptr size
, uptr user_begin
,
68 uptr user_size
) const {}
69 void OnUnmap(uptr p
, uptr size
) const {}
72 #include "sanitizer_allocator_size_class_map.h"
73 #include "sanitizer_allocator_stats.h"
74 #include "sanitizer_allocator_primary64.h"
75 #include "sanitizer_allocator_primary32.h"
76 #include "sanitizer_allocator_local_cache.h"
77 #include "sanitizer_allocator_secondary.h"
78 #include "sanitizer_allocator_combined.h"
80 bool IsRssLimitExceeded();
81 void SetRssLimitExceeded(bool limit_exceeded
);
83 } // namespace __sanitizer
85 #endif // SANITIZER_ALLOCATOR_H