Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 1 | //===-- tsan_mman.h ---------------------------------------------*- C++ -*-===// |
| 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 ThreadSanitizer (TSan), a race detector. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | #ifndef TSAN_MMAN_H |
| 14 | #define TSAN_MMAN_H |
| 15 | |
| 16 | #include "tsan_defs.h" |
| 17 | |
| 18 | namespace __tsan { |
| 19 | |
Dmitry Vyukov | 954fc8c | 2012-08-15 15:35:15 +0000 | [diff] [blame] | 20 | const uptr kDefaultAlignment = 16; |
| 21 | |
| 22 | void InitializeAllocator(); |
| 23 | void AlloctorThreadFinish(ThreadState *thr); |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 24 | |
| 25 | // For user allocations. |
Dmitry Vyukov | 954fc8c | 2012-08-15 15:35:15 +0000 | [diff] [blame] | 26 | void *user_alloc(ThreadState *thr, uptr pc, uptr sz, |
| 27 | uptr align = kDefaultAlignment); |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 28 | // Does not accept NULL. |
| 29 | void user_free(ThreadState *thr, uptr pc, void *p); |
| 30 | void *user_realloc(ThreadState *thr, uptr pc, void *p, uptr sz); |
| 31 | void *user_alloc_aligned(ThreadState *thr, uptr pc, uptr sz, uptr align); |
| 32 | // Given the pointer p into a valid allocated block, |
| 33 | // returns the descriptor of the block. |
| 34 | MBlock *user_mblock(ThreadState *thr, void *p); |
| 35 | |
Alexey Samsonov | 3130146 | 2012-09-24 13:19:47 +0000 | [diff] [blame^] | 36 | // Invoking malloc/free hooks that may be installed by the user. |
| 37 | void invoke_malloc_hook(void *ptr, uptr size); |
| 38 | void invoke_free_hook(void *ptr); |
| 39 | |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 40 | enum MBlockType { |
| 41 | MBlockScopedBuf, |
| 42 | MBlockString, |
| 43 | MBlockStackTrace, |
Dmitry Vyukov | 5bfac97 | 2012-07-16 16:44:47 +0000 | [diff] [blame] | 44 | MBlockShadowStack, |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 45 | MBlockSync, |
| 46 | MBlockClock, |
| 47 | MBlockThreadContex, |
Dmitry Vyukov | f6985e3 | 2012-05-22 14:34:43 +0000 | [diff] [blame] | 48 | MBlockDeadInfo, |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 49 | MBlockRacyStacks, |
| 50 | MBlockRacyAddresses, |
| 51 | MBlockAtExit, |
| 52 | MBlockFlag, |
| 53 | MBlockReport, |
| 54 | MBlockReportMop, |
| 55 | MBlockReportThread, |
| 56 | MBlockReportMutex, |
| 57 | MBlockReportLoc, |
| 58 | MBlockReportStack, |
| 59 | MBlockSuppression, |
| 60 | MBlockExpectRace, |
Dmitry Vyukov | 97c26bd | 2012-06-27 16:05:06 +0000 | [diff] [blame] | 61 | MBlockSignal, |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 62 | |
| 63 | // This must be the last. |
Alexey Samsonov | 046248c | 2012-09-13 11:54:41 +0000 | [diff] [blame] | 64 | MBlockTypeCount |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | // For internal data structures. |
| 68 | void *internal_alloc(MBlockType typ, uptr sz); |
| 69 | void internal_free(void *p); |
| 70 | |
| 71 | template<typename T> |
| 72 | void DestroyAndFree(T *&p) { |
| 73 | p->~T(); |
| 74 | internal_free(p); |
| 75 | p = 0; |
| 76 | } |
| 77 | |
Kostya Serebryany | 4ad375f | 2012-05-10 13:48:04 +0000 | [diff] [blame] | 78 | } // namespace __tsan |
| 79 | #endif // TSAN_MMAN_H |