/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps_bsd.cpp | 38 InfoProc = (struct kinfo_proc *)MmapOrDie(Size, "GetMemoryProfile()"); in GetMemoryProfile() 52 InfoProc = (struct kinfo_proc2 *)MmapOrDie(Size, "GetMemoryProfile()"); 85 void *VmMap = MmapOrDie(MmapedSize, "ReadProcMaps()"); in ReadProcMaps()
|
H A D | sanitizer_deadlock_detector2.cpp | 118 void *mem = MmapOrDie(sizeof(DD), "deadlock detector"); in Create() 125 DDPhysicalThread *pt = (DDPhysicalThread*)MmapOrDie(sizeof(DDPhysicalThread), in CreatePhysicalThread() 177 mutex[id_gen / kL2Size] = (MutexState *)MmapOrDie( in allocateId()
|
H A D | sanitizer_procmaps_solaris.cpp | 37 void *VmMap = MmapOrDie(MmapedSize, "ReadProcMaps()"); in ReadProcMaps()
|
H A D | sanitizer_flags.cpp | 94 char *buf = (char *)MmapOrDie(kMaxPathLength, "FlagHandlerInclude"); in Parse()
|
H A D | sanitizer_posix.cpp | 46 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) { in MmapOrDie() function 258 char *filename = (char*)MmapOrDie(kBufSize, __func__); in DumpProcessMap()
|
H A D | sanitizer_flat_map.h | 147 res = reinterpret_cast<T *>(MmapOrDie(MmapSize(), "TwoLevelMap")); in Create()
|
H A D | sanitizer_ring_buffer.h | 26 void *Ptr = MmapOrDie(SizeInBytes(Size), "RingBuffer"); in New()
|
H A D | sanitizer_tls_get_addr.cpp | 54 (DTLS::DTVBlock *)MmapOrDie(sizeof(DTLS::DTVBlock), "DTLS_NextBlock"); in DTLS_NextBlock()
|
H A D | sanitizer_allocator.cpp | 155 allocated_current_ = (char *)MmapOrDie(size_to_allocate, __func__); in Allocate()
|
H A D | sanitizer_fuchsia.cpp | 218 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) { in MmapOrDie() function 223 return MmapOrDie(size, mem_type); in MmapNoReserveOrDie()
|
H A D | sanitizer_win.cpp | 139 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) { in MmapOrDie() function 320 return MmapOrDie(size, mem_type); in MmapNoReserveOrDie() 660 hmodules = (HMODULE *)MmapOrDie(modules_buffer_size, __FUNCTION__); in init()
|
H A D | sanitizer_common.h | 90 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report = false); 93 return MmapOrDie(size, mem_type, /*raw_report*/ true); in MmapOrDieQuietly() 599 (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector", raw_report); in Realloc()
|
H A D | sanitizer_file.cpp | 142 *buff = (char*)MmapOrDie(size, __func__); in ReadFileToBuffer()
|
H A D | sanitizer_deadlock_detector1.cpp | 63 void *mem = MmapOrDie(sizeof(DD), "deadlock detector"); in Create()
|
H A D | sanitizer_stoptheworld_netbsd_libcdep.cpp | 240 (uptr)MmapOrDie(stack_size_ + guard_size_, "ScopedStackWithGuard"); in ScopedStackSpaceWithGuard()
|
H A D | sanitizer_allocator_primary32.h | 141 void *res = MmapOrDie(size, PrimaryAllocatorName); in MapWithCallback()
|
H A D | sanitizer_posix_libcdep.cpp | 199 altstack.ss_sp = (char *)MmapOrDie(altstack.ss_size, __func__); in SetAlternateSignalStack()
|
H A D | sanitizer_addrhashmap.h | 200 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap"); in AddrHashMap()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_platform_mac.cpp | 77 auto dts = (ThreadState *)MmapOrDie(sizeof(ThreadState), "ThreadState"); in InitializeThreadStateStorage() 98 thr = (ThreadState *)MmapOrDie(sizeof(ThreadState), "ThreadState"); in cur_thread()
|
H A D | tsan_platform_linux.cpp | 616 thr = reinterpret_cast<ThreadState*>(MmapOrDie(sizeof(ThreadState), in cur_thread() 621 MmapOrDie(sizeof(ThreadState), "ThreadState")); in cur_thread()
|
H A D | tsan_dense_alloc.h | 180 T *batch = (T *)MmapOrDie(kL2Size * sizeof(T), name_); in AllocSuperBlock()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_thread.cpp | 14 DFsanThread *thread = (DFsanThread *)MmapOrDie(size, __func__); in Create()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_thread.cpp | 14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__); in Create()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.cpp | 79 MemprofThread *thread = (MemprofThread *)MmapOrDie(size, __func__); in Create()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_fuchsia.cpp | 122 AsanThread *thread = (AsanThread *)MmapOrDie(AsanThreadMmapSize(), __func__); in CreateAsanThread()
|