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_);
233 if (thread_local_.jslimit() == thread_local_.real_jslimit_) {
234 thread_local_.set_jslimit(jslimit);
236 if (thread_local_.climit() == thread_local_.real_climit_)
    [all...]
execution.h 119 uintptr_t climit() { return thread_local_.climit(); }
120 uintptr_t jslimit() { return thread_local_.jslimit(); }
125 return thread_local_.real_climit_;
128 return thread_local_.real_jslimit_;
131 return reinterpret_cast<Address>(&thread_local_.jslimit_);
134 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
152 return thread_local_.interrupt_flags_ != 0;
226 ThreadLocal thread_local_; member in class:v8::internal::final
  /external/v8/src/debug/
debug.cc 325 thread_local_.break_count_ = 0;
326 thread_local_.break_id_ = 0;
327 thread_local_.break_frame_id_ = StackFrame::NO_ID;
328 thread_local_.last_step_action_ = StepNone;
329 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
330 thread_local_.last_fp_ = 0;
331 thread_local_.target_fp_ = 0;
332 thread_local_.step_in_enabled_ = false;
334 base::NoBarrier_Store(&thread_local_.current_debug_scope_,
341 MemCopy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal))
    [all...]
debug.h 465 base::NoBarrier_Load(&thread_local_.current_debug_scope_));
477 return !!base::NoBarrier_Load(&thread_local_.current_debug_scope_);
482 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
483 int break_id() { return thread_local_.break_id_; }
495 return reinterpret_cast<Address>(&thread_local_.step_in_enabled_);
498 StepAction last_step_action() { return thread_local_.last_step_action_; }
508 thread_local_.break_id_ = ++thread_local_.break_count_;
638 ThreadLocal thread_local_; member in class:v8::internal::Debug
liveedit.cc 804 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED;
811 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 80 milliseconds