HomeSort by relevance Sort by last modified time
    Searched full:thread_local_ (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
regexp-stack.cc 58 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_.memory_size_ > 0)
    [all...]
execution.cc 54 thread_local_.jslimit_ = kInterruptLimit;
55 thread_local_.climit_ = kInterruptLimit;
62 thread_local_.jslimit_ = thread_local_.real_jslimit_;
63 thread_local_.climit_ = thread_local_.real_climit_;
258 return (thread_local_.jslimit_ != kInterruptLimit &&
259 thread_local_.climit_ != kInterruptLimit);
276 if (thread_local_.jslimit_ == thread_local_.real_jslimit_)
    [all...]
regexp-stack.h 67 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
execution.h 194 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
debug.cc 565 thread_local_.break_count_ = 0;
566 thread_local_.break_id_ = 0;
567 thread_local_.break_frame_id_ = StackFrame::NO_ID;
568 thread_local_.last_step_action_ = StepNone;
569 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
570 thread_local_.step_count_ = 0;
571 thread_local_.last_fp_ = 0;
572 thread_local_.step_into_fp_ = 0;
573 thread_local_.step_out_fp_ = 0;
574 thread_local_.after_break_target_ = 0
    [all...]
debug.h 227 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_.debugger_entry_ = entry
534 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
isolate.h     [all...]
  /external/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...

Completed in 225 milliseconds