• Home
  • Raw
  • Download

Lines Matching refs:thread_local_top_

534   Context* context() { return thread_local_top_.context_; }  in context()
536 thread_local_top_.context_ = context; in set_context()
538 Context** context_address() { return &thread_local_top_.context_; } in context_address()
540 SaveContext* save_context() {return thread_local_top_.save_context_; } in save_context()
542 thread_local_top_.save_context_ = save; in set_save_context()
546 ThreadId thread_id() { return thread_local_top_.thread_id_; } in thread_id()
547 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; } in set_thread_id()
552 return thread_local_top_.pending_exception_; in pending_exception()
555 return thread_local_top_.external_caught_exception_; in external_caught_exception()
558 thread_local_top_.external_caught_exception_ = value; in set_external_caught_exception()
561 thread_local_top_.pending_exception_ = exception; in set_pending_exception()
564 thread_local_top_.pending_exception_ = heap_.the_hole_value(); in clear_pending_exception()
567 return &thread_local_top_.pending_exception_; in pending_exception_address()
570 return !thread_local_top_.pending_exception_->IsTheHole(); in has_pending_exception()
573 thread_local_top_.has_pending_message_ = false; in clear_pending_message()
574 thread_local_top_.pending_message_obj_ = heap_.the_hole_value(); in clear_pending_message()
575 thread_local_top_.pending_message_script_ = NULL; in clear_pending_message()
578 return thread_local_top_.TryCatchHandler(); in try_catch_handler()
581 return thread_local_top_.try_catch_handler_address(); in try_catch_handler_address()
584 return &thread_local_top_.external_caught_exception_; in external_caught_exception_address()
587 return thread_local_top_.catcher_; in catcher()
590 thread_local_top_.catcher_ = catcher; in set_catcher()
594 return &thread_local_top_.scheduled_exception_; in scheduled_exception_address()
598 return thread_local_top_.scheduled_exception_; in scheduled_exception()
601 return !thread_local_top_.scheduled_exception_->IsTheHole(); in has_scheduled_exception()
604 thread_local_top_.scheduled_exception_ = heap_.the_hole_value(); in clear_scheduled_exception()
621 return &thread_local_top_.c_entry_fp_; in c_entry_fp_address()
623 inline Address* handler_address() { return &thread_local_top_.handler_; } in handler_address()
631 return &thread_local_top_.js_entry_sp_; in js_entry_sp_address()
636 void* formal_count_address() { return &thread_local_top_.formal_count_; } in formal_count_address()
650 return Handle<JSBuiltinsObject>(thread_local_top_.context_->builtins()); in js_builtins_object()
654 void FreeThreadResources() { thread_local_top_.Free(); } in FreeThreadResources()
692 return thread_local_top_.ignore_out_of_memory_; in ignore_out_of_memory()
695 thread_local_top_.ignore_out_of_memory_ = value; in set_ignore_out_of_memory()
825 ThreadLocalTop* thread_local_top() { return &thread_local_top_; } in thread_local_top()
994 return thread_local_top_.external_callback_; in external_callback()
997 thread_local_top_.external_callback_ = callback; in set_external_callback()
1003 return thread_local_top_.current_vm_state_; in current_vm_state()
1008 StateTag current_state = thread_local_top_.current_vm_state_; in SetCurrentVMState()
1023 thread_local_top_.current_vm_state_ = state; in SetCurrentVMState()
1155 ThreadLocalTop thread_local_top_; variable