Searched refs:stack_ (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_thread.cpp | 23 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls() 30 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 42 CHECK(MEM_IS_APP(stack_.bottom)); in Init() 43 CHECK(MEM_IS_APP(stack_.top - 1)); in Init() 77 return {stack_.bottom, stack_.top}; in GetStackBounds() 84 return {stack_.bottom, stack_.top}; in GetStackBounds() 106 *bottom_old = stack_.bottom; in FinishSwitchFiber() 108 *size_old = stack_.top - stack_.bottom; in FinishSwitchFiber() 109 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber() 110 stack_.top = next_stack_.top; in FinishSwitchFiber()
|
| 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 | 214 stack_(stack) { in QuarantineCallback() 269 ReportOutOfMemory(size, stack_); in Allocate() 277 BufferedStackTrace* const stack_; member
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
| H A D | nsan_thread.cpp | 32 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls() 39 __nsan_set_value_unknown((const u8 *)stack_.bottom, in ClearShadowForThreadStackAndTLS() 40 stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 85 return {stack_.bottom, stack_.top}; in GetStackBounds() 92 return {stack_.bottom, stack_.top}; in GetStackBounds() 114 *bottom_old = stack_.bottom; in FinishSwitchFiber() 116 *size_old = stack_.top - stack_.bottom; in FinishSwitchFiber() 117 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber() 118 stack_.top = next_stack_.top; in FinishSwitchFiber()
|
| H A D | nsan_thread.h | 57 StackBounds stack_; variable
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_thread.cpp | 24 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls() 31 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 82 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_) {
|