HomeSort by relevance Sort by last modified time
    Searched refs:thread_local_ (Results 1 - 7 of 7) 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 26 thread_local_.set_jslimit(kInterruptLimit);
27 thread_local_.set_climit(kInterruptLimit);
34 thread_local_.set_jslimit(thread_local_.real_jslimit_);
35 thread_local_.set_climit(thread_local_.real_climit_);
265 if (thread_local_.jslimit() == thread_local_.real_jslimit_) {
266 thread_local_.set_jslimit(jslimit);
268 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 376 base::NoBarrier_Load(&thread_local_.current_debug_scope_));
388 return !!base::NoBarrier_Load(&thread_local_.current_debug_scope_);
393 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
394 int break_id() { return thread_local_.break_id_; }
397 return handle(thread_local_.return_value_, isolate_);
399 Object* return_value() { return thread_local_.return_value_; }
400 void set_return_value(Object* value) { thread_local_.return_value_ = value; }
412 return reinterpret_cast<Address>(&thread_local_.last_step_action_);
416 return reinterpret_cast<Address>(&thread_local_.suspended_generator_);
420 return reinterpret_cast<Address>(&thread_local_.restart_fp_)
580 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
debug.cc 372 thread_local_.break_count_ = 0;
373 thread_local_.break_id_ = 0;
374 thread_local_.break_frame_id_ = StackFrame::NO_ID;
375 thread_local_.last_step_action_ = StepNone;
376 thread_local_.last_statement_position_ = kNoSourcePosition;
377 thread_local_.last_frame_count_ = -1;
378 thread_local_.target_frame_count_ = -1;
379 thread_local_.return_value_ = Smi::kZero;
380 thread_local_.async_task_count_ = 0;
382 thread_local_.restart_fp_ = nullptr
    [all...]
liveedit.cc 658 debug->thread_local_.restart_fp_ = 0;
    [all...]

Completed in 449 milliseconds