Home | History | Annotate | Download | only in src

Lines Matching refs:thread_local_top_

518   Context* context() { return thread_local_top_.context_; }
521 thread_local_top_.context_ = context;
523 Context** context_address() { return &thread_local_top_.context_; }
525 SaveContext* save_context() {return thread_local_top_.save_context_; }
527 thread_local_top_.save_context_ = save;
531 ThreadId thread_id() { return thread_local_top_.thread_id_; }
532 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; }
537 return thread_local_top_.pending_exception_;
540 return thread_local_top_.external_caught_exception_;
543 thread_local_top_.external_caught_exception_ = value;
546 thread_local_top_.pending_exception_ = exception;
549 thread_local_top_.pending_exception_ = heap_.the_hole_value();
552 return &thread_local_top_.pending_exception_;
555 return !thread_local_top_.pending_exception_->IsTheHole();
558 thread_local_top_.has_pending_message_ = false;
559 thread_local_top_.pending_message_obj_ = heap_.the_hole_value();
560 thread_local_top_.pending_message_script_ = NULL;
563 return thread_local_top_.TryCatchHandler();
566 return thread_local_top_.try_catch_handler_address();
569 return &thread_local_top_.external_caught_exception_;
572 return thread_local_top_.catcher_;
575 thread_local_top_.catcher_ = catcher;
579 return &thread_local_top_.scheduled_exception_;
583 return thread_local_top_.scheduled_exception_;
586 return thread_local_top_.scheduled_exception_ != heap_.the_hole_value();
589 thread_local_top_.scheduled_exception_ = heap_.the_hole_value();
606 return &thread_local_top_.c_entry_fp_;
608 inline Address* handler_address() { return &thread_local_top_.handler_; }
615 return &thread_local_top_.js_entry_sp_;
619 void* formal_count_address() { return &thread_local_top_.formal_count_; }
633 return Handle<JSBuiltinsObject>(thread_local_top_.context_->builtins());
637 void FreeThreadResources() { thread_local_top_.Free(); }
675 return thread_local_top_.ignore_out_of_memory_;
678 thread_local_top_.ignore_out_of_memory_ = value;
810 ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
971 return thread_local_top_.external_callback_;
974 thread_local_top_.external_callback_ = callback;
978 return thread_local_top_.current_vm_state_;
984 ASSERT(thread_local_top_.isolate_ == this);
985 StateTag current_state = thread_local_top_.current_vm_state_;
1000 thread_local_top_.current_vm_state_ = state;
1007 return thread_local_top_.top_lookup_result_;
1010 thread_local_top_.top_lookup_result_ = top;
1170 ThreadLocalTop thread_local_top_;