HomeSort by relevance Sort by last modified time
    Searched defs:thread_local_ (Results 1 - 4 of 4) 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.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...]

Completed in 48 milliseconds