Lines Matching full:thread_local_top_
534 Context* context() { return thread_local_top_.context_; }
536 thread_local_top_.context_ = context;
538 Context** context_address() { return &thread_local_top_.context_; }
540 SaveContext* save_context() {return thread_local_top_.save_context_; }
542 thread_local_top_.save_context_ = save;
546 ThreadId thread_id() { return thread_local_top_.thread_id_; }
547 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; }
552 return thread_local_top_.pending_exception_;
555 return thread_local_top_.external_caught_exception_;
558 thread_local_top_.external_caught_exception_ = value;
561 thread_local_top_.pending_exception_ = exception;
564 thread_local_top_.pending_exception_ = heap_.the_hole_value();
567 return &thread_local_top_.pending_exception_;
570 return !thread_local_top_.pending_exception_->IsTheHole();
573 thread_local_top_.has_pending_message_ = false;
574 thread_local_top_.pending_message_obj_ = heap_.the_hole_value();
575 thread_local_top_.pending_message_script_ = NULL;
578 return thread_local_top_.TryCatchHandler();
581 return thread_local_top_.try_catch_handler_address();
584 return &thread_local_top_.external_caught_exception_;
587 return thread_local_top_.catcher_;
590 thread_local_top_.catcher_ = catcher;
594 return &thread_local_top_.scheduled_exception_;
598 return thread_local_top_.scheduled_exception_;
601 return !thread_local_top_.scheduled_exception_->IsTheHole();
604 thread_local_top_.scheduled_exception_ = heap_.the_hole_value();
621 return &thread_local_top_.c_entry_fp_;
623 inline Address* handler_address() { return &thread_local_top_.handler_; }
631 return &thread_local_top_.js_entry_sp_;
636 void* formal_count_address() { return &thread_local_top_.formal_count_; }
650 return Handle<JSBuiltinsObject>(thread_local_top_.context_->builtins());
654 void FreeThreadResources() { thread_local_top_.Free(); }
692 return thread_local_top_.ignore_out_of_memory_;
695 thread_local_top_.ignore_out_of_memory_ = value;
825 ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
994 return thread_local_top_.external_callback_;
997 thread_local_top_.external_callback_ = callback;
1003 return thread_local_top_.current_vm_state_;
1008 StateTag current_state = thread_local_top_.current_vm_state_;
1023 thread_local_top_.current_vm_state_ = state;
1155 ThreadLocalTop thread_local_top_;