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 27 thread_local_.Free();
32 size_t size = sizeof(thread_local_);
33 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
34 thread_local_ = ThreadLocal();
40 size_t size = sizeof(thread_local_);
41 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
47 if (thread_local_.memory_size_ > kMinimumStackSize) {
48 DeleteArray(thread_local_.memory_);
49 thread_local_ = ThreadLocal();
65 if (thread_local_.memory_size_ < size)
    [all...]
regexp-stack.h 48 DCHECK_NE(0, thread_local_.memory_size_);
49 return reinterpret_cast<Address>(thread_local_.memory_) +
50 thread_local_.memory_size_;
54 size_t stack_capacity() { return thread_local_.memory_size_; }
61 Address* limit_address() { return &(thread_local_.limit_); }
73 void FreeThreadResources() { thread_local_.Free(); }
106 return reinterpret_cast<Address>(&thread_local_.memory_);
111 return reinterpret_cast<Address>(&thread_local_.memory_size_);
119 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_);
281 if (thread_local_.jslimit() == thread_local_.real_jslimit_) {
282 thread_local_.set_jslimit(jslimit);
284 if (thread_local_.climit() == thread_local_.real_climit_)
    [all...]
execution.h 116 uintptr_t climit() { return thread_local_.climit(); }
117 uintptr_t jslimit() { return thread_local_.jslimit(); }
122 return thread_local_.real_climit_;
125 return thread_local_.real_jslimit_;
128 return reinterpret_cast<Address>(&thread_local_.jslimit_);
131 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.cc 336 thread_local_.break_frame_id_ = StackFrame::NO_ID;
337 thread_local_.last_step_action_ = StepNone;
338 thread_local_.last_statement_position_ = kNoSourcePosition;
339 thread_local_.last_frame_count_ = -1;
340 thread_local_.fast_forward_to_return_ = false;
341 thread_local_.ignore_step_into_function_ = Smi::kZero;
342 thread_local_.target_frame_count_ = -1;
343 thread_local_.return_value_ = Smi::kZero;
344 thread_local_.last_breakpoint_id_ = 0;
346 thread_local_.restart_fp_ = kNullAddress
    [all...]
debug.h 336 return !!base::Relaxed_Load(&thread_local_.current_debug_scope_);
345 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
348 Object* return_value() { return thread_local_.return_value_; }
349 void set_return_value(Object* value) { thread_local_.return_value_ = value; }
361 return reinterpret_cast<Address>(&thread_local_.suspended_generator_);
365 return reinterpret_cast<Address>(&thread_local_.restart_fp_);
368 StepAction last_step_action() { return thread_local_.last_step_action_; }
370 return thread_local_.break_on_next_function_call_;
400 thread_local_.suspended_generator_ = Smi::kZero;
404 return thread_local_.suspended_generator_ != Smi::kZero
536 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
liveedit.cc     [all...]

Completed in 267 milliseconds