2012-12-04 15:54:41 +08:00
|
|
|
//===-- sanitizer_allocator.h -----------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Specialized memory allocator for ThreadSanitizer, MemorySanitizer, etc.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SANITIZER_ALLOCATOR_H
|
|
|
|
#define SANITIZER_ALLOCATOR_H
|
|
|
|
|
|
|
|
#include "sanitizer_internal_defs.h"
|
|
|
|
#include "sanitizer_common.h"
|
|
|
|
#include "sanitizer_libc.h"
|
|
|
|
#include "sanitizer_list.h"
|
|
|
|
#include "sanitizer_mutex.h"
|
2013-01-14 16:23:34 +08:00
|
|
|
#include "sanitizer_lfstack.h"
|
2016-07-22 05:38:40 +08:00
|
|
|
#include "sanitizer_procmaps.h"
|
2012-12-04 15:54:41 +08:00
|
|
|
|
|
|
|
namespace __sanitizer {
|
|
|
|
|
2014-12-13 04:07:35 +08:00
|
|
|
// Prints error message and kills the program.
|
|
|
|
void NORETURN ReportAllocatorCannotReturnNull();
|
2012-12-12 22:32:18 +08:00
|
|
|
// Allocators call these callbacks on mmap/munmap.
|
|
|
|
struct NoOpMapUnmapCallback {
|
|
|
|
void OnMap(uptr p, uptr size) const { }
|
|
|
|
void OnUnmap(uptr p, uptr size) const { }
|
|
|
|
};
|
|
|
|
|
2013-06-24 16:34:50 +08:00
|
|
|
// Callback type for iterating over chunks.
|
|
|
|
typedef void (*ForEachChunkCallback)(uptr chunk, void *arg);
|
|
|
|
|
2013-01-25 19:46:22 +08:00
|
|
|
// Returns true if calloc(size, n) should return 0 due to overflow in size*n.
|
|
|
|
bool CallocShouldReturnNullDueToOverflow(uptr size, uptr n);
|
|
|
|
|
2016-07-21 06:06:41 +08:00
|
|
|
#include "sanitizer_allocator_size_class_map.h"
|
|
|
|
#include "sanitizer_allocator_stats.h"
|
|
|
|
#include "sanitizer_allocator_primary64.h"
|
|
|
|
#include "sanitizer_allocator_bytemap.h"
|
|
|
|
#include "sanitizer_allocator_primary32.h"
|
|
|
|
#include "sanitizer_allocator_local_cache.h"
|
|
|
|
#include "sanitizer_allocator_secondary.h"
|
|
|
|
#include "sanitizer_allocator_combined.h"
|
|
|
|
|
2015-09-30 02:23:36 +08:00
|
|
|
} // namespace __sanitizer
|
2012-12-04 15:54:41 +08:00
|
|
|
|
2015-09-30 02:23:36 +08:00
|
|
|
#endif // SANITIZER_ALLOCATOR_H
|