2012-05-10 21:48:04 +08:00
|
|
|
//===-- tsan_mman.h ---------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of ThreadSanitizer (TSan), a race detector.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef TSAN_MMAN_H
|
|
|
|
#define TSAN_MMAN_H
|
|
|
|
|
|
|
|
#include "tsan_defs.h"
|
|
|
|
|
|
|
|
namespace __tsan {
|
|
|
|
|
2012-08-15 23:35:15 +08:00
|
|
|
const uptr kDefaultAlignment = 16;
|
|
|
|
|
|
|
|
void InitializeAllocator();
|
2016-05-07 03:35:22 +08:00
|
|
|
void InitializeAllocatorLate();
|
2015-11-05 18:31:21 +08:00
|
|
|
void ReplaceSystemMalloc();
|
2016-04-27 16:23:02 +08:00
|
|
|
void AllocatorProcStart(Processor *proc);
|
|
|
|
void AllocatorProcFinish(Processor *proc);
|
2013-01-24 17:08:03 +08:00
|
|
|
void AllocatorPrintStats();
|
2012-05-10 21:48:04 +08:00
|
|
|
|
|
|
|
// For user allocations.
|
2012-08-15 23:35:15 +08:00
|
|
|
void *user_alloc(ThreadState *thr, uptr pc, uptr sz,
|
2014-10-15 16:56:43 +08:00
|
|
|
uptr align = kDefaultAlignment, bool signal = true);
|
2014-12-13 04:07:35 +08:00
|
|
|
void *user_calloc(ThreadState *thr, uptr pc, uptr sz, uptr n);
|
2012-05-10 21:48:04 +08:00
|
|
|
// Does not accept NULL.
|
2014-10-15 16:56:43 +08:00
|
|
|
void user_free(ThreadState *thr, uptr pc, void *p, bool signal = true);
|
2012-05-10 21:48:04 +08:00
|
|
|
void *user_realloc(ThreadState *thr, uptr pc, void *p, uptr sz);
|
|
|
|
void *user_alloc_aligned(ThreadState *thr, uptr pc, uptr sz, uptr align);
|
2014-07-08 01:39:31 +08:00
|
|
|
uptr user_alloc_usable_size(const void *p);
|
2012-05-10 21:48:04 +08:00
|
|
|
|
2012-09-24 21:19:47 +08:00
|
|
|
// Invoking malloc/free hooks that may be installed by the user.
|
|
|
|
void invoke_malloc_hook(void *ptr, uptr size);
|
|
|
|
void invoke_free_hook(void *ptr);
|
|
|
|
|
2012-05-10 21:48:04 +08:00
|
|
|
enum MBlockType {
|
|
|
|
MBlockScopedBuf,
|
|
|
|
MBlockString,
|
|
|
|
MBlockStackTrace,
|
2012-07-17 00:44:47 +08:00
|
|
|
MBlockShadowStack,
|
2012-05-10 21:48:04 +08:00
|
|
|
MBlockSync,
|
|
|
|
MBlockClock,
|
|
|
|
MBlockThreadContex,
|
2012-05-22 22:34:43 +08:00
|
|
|
MBlockDeadInfo,
|
2012-05-10 21:48:04 +08:00
|
|
|
MBlockRacyStacks,
|
|
|
|
MBlockRacyAddresses,
|
|
|
|
MBlockAtExit,
|
|
|
|
MBlockFlag,
|
|
|
|
MBlockReport,
|
|
|
|
MBlockReportMop,
|
|
|
|
MBlockReportThread,
|
|
|
|
MBlockReportMutex,
|
|
|
|
MBlockReportLoc,
|
|
|
|
MBlockReportStack,
|
|
|
|
MBlockSuppression,
|
|
|
|
MBlockExpectRace,
|
2012-06-28 00:05:06 +08:00
|
|
|
MBlockSignal,
|
2013-03-25 18:10:44 +08:00
|
|
|
MBlockJmpBuf,
|
2012-05-10 21:48:04 +08:00
|
|
|
|
|
|
|
// This must be the last.
|
2012-09-13 19:54:41 +08:00
|
|
|
MBlockTypeCount
|
2012-05-10 21:48:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// For internal data structures.
|
|
|
|
void *internal_alloc(MBlockType typ, uptr sz);
|
|
|
|
void internal_free(void *p);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void DestroyAndFree(T *&p) {
|
|
|
|
p->~T();
|
|
|
|
internal_free(p);
|
|
|
|
p = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace __tsan
|
|
|
|
#endif // TSAN_MMAN_H
|