Searched refs:stack_switching_ (Results 1 – 4 of 4) sorted by relevance
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/ |
H A D | msan_thread.cpp | 82 if (!stack_switching_) in GetStackBounds() 103 CHECK(!stack_switching_); in StartSwitchFiber() 106 stack_switching_ = true; in StartSwitchFiber() 110 CHECK(stack_switching_); in FinishSwitchFiber() 117 stack_switching_ = false; in FinishSwitchFiber()
|
H A D | msan_thread.h | 63 bool stack_switching_; variable
|
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
H A D | asan_thread.h | 106 if (atomic_load(&stack_switching_, memory_order_relaxed)) in get_fake_stack() 114 if (atomic_load(&stack_switching_, memory_order_relaxed)) in get_or_create_fake_stack() 159 atomic_uint8_t stack_switching_; variable
|
H A D | asan_thread.cpp | 127 if (atomic_load(&stack_switching_, memory_order_relaxed)) { in StartSwitchFiber() 134 atomic_store(&stack_switching_, 1, memory_order_release); in StartSwitchFiber() 149 if (!atomic_load(&stack_switching_, memory_order_relaxed)) { in FinishSwitchFiber() 165 atomic_store(&stack_switching_, 0, memory_order_release); in FinishSwitchFiber() 171 if (!atomic_load(&stack_switching_, memory_order_acquire)) { in GetStackBounds() 232 atomic_store(&stack_switching_, false, memory_order_release); in Init()
|