Home
last modified time | relevance | path

Searched refs:cur_stack (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp212 thread_stack_ll *cur_stack = in thread_cleanup_handler() local
214 cur_stack->stack_base = (char *)unsafe_stack_start - unsafe_stack_guard; in thread_cleanup_handler()
215 cur_stack->size = unsafe_stack_size + unsafe_stack_guard; in thread_cleanup_handler()
216 cur_stack->pid = pid; in thread_cleanup_handler()
217 cur_stack->tid = tid; in thread_cleanup_handler()
223 cur_stack->next = temp_stacks; in thread_cleanup_handler()
224 thread_stacks = cur_stack; in thread_cleanup_handler()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp78 const uptr cur_stack = GET_CURRENT_FRAME(); in GetStackBounds() local
82 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_thread.cpp86 const uptr cur_stack = GET_CURRENT_FRAME(); in GetStackBounds() local
90 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp203 const uptr cur_stack = (uptr)&local; in GetStackBounds() local
207 if (cur_stack >= next_stack_bottom_ && cur_stack < next_stack_top_) in GetStackBounds()