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

  /external/chromium_org/v8/src/
regexp-stack.cc 31 thread_local_.Free();
36 size_t size = sizeof(thread_local_);
37 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
38 thread_local_ = ThreadLocal();
44 size_t size = sizeof(thread_local_);
45 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
51 if (thread_local_.memory_size_ > kMinimumStackSize) {
52 DeleteArray(thread_local_.memory_);
53 thread_local_ = ThreadLocal();
69 if (thread_local_.memory_size_ < size)
    [all...]
regexp-stack.h 44 DCHECK(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
execution.cc 23 thread_local_.jslimit_ = kInterruptLimit;
24 thread_local_.climit_ = kInterruptLimit;
31 thread_local_.jslimit_ = thread_local_.real_jslimit_;
32 thread_local_.climit_ = thread_local_.real_climit_;
317 if (thread_local_.jslimit_ == thread_local_.real_jslimit_) {
318 thread_local_.jslimit_ = jslimit;
320 if (thread_local_.climit_ == thread_local_.real_climit_)
    [all...]
execution.h 179 return thread_local_.climit_;
182 return thread_local_.real_climit_;
185 return thread_local_.jslimit_;
188 return thread_local_.real_jslimit_;
191 return reinterpret_cast<Address>(&thread_local_.jslimit_);
194 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
211 return thread_local_.interrupt_flags_ != 0;
267 ThreadLocal thread_local_; member in class:v8::internal::FINAL
debug.h 399 bool IsStepping() { return thread_local_.step_count_ > 0; }
402 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
407 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
458 DebugScope* debugger_entry() { return thread_local_.current_debug_scope_; }
469 return thread_local_.current_debug_scope_ != NULL;
473 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
474 int break_id() { return thread_local_.break_id_; }
486 Object*** address = &thread_local_.restarter_frame_function_pointer_;
491 return reinterpret_cast<Address>(&thread_local_.step_into_fp_);
500 thread_local_.break_id_ = ++thread_local_.break_count_
642 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
debug.cc 555 thread_local_.break_count_ = 0;
556 thread_local_.break_id_ = 0;
557 thread_local_.break_frame_id_ = StackFrame::NO_ID;
558 thread_local_.last_step_action_ = StepNone;
559 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
560 thread_local_.step_count_ = 0;
561 thread_local_.last_fp_ = 0;
562 thread_local_.queued_step_count_ = 0;
563 thread_local_.step_into_fp_ = 0;
564 thread_local_.step_out_fp_ = 0
    [all...]
liveedit.cc 809 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED;
816 switch (debug->thread_local_.frame_drop_mode_) {
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...

Completed in 93 milliseconds