Home | History | Annotate | Download | only in src

Lines Matching refs:thread_local_

148   static Context* context() { return thread_local_.context_; }
150 thread_local_.context_ = context;
152 static Context** context_address() { return &thread_local_.context_; }
154 static SaveContext* save_context() {return thread_local_.save_context_; }
156 thread_local_.save_context_ = save;
160 static int thread_id() { return thread_local_.thread_id_; }
161 static void set_thread_id(int id) { thread_local_.thread_id_ = id; }
166 return thread_local_.pending_exception_;
169 return thread_local_.external_caught_exception_;
172 thread_local_.pending_exception_ = exception;
175 thread_local_.pending_exception_ = Heap::the_hole_value();
179 return &thread_local_.pending_exception_;
182 return !thread_local_.pending_exception_->IsTheHole();
185 thread_local_.has_pending_message_ = false;
186 thread_local_.pending_message_ = NULL;
187 thread_local_.pending_message_obj_ = Heap::the_hole_value();
188 thread_local_.pending_message_script_ = NULL;
191 return thread_local_.TryCatchHandler();
194 return thread_local_.try_catch_handler_address();
204 return &thread_local_.external_caught_exception_;
208 return &thread_local_.scheduled_exception_;
213 return thread_local_.scheduled_exception_;
216 return !thread_local_.scheduled_exception_->IsTheHole();
219 thread_local_.scheduled_exception_ = Heap::the_hole_value();
223 thread_local_.external_caught_exception_ =
225 (thread_local_.catcher_ != NULL) &&
226 (try_catch_handler() == thread_local_.catcher_);
240 return &thread_local_.c_entry_fp_;
242 static inline Address* handler_address() { return &thread_local_.handler_; }
250 return &thread_local_.js_entry_sp_;
255 static void* formal_count_address() { return &thread_local_.formal_count_; }
342 return Handle<JSBuiltinsObject>(thread_local_.context_->builtins());
360 static inline ThreadLocalTop* GetCurrentThread() { return &thread_local_; }
364 static void FreeThreadResources() { thread_local_.Free(); }
370 static ThreadLocalTop thread_local_;