Home
last modified time | relevance | path

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

/external/v8/src/
Disolate-inl.h28 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in pending_exception()
29 return thread_local_top_.pending_exception_; in pending_exception()
35 thread_local_top_.pending_exception_ = exception_obj; in set_pending_exception()
40 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in clear_pending_exception()
41 thread_local_top_.pending_exception_ = heap_.the_hole_value(); in clear_pending_exception()
46 DCHECK(!thread_local_top_.pending_exception_->IsException(this)); in has_pending_exception()
47 return !thread_local_top_.pending_exception_->IsTheHole(this); in has_pending_exception()
101 pending_exception_(isolate_->pending_exception(), isolate_) {} in ExceptionScope()
105 isolate_->set_pending_exception(*pending_exception_); in ~ExceptionScope()
Disolate.h307 Object* pending_exception_; variable
683 Handle<Object> pending_exception_; variable
Disolate.cc101 pending_exception_ = NULL; in InitializeInternal()
216 v->VisitPointer(&thread->pending_exception_); in Iterate()
1748 if (thread_local_top_.pending_exception_ != heap()->termination_exception() && in Throw()