Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Disolate.h267 Object* pending_exception_; variable
562 DCHECK(!thread_local_top_.pending_exception_->IsException()); in THREAD_LOCAL_TOP_ACCESSOR()
563 return thread_local_top_.pending_exception_; in THREAD_LOCAL_TOP_ACCESSOR()
568 thread_local_top_.pending_exception_ = exception_obj; in set_pending_exception()
572 DCHECK(!thread_local_top_.pending_exception_->IsException()); in clear_pending_exception()
573 thread_local_top_.pending_exception_ = heap_.the_hole_value(); in clear_pending_exception()
577 return &thread_local_top_.pending_exception_; in pending_exception_address()
581 DCHECK(!thread_local_top_.pending_exception_->IsException()); in has_pending_exception()
582 return !thread_local_top_.pending_exception_->IsTheHole(); in has_pending_exception()
702 pending_exception_(isolate_->pending_exception(), isolate_), in ExceptionScope()
[all …]
Disolate.cc86 pending_exception_ = NULL; in InitializeInternal()
188 v->VisitPointer(&thread->pending_exception_); in Iterate()
1205 if (thread_local_top_.pending_exception_ == heap()->termination_exception()) { in ReportPendingMessages()
1235 if (thread_local_top_.pending_exception_ != heap()->termination_exception() && in GetMessageLocation()
1794 if (thread_local_top_.pending_exception_ == heap()->termination_exception()) { in PropagatePendingExceptionToExternalTryCatch()