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

  /external/chromium_org/v8/src/
regexp-stack.cc 54 thread_local_.Free();
59 size_t size = sizeof(thread_local_);
60 OS::MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
61 thread_local_ = ThreadLocal();
67 size_t size = sizeof(thread_local_);
68 OS::MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
74 if (thread_local_.memory_size_ > kMinimumStackSize) {
75 DeleteArray(thread_local_.memory_);
76 thread_local_ = ThreadLocal();
92 if (thread_local_.memory_size_ < size)
    [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(); }
123 return reinterpret_cast<Address>(&thread_local_.memory_);
128 return reinterpret_cast<Address>(&thread_local_.memory_size_);
136 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
execution.cc 56 thread_local_.jslimit_ = kInterruptLimit;
57 thread_local_.climit_ = kInterruptLimit;
64 thread_local_.jslimit_ = thread_local_.real_jslimit_;
65 thread_local_.climit_ = thread_local_.real_climit_;
358 return (thread_local_.jslimit_ != kInterruptLimit &&
359 thread_local_.climit_ != kInterruptLimit);
376 if (thread_local_.jslimit_ == thread_local_.real_jslimit_)
    [all...]
execution.h 210 return thread_local_.climit_;
213 return thread_local_.real_climit_;
216 return thread_local_.jslimit_;
219 return thread_local_.real_jslimit_;
222 return reinterpret_cast<Address>(&thread_local_.jslimit_);
225 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
237 return thread_local_.interrupt_flags_ != 0;
242 return thread_local_.postpone_interrupts_nesting_ > 0;
296 ThreadLocal thread_local_; member in class:v8::internal::StackGuard
debug.cc 564 thread_local_.break_count_ = 0;
565 thread_local_.break_id_ = 0;
566 thread_local_.break_frame_id_ = StackFrame::NO_ID;
567 thread_local_.last_step_action_ = StepNone;
568 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
569 thread_local_.step_count_ = 0;
570 thread_local_.last_fp_ = 0;
571 thread_local_.queued_step_count_ = 0;
572 thread_local_.step_into_fp_ = 0;
573 thread_local_.step_out_fp_ = 0
    [all...]
debug.h 243 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
265 bool IsStepping() { return thread_local_.step_count_ > 0; }
315 return thread_local_.break_frame_id_;
317 int break_id() { return thread_local_.break_id_; }
319 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
324 Address step_in_fp() { return thread_local_.step_into_fp_; }
325 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
327 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
328 Address step_out_fp() { return thread_local_.step_out_fp_; }
331 return thread_local_.debugger_entry_
619 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
isolate.h     [all...]
  /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...]
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(); }
123 return reinterpret_cast<Address>(&thread_local_.memory_);
128 return reinterpret_cast<Address>(&thread_local_.memory_size_);
136 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
execution.cc 55 thread_local_.jslimit_ = kInterruptLimit;
56 thread_local_.climit_ = kInterruptLimit;
63 thread_local_.jslimit_ = thread_local_.real_jslimit_;
64 thread_local_.climit_ = thread_local_.real_climit_;
344 return (thread_local_.jslimit_ != kInterruptLimit &&
345 thread_local_.climit_ != kInterruptLimit);
362 if (thread_local_.jslimit_ == thread_local_.real_jslimit_)
    [all...]
execution.h 212 return thread_local_.climit_;
215 return thread_local_.real_climit_;
218 return thread_local_.jslimit_;
221 return thread_local_.real_jslimit_;
224 return reinterpret_cast<Address>(&thread_local_.jslimit_);
227 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
239 return thread_local_.interrupt_flags_ != 0;
244 return thread_local_.postpone_interrupts_nesting_ > 0;
298 ThreadLocal thread_local_; member in class:v8::internal::StackGuard
debug.h 231 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
290 return thread_local_.break_frame_id_;
292 int break_id() { return thread_local_.break_id_; }
294 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
299 Address step_in_fp() { return thread_local_.step_into_fp_; }
300 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
302 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
303 Address step_out_fp() { return thread_local_.step_out_fp_; }
306 return thread_local_.debugger_entry_;
309 thread_local_.debugger_entry_ = entry
547 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
debug.cc 530 thread_local_.break_count_ = 0;
531 thread_local_.break_id_ = 0;
532 thread_local_.break_frame_id_ = StackFrame::NO_ID;
533 thread_local_.last_step_action_ = StepNone;
534 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
535 thread_local_.step_count_ = 0;
536 thread_local_.last_fp_ = 0;
537 thread_local_.queued_step_count_ = 0;
538 thread_local_.step_into_fp_ = 0;
539 thread_local_.step_out_fp_ = 0
    [all...]
isolate.h     [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...
  /external/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...

Completed in 791 milliseconds