Home
last modified time | relevance | path

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

/external/v8/src/
Disolate.h390 inline void set_##name(type v) { thread_local_top_.name##_ = v; } \
391 inline type name() const { return thread_local_top_.name##_; }
547 Context* context() { return thread_local_top_.context_; } in context()
550 thread_local_top_.context_ = context; in set_context()
552 Context** context_address() { return &thread_local_top_.context_; } in context_address()
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()
[all …]
Disolate.cc1205 if (thread_local_top_.pending_exception_ == heap()->termination_exception()) { in ReportPendingMessages()
1209 if (thread_local_top_.has_pending_message_) { in ReportPendingMessages()
1210 thread_local_top_.has_pending_message_ = false; in ReportPendingMessages()
1211 if (!thread_local_top_.pending_message_obj_->IsTheHole()) { in ReportPendingMessages()
1213 Handle<Object> message_obj(thread_local_top_.pending_message_obj_, in ReportPendingMessages()
1215 if (!thread_local_top_.pending_message_script_->IsTheHole()) { in ReportPendingMessages()
1217 Script::cast(thread_local_top_.pending_message_script_)); in ReportPendingMessages()
1218 int start_pos = thread_local_top_.pending_message_start_pos_; in ReportPendingMessages()
1219 int end_pos = thread_local_top_.pending_message_end_pos_; in ReportPendingMessages()
1235 if (thread_local_top_.pending_exception_ != heap()->termination_exception() && in GetMessageLocation()
[all …]