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

  /external/v8/src/regexp/
regexp-stack.cc 31 thread_local_.Free();
36 size_t size = sizeof(thread_local_);
37 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
38 thread_local_ = ThreadLocal();
44 size_t size = sizeof(thread_local_);
45 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
51 if (thread_local_.memory_size_ > kMinimumStackSize) {
52 DeleteArray(thread_local_.memory_);
53 thread_local_ = ThreadLocal();
69 if (thread_local_.memory_size_ < size)
    [all...]
regexp-stack.h 48 DCHECK(thread_local_.memory_size_ != 0);
49 return thread_local_.memory_ + thread_local_.memory_size_;
53 size_t stack_capacity() { return thread_local_.memory_size_; }
60 Address* limit_address() { return &(thread_local_.limit_); }
72 void FreeThreadResources() { thread_local_.Free(); }
104 return reinterpret_cast<Address>(&thread_local_.memory_);
109 return reinterpret_cast<Address>(&thread_local_.memory_size_);
117 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
  /external/v8/src/
execution.cc 23 thread_local_.set_jslimit(kInterruptLimit);
24 thread_local_.set_climit(kInterruptLimit);
31 thread_local_.set_jslimit(thread_local_.real_jslimit_);
32 thread_local_.set_climit(thread_local_.real_climit_);
225 if (thread_local_.jslimit() == thread_local_.real_jslimit_) {
226 thread_local_.set_jslimit(jslimit);
228 if (thread_local_.climit() == thread_local_.real_climit_)
    [all...]
execution.h 115 uintptr_t climit() { return thread_local_.climit(); }
116 uintptr_t jslimit() { return thread_local_.jslimit(); }
121 return thread_local_.real_climit_;
124 return thread_local_.real_jslimit_;
127 return reinterpret_cast<Address>(&thread_local_.jslimit_);
130 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
148 return thread_local_.interrupt_flags_ != 0;
222 ThreadLocal thread_local_; member in class:v8::internal::final
  /external/v8/src/debug/
debug.h 515 base::NoBarrier_Load(&thread_local_.current_debug_scope_));
527 return !!base::NoBarrier_Load(&thread_local_.current_debug_scope_);
532 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
533 int break_id() { return thread_local_.break_id_; }
535 Handle<Object> return_value() { return thread_local_.return_value_; }
537 thread_local_.return_value_ = value;
550 return reinterpret_cast<Address>(&thread_local_.last_step_action_);
554 return reinterpret_cast<Address>(&thread_local_.suspended_generator_);
557 StepAction last_step_action() { return thread_local_.last_step_action_; }
567 thread_local_.break_id_ = ++thread_local_.break_count_
708 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
debug.cc 473 thread_local_.break_count_ = 0;
474 thread_local_.break_id_ = 0;
475 thread_local_.break_frame_id_ = StackFrame::NO_ID;
476 thread_local_.last_step_action_ = StepNone;
477 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
478 thread_local_.last_fp_ = 0;
479 thread_local_.target_fp_ = 0;
480 thread_local_.return_value_ = Handle<Object>();
483 base::NoBarrier_Store(&thread_local_.current_debug_scope_,
504 v->VisitPointer(&thread_local_.suspended_generator_)
    [all...]
liveedit.cc 691 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED;
698 switch (debug->thread_local_.frame_drop_mode_) {
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...

Completed in 113 milliseconds