HomeSort by relevance Sort by last modified time
    Searched refs:thread_local_top_ (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
isolate-inl.h 26 thread_local_top_.context_ = context;
39 DCHECK(!thread_local_top_.pending_exception_->IsException(this));
40 return thread_local_top_.pending_exception_;
46 thread_local_top_.pending_exception_ = exception_obj;
51 DCHECK(!thread_local_top_.pending_exception_->IsException(this));
52 thread_local_top_.pending_exception_ = ReadOnlyRoots(this).the_hole_value();
57 DCHECK(!thread_local_top_.pending_exception_->IsException(this));
58 return !thread_local_top_.pending_exception_->IsTheHole(this);
62 return thread_local_top_.wasm_caught_exception_;
66 thread_local_top_.wasm_caught_exception_ = exception
    [all...]
isolate.h 559 inline void set_##name(type v) { thread_local_top_.name##_ = v; } \
560 inline type name() const { return thread_local_top_.name##_; }
563 type* name##_address() { return &thread_local_top_.name##_; }
705 Context* context() { return thread_local_top_.context_; }
707 Context** context_address() { return &thread_local_top_.context_; }
739 return thread_local_top_.try_catch_handler();
742 return &thread_local_top_.external_caught_exception_;
749 return reinterpret_cast<Address>(&thread_local_top_.pending_message_obj_);
767 Address c_function() { return thread_local_top_.c_function_; }
770 return &thread_local_top_.c_entry_fp_
1683 ThreadLocalTop thread_local_top_; member in class:v8::internal::Isolate
    [all...]
isolate.cc     [all...]

Completed in 47 milliseconds