Searched refs:stack_switching_ (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_thread.cpp | 76 if (!stack_switching_) in GetStackBounds() 97 CHECK(!stack_switching_); in StartSwitchFiber() 100 stack_switching_ = true; in StartSwitchFiber() 104 CHECK(stack_switching_); in FinishSwitchFiber() 111 stack_switching_ = false; in FinishSwitchFiber()
|
| H A D | msan_thread.h | 63 bool stack_switching_; variable
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
| H A D | nsan_thread.cpp | 84 if (!stack_switching_) in GetStackBounds() 105 CHECK(!stack_switching_); in StartSwitchFiber() 108 stack_switching_ = true; in StartSwitchFiber() 112 CHECK(stack_switching_); in FinishSwitchFiber() 119 stack_switching_ = false; in FinishSwitchFiber()
|
| H A D | nsan_thread.h | 55 bool stack_switching_; variable
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_thread.h | 116 if (atomic_load(&stack_switching_, memory_order_relaxed)) in get_fake_stack() 124 if (atomic_load(&stack_switching_, memory_order_relaxed)) in get_or_create_fake_stack() 175 atomic_uint8_t stack_switching_; variable
|
| H A D | asan_thread.cpp | 153 if (atomic_load(&stack_switching_, memory_order_relaxed)) { in StartSwitchFiber() 160 atomic_store(&stack_switching_, 1, memory_order_release); in StartSwitchFiber() 174 if (!atomic_load(&stack_switching_, memory_order_relaxed)) { in FinishSwitchFiber() 190 atomic_store(&stack_switching_, 0, memory_order_release); in FinishSwitchFiber() 196 if (!atomic_load(&stack_switching_, memory_order_acquire)) { in GetStackBounds() 254 atomic_store(&stack_switching_, false, memory_order_release); in Init()
|