Home
last modified time | relevance | path

Searched refs:interrupt_flags_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/execution/
Dstack-guard.cc85 thread_local_.interrupt_flags_ & scope->intercept_mask_; in PushInterruptsScope()
87 thread_local_.interrupt_flags_ &= ~intercepted; in PushInterruptsScope()
97 thread_local_.interrupt_flags_ |= restored_flags; in PushInterruptsScope()
113 DCHECK_EQ(thread_local_.interrupt_flags_ & top->intercept_mask_, 0); in PopInterruptsScope()
114 thread_local_.interrupt_flags_ |= top->intercepted_flags_; in PopInterruptsScope()
122 if ((thread_local_.interrupt_flags_ & flag) && in PopInterruptsScope()
124 thread_local_.interrupt_flags_ &= ~flag; in PopInterruptsScope()
136 return (thread_local_.interrupt_flags_ & flag) != 0; in CheckInterrupt()
148 thread_local_.interrupt_flags_ |= flag; in RequestInterrupt()
164 thread_local_.interrupt_flags_ &= ~flag; in ClearInterrupt()
[all …]
Dstack-guard.h114 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
181 intptr_t interrupt_flags_ = 0; variable