Home
last modified time | relevance | path

Searched refs:stack_top_ (Results 1 – 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
HDasan_thread.cpp154 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber()
156 stack_top_ = next_stack_top_; in FinishSwitchFiber()
165 if (stack_bottom_ >= stack_top_) return {0, 0}; in GetStackBounds()
166 return {stack_bottom_, stack_top_}; in GetStackBounds()
175 return {stack_bottom_, stack_top_}; in GetStackBounds()
225 if (stack_top_ != stack_bottom_) { in Init()
228 CHECK(AddrIsInMem(stack_top_ - 1)); in Init()
236 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
294 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
298 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
[all …]
HDasan_thread.h154 uptr stack_top_; variable
HDasan_fuchsia.cpp122 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
HDasan_rtems.cpp126 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
HDhwasan_thread.cpp58 stack_top_ = stack_bottom_ + stack_size; in Init()
65 CHECK(MemIsApp(stack_top_ - 1)); in Init()
79 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
80 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
HDhwasan_thread.h30 uptr stack_top() { return stack_top_; } in stack_top()
38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
74 uptr stack_top_; variable
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
HDmsan_thread.h30 uptr stack_top() { return stack_top_; } in stack_top()
37 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
55 uptr stack_top_; variable
HDmsan_thread.cpp27 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_top_ - 1)); in Init()