Home
last modified time | relevance | path

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

/external/v8/src/
Disolate-inl.h26 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()
[all …]
Disolate.h559 inline void set_##name(type v) { thread_local_top_.name##_ = v; } \
560 inline type name() const { return thread_local_top_.name##_; }
563 type* name##_address() { return &thread_local_top_.name##_; }
705 Context* context() { return thread_local_top_.context_; } in context()
707 Context** context_address() { return &thread_local_top_.context_; } in context_address()
739 return thread_local_top_.try_catch_handler(); in THREAD_LOCAL_TOP_ADDRESS()
742 return &thread_local_top_.external_caught_exception_; in external_caught_exception_address()
749 return reinterpret_cast<Address>(&thread_local_top_.pending_message_obj_); in pending_message_obj_address()
767 Address c_function() { return thread_local_top_.c_function_; } in c_function()
770 return &thread_local_top_.c_entry_fp_; in c_entry_fp_address()
[all …]
Disolate.cc1627 if (thread_local_top_.pending_message_obj_ == handler->message_obj_) { in Throw()
1864 Object* message_obj = thread_local_top_.pending_message_obj_; in Throw()
1946 thread_local_top_.external_caught_exception_ = false; in Throw()
1951 thread_local_top_.external_caught_exception_ = false; in Throw()
1955 thread_local_top_.external_caught_exception_ = true; in Throw()
1957 DCHECK(thread_local_top_.pending_message_obj_->IsJSMessageObject() || in Throw()
1958 thread_local_top_.pending_message_obj_->IsTheHole(this)); in Throw()
1963 if (thread_local_top_.pending_message_obj_->IsTheHole(this)) return true; in Throw()
1965 handler->message_obj_ = thread_local_top_.pending_message_obj_; in Throw()
1978 if (thread_local_top_.pending_exception_ != in Throw()
[all …]