blob: e5def17d4ee945de73d72a80a659b59b5e29dff8 [file] [log] [blame]
Sergey Matveev866abfb2013-05-20 10:54:00 +00001//=-- lsan_allocator.h ----------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of LeakSanitizer.
11// Allocator for standalone LSan.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LSAN_ALLOCATOR_H
16#define LSAN_ALLOCATOR_H
17
Francis Riccid668a012017-03-27 14:07:50 +000018#include "sanitizer_common/sanitizer_allocator.h"
Sergey Matveev866abfb2013-05-20 10:54:00 +000019#include "sanitizer_common/sanitizer_common.h"
20#include "sanitizer_common/sanitizer_internal_defs.h"
Francis Riccid668a012017-03-27 14:07:50 +000021#include "lsan_common.h"
Sergey Matveev866abfb2013-05-20 10:54:00 +000022
23namespace __lsan {
24
25void *Allocate(const StackTrace &stack, uptr size, uptr alignment,
26 bool cleared);
27void Deallocate(void *p);
28void *Reallocate(const StackTrace &stack, void *p, uptr new_size,
29 uptr alignment);
Sergey Matveev08347ca2014-08-26 14:28:28 +000030uptr GetMallocUsableSize(const void *p);
Sergey Matveev866abfb2013-05-20 10:54:00 +000031
32template<typename Callable>
33void ForEachChunk(const Callable &callback);
34
35void GetAllocatorCacheRange(uptr *begin, uptr *end);
36void AllocatorThreadFinish();
37void InitializeAllocator();
38
Francis Ricci03b2a8e2017-04-11 20:05:02 +000039const bool kAlwaysClearMemory = true;
40
Francis Riccid668a012017-03-27 14:07:50 +000041struct ChunkMetadata {
42 u8 allocated : 8; // Must be first.
43 ChunkTag tag : 2;
44#if SANITIZER_WORDSIZE == 64
45 uptr requested_size : 54;
46#else
47 uptr requested_size : 32;
48 uptr padding : 22;
49#endif
50 u32 stack_trace_id;
51};
52
Maxim Ostapenkode3b9a22017-04-11 14:58:26 +000053#if defined(__mips64) || defined(__aarch64__) || defined(__i386__) || \
54 defined(__arm__)
Francis Riccid668a012017-03-27 14:07:50 +000055static const uptr kRegionSizeLog = 20;
56static const uptr kNumRegions = SANITIZER_MMAP_RANGE_SIZE >> kRegionSizeLog;
57typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap;
58typedef CompactSizeClassMap SizeClassMap;
59typedef SizeClassAllocator32<0, SANITIZER_MMAP_RANGE_SIZE,
60 sizeof(ChunkMetadata), SizeClassMap, kRegionSizeLog, ByteMap>
61 PrimaryAllocator;
62#elif defined(__x86_64__)
63struct AP64 { // Allocator64 parameters. Deliberately using a short name.
64 static const uptr kSpaceBeg = 0x600000000000ULL;
65 static const uptr kSpaceSize = 0x40000000000ULL; // 4T.
66 static const uptr kMetadataSize = sizeof(ChunkMetadata);
67 typedef DefaultSizeClassMap SizeClassMap;
68 typedef NoOpMapUnmapCallback MapUnmapCallback;
69 static const uptr kFlags = 0;
70};
71
72typedef SizeClassAllocator64<AP64> PrimaryAllocator;
73#endif
74typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
75
76AllocatorCache *GetAllocatorCache();
Francis Ricci03b2a8e2017-04-11 20:05:02 +000077
78void *lsan_memalign(uptr alignment, uptr size, const StackTrace &stack);
79void *lsan_malloc(uptr size, const StackTrace &stack);
80void lsan_free(void *p);
81void *lsan_realloc(void *p, uptr size, const StackTrace &stack);
82void *lsan_calloc(uptr nmemb, uptr size, const StackTrace &stack);
83void *lsan_valloc(uptr size, const StackTrace &stack);
84uptr lsan_mz_size(const void *p);
85
Sergey Matveev866abfb2013-05-20 10:54:00 +000086} // namespace __lsan
87
88#endif // LSAN_ALLOCATOR_H