Lines Matching refs:thread_local_top_
26 thread_local_top_.context_ = context; in set_context()
39 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in pending_exception()
40 return thread_local_top_.pending_exception_; in pending_exception()
46 thread_local_top_.pending_exception_ = exception_obj; in set_pending_exception()
51 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in clear_pending_exception()
52 thread_local_top_.pending_exception_ = ReadOnlyRoots(this).the_hole_value(); in clear_pending_exception()
57 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in has_pending_exception()
58 return !thread_local_top_.pending_exception_->IsTheHole(this); in has_pending_exception()
62 return thread_local_top_.wasm_caught_exception_; in get_wasm_caught_exception()
66 thread_local_top_.wasm_caught_exception_ = exception; in set_wasm_caught_exception()
70 thread_local_top_.wasm_caught_exception_ = nullptr; in clear_wasm_caught_exception()
74 thread_local_top_.pending_message_obj_ = ReadOnlyRoots(this).the_hole_value(); in clear_pending_message()
80 DCHECK(!thread_local_top_.scheduled_exception_->IsException(this)); in scheduled_exception()
81 return thread_local_top_.scheduled_exception_; in scheduled_exception()
86 DCHECK(!thread_local_top_.scheduled_exception_->IsException(this)); in has_scheduled_exception()
87 return thread_local_top_.scheduled_exception_ != in has_scheduled_exception()
93 DCHECK(!thread_local_top_.scheduled_exception_->IsException(this)); in clear_scheduled_exception()
94 thread_local_top_.scheduled_exception_ = ReadOnlyRoots(this).the_hole_value(); in clear_scheduled_exception()