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

/external/v8/src/
H A Dregexp-stack.cc58 size_t size = sizeof(thread_local_);
60 &thread_local_, local
62 thread_local_ = ThreadLocal();
68 size_t size = sizeof(thread_local_);
69 memcpy(&thread_local_, reinterpret_cast<void*>(from), size);
75 if (thread_local_.memory_size_ > kMinimumStackSize) {
76 DeleteArray(thread_local_.memory_);
77 thread_local_ = ThreadLocal();
93 if (thread_local_.memory_size_ < size) {
95 if (thread_local_
[all...]
H A Dregexp-stack.h67 ASSERT(thread_local_.memory_size_ != 0);
68 return thread_local_.memory_ + thread_local_.memory_size_;
72 size_t stack_capacity() { return thread_local_.memory_size_; }
79 Address* limit_address() { return &(thread_local_.limit_); }
91 void FreeThreadResources() { thread_local_.Free(); }
122 return reinterpret_cast<Address>(&thread_local_.memory_);
127 return reinterpret_cast<Address>(&thread_local_.memory_size_);
135 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
H A Dexecution.h194 return thread_local_.climit_;
197 return thread_local_.real_climit_;
200 return thread_local_.jslimit_;
203 return thread_local_.real_jslimit_;
206 return reinterpret_cast<Address>(&thread_local_.jslimit_);
209 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
220 return thread_local_.interrupt_flags_ != 0;
225 return thread_local_.postpone_interrupts_nesting_ > 0;
279 ThreadLocal thread_local_; member in class:v8::internal::StackGuard
H A Ddebug.h227 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
283 return thread_local_.break_frame_id_;
285 int break_id() { return thread_local_.break_id_; }
287 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
292 Address step_in_fp() { return thread_local_.step_into_fp_; }
293 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
295 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
296 Address step_out_fp() { return thread_local_.step_out_fp_; }
299 return thread_local_.debugger_entry_;
302 thread_local_
534 ThreadLocal thread_local_; member in class:v8::internal::Debug
[all...]

Completed in 104 milliseconds