Home
last modified time | relevance | path

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

/external/v8/src/
Disolate-inl.h17 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()
[all …]
Disolate.h393 inline void set_##name(type v) { thread_local_top_.name##_ = v; } \
394 inline type name() const { return thread_local_top_.name##_; }
397 type* name##_address() { return &thread_local_top_.name##_; }
545 Context* context() { return thread_local_top_.context_; } in context()
547 Context** context_address() { return &thread_local_top_.context_; } in context_address()
572 return thread_local_top_.try_catch_handler(); in THREAD_LOCAL_TOP_ADDRESS()
575 return &thread_local_top_.external_caught_exception_; in external_caught_exception_address()
582 return reinterpret_cast<Address>(&thread_local_top_.pending_message_obj_); in pending_message_obj_address()
599 Address c_function() { return thread_local_top_.c_function_; } in c_function()
602 return &thread_local_top_.c_entry_fp_; in c_entry_fp_address()
[all …]
Disolate.cc1460 Object* message_obj = thread_local_top_.pending_message_obj_; in ReportPendingMessages()
1496 if (thread_local_top_.pending_exception_ != heap()->termination_exception() && in GetMessageLocation()
1497 !thread_local_top_.pending_message_obj_->IsTheHole()) { in GetMessageLocation()
1499 JSMessageObject::cast(thread_local_top_.pending_message_obj_)); in GetMessageLocation()
2039 thread_local_top_.isolate_ = this; in InitializeThreadLocal()
2040 thread_local_top_.Initialize(); in InitializeThreadLocal()
2048 thread_local_top_.external_caught_exception_ = false; in PropagatePendingExceptionToExternalTryCatch()
2053 thread_local_top_.external_caught_exception_ = false; in PropagatePendingExceptionToExternalTryCatch()
2057 thread_local_top_.external_caught_exception_ = true; in PropagatePendingExceptionToExternalTryCatch()
2064 DCHECK(thread_local_top_.pending_message_obj_->IsJSMessageObject() || in PropagatePendingExceptionToExternalTryCatch()
[all …]