Home
last modified time | relevance | path

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

/external/v8/src/execution/
Dstack-guard.cc77 thread_local_.interrupt_flags_ & scope->intercept_mask_; in PushInterruptsScope()
79 thread_local_.interrupt_flags_ &= ~intercepted; in PushInterruptsScope()
89 thread_local_.interrupt_flags_ |= restored_flags; in PushInterruptsScope()
105 DCHECK_EQ(thread_local_.interrupt_flags_ & top->intercept_mask_, 0); in PopInterruptsScope()
106 thread_local_.interrupt_flags_ |= top->intercepted_flags_; in PopInterruptsScope()
114 if ((thread_local_.interrupt_flags_ & flag) && in PopInterruptsScope()
116 thread_local_.interrupt_flags_ &= ~flag; in PopInterruptsScope()
128 return (thread_local_.interrupt_flags_ & flag) != 0; in CheckInterrupt()
140 thread_local_.interrupt_flags_ |= flag; in RequestInterrupt()
156 thread_local_.interrupt_flags_ &= ~flag; in ClearInterrupt()
[all …]
Dstack-guard.h99 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
166 intptr_t interrupt_flags_ = 0; variable