Searched defs:thread_local_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
H A Dregexp-stack.cc30 thread_local_.Free();
35 size_t size = sizeof(thread_local_);
36 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
37 thread_local_ = ThreadLocal();
43 size_t size = sizeof(thread_local_);
44 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
50 if (thread_local_.memory_size_ > kMinimumStackSize) {
51 DeleteArray(thread_local_.memory_);
52 thread_local_ = ThreadLocal();
68 if (thread_local_
[all...]
H A Dregexp-stack.h44 ASSERT(thread_local_.memory_size_ != 0);
45 return thread_local_.memory_ + thread_local_.memory_size_;
49 size_t stack_capacity() { return thread_local_.memory_size_; }
56 Address* limit_address() { return &(thread_local_.limit_); }
68 void FreeThreadResources() { thread_local_.Free(); }
100 return reinterpret_cast<Address>(&thread_local_.memory_);
105 return reinterpret_cast<Address>(&thread_local_.memory_size_);
113 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
H A Dexecution.h168 return thread_local_.climit_;
171 return thread_local_.real_climit_;
174 return thread_local_.jslimit_;
177 return thread_local_.real_jslimit_;
180 return reinterpret_cast<Address>(&thread_local_.jslimit_);
183 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
211 return thread_local_.interrupt_flags_ != 0;
216 return thread_local_.postpone_interrupts_nesting_ > 0;
275 ThreadLocal thread_local_; member in class:v8::internal::V8_FINAL
H A Ddebug.h423 bool IsStepping() { return thread_local_.step_count_ > 0; }
426 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
431 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
489 DebugScope* debugger_entry() { return thread_local_.current_debug_scope_; }
500 return thread_local_.current_debug_scope_ != NULL;
504 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
505 int break_id() { return thread_local_.break_id_; }
513 Object*** address = &thread_local_.restarter_frame_function_pointer_;
518 return reinterpret_cast<Address>(&thread_local_.step_into_fp_);
527 thread_local_
670 ThreadLocal thread_local_; member in class:v8::internal::Debug
[all...]

Completed in 610 milliseconds