Lines Matching refs:thread_local_top_
17 thread_local_top_.context_ = context; in set_context()
23 DCHECK(!thread_local_top_.pending_exception_->IsException()); in pending_exception()
24 return thread_local_top_.pending_exception_; in pending_exception()
30 thread_local_top_.pending_exception_ = exception_obj; in set_pending_exception()
35 DCHECK(!thread_local_top_.pending_exception_->IsException()); in clear_pending_exception()
36 thread_local_top_.pending_exception_ = heap_.the_hole_value(); in clear_pending_exception()
41 DCHECK(!thread_local_top_.pending_exception_->IsException()); in has_pending_exception()
42 return !thread_local_top_.pending_exception_->IsTheHole(); in has_pending_exception()
47 thread_local_top_.pending_message_obj_ = heap_.the_hole_value(); in clear_pending_message()
53 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in scheduled_exception()
54 return thread_local_top_.scheduled_exception_; in scheduled_exception()
59 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in has_scheduled_exception()
60 return thread_local_top_.scheduled_exception_ != heap_.the_hole_value(); in has_scheduled_exception()
65 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in clear_scheduled_exception()
66 thread_local_top_.scheduled_exception_ = heap_.the_hole_value(); in clear_scheduled_exception()