Searched refs:stack_ (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_thread.cpp | 25 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls() 27 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls() 35 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 47 CHECK(MEM_IS_APP(stack_.bottom)); in Init() 48 CHECK(MEM_IS_APP(stack_.top - 1)); in Init() 84 return {stack_.bottom, stack_.top}; in GetStackBounds() 91 return {stack_.bottom, stack_.top}; in GetStackBounds() 113 *bottom_old = stack_.bottom; in FinishSwitchFiber() 115 *size_old = stack_.top - stack_.bottom; in FinishSwitchFiber() 116 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber() [all …]
|
H A D | msan_thread.h | 65 StackBounds stack_; variable
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_errors.h | 132 ErrorMallocUsableSizeNotOwned(u32 tid, BufferedStackTrace *stack_, uptr addr) in ErrorMallocUsableSizeNotOwned() 134 stack(stack_), in ErrorMallocUsableSizeNotOwned() 144 ErrorSanitizerGetAllocatedSizeNotOwned(u32 tid, BufferedStackTrace *stack_, in ErrorSanitizerGetAllocatedSizeNotOwned() 147 stack(stack_), in ErrorSanitizerGetAllocatedSizeNotOwned() 158 ErrorCallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorCallocOverflow() 161 stack(stack_), in ErrorCallocOverflow() 173 ErrorReallocArrayOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorReallocArrayOverflow() 176 stack(stack_), in ErrorReallocArrayOverflow() 187 ErrorPvallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr size_) in ErrorPvallocOverflow() 189 stack(stack_), in ErrorPvallocOverflow() [all …]
|
H A D | asan_allocator.cpp | 213 stack_(stack) { in QuarantineCallback() 268 ReportOutOfMemory(size, stack_); in Allocate() 276 BufferedStackTrace* const stack_; member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_thread.cpp | 26 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls() 28 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls() 36 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 87 return {stack_.bottom, stack_.top}; in GetStackBounds()
|
H A D | dfsan_thread.h | 65 StackBounds stack_; variable
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_report.cpp | 24 const StackTrace *stack_) in ScopedAllocatorErrorReport() argument 26 stack(stack_) { in ScopedAllocatorErrorReport()
|
H A D | sanitizer_syscalls_netbsd.inc | 2115 PRE_SYSCALL(__clone)(long long flags_, void *stack_) { /* Nothing to do */ } 2116 POST_SYSCALL(__clone)(long long res, long long flags_, void *stack_) {
|