Home
last modified time | relevance | path

Searched refs:thread_local_ (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/regexp/
Dregexp-stack.cc31 thread_local_.Free(); in ~RegExpStack()
36 size_t size = sizeof(thread_local_); in ArchiveStack()
37 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); in ArchiveStack()
38 thread_local_ = ThreadLocal(); in ArchiveStack()
44 size_t size = sizeof(thread_local_); in RestoreStack()
45 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size); in RestoreStack()
51 if (thread_local_.memory_size_ > kMinimumStackSize) { in Reset()
52 DeleteArray(thread_local_.memory_); in Reset()
53 thread_local_ = ThreadLocal(); in Reset()
69 if (thread_local_.memory_size_ < size) { in EnsureCapacity()
[all …]
Dregexp-stack.h48 DCHECK(thread_local_.memory_size_ != 0); in stack_base()
49 return thread_local_.memory_ + thread_local_.memory_size_; in stack_base()
53 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity()
60 Address* limit_address() { return &(thread_local_.limit_); } in limit_address()
72 void FreeThreadResources() { thread_local_.Free(); } in FreeThreadResources()
104 return reinterpret_cast<Address>(&thread_local_.memory_); in memory_address()
109 return reinterpret_cast<Address>(&thread_local_.memory_size_); in memory_size_address()
117 ThreadLocal thread_local_; variable
/external/v8/src/
Dexecution.cc23 thread_local_.set_jslimit(kInterruptLimit); in set_interrupt_limits()
24 thread_local_.set_climit(kInterruptLimit); in set_interrupt_limits()
31 thread_local_.set_jslimit(thread_local_.real_jslimit_); in reset_limits()
32 thread_local_.set_climit(thread_local_.real_climit_); in reset_limits()
233 if (thread_local_.jslimit() == thread_local_.real_jslimit_) { in SetStackLimit()
234 thread_local_.set_jslimit(jslimit); in SetStackLimit()
236 if (thread_local_.climit() == thread_local_.real_climit_) { in SetStackLimit()
237 thread_local_.set_climit(limit); in SetStackLimit()
239 thread_local_.real_climit_ = limit; in SetStackLimit()
240 thread_local_.real_jslimit_ = jslimit; in SetStackLimit()
[all …]
Dexecution.h119 uintptr_t climit() { return thread_local_.climit(); } in climit()
120 uintptr_t jslimit() { return thread_local_.jslimit(); } in jslimit()
125 return thread_local_.real_climit_; in real_climit()
128 return thread_local_.real_jslimit_; in real_jslimit()
131 return reinterpret_cast<Address>(&thread_local_.jslimit_); in address_of_jslimit()
134 return reinterpret_cast<Address>(&thread_local_.real_jslimit_); in address_of_real_jslimit()
152 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
226 ThreadLocal thread_local_; variable
/external/v8/src/debug/
Ddebug.cc325 thread_local_.break_count_ = 0; in ThreadInit()
326 thread_local_.break_id_ = 0; in ThreadInit()
327 thread_local_.break_frame_id_ = StackFrame::NO_ID; in ThreadInit()
328 thread_local_.last_step_action_ = StepNone; in ThreadInit()
329 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ThreadInit()
330 thread_local_.last_fp_ = 0; in ThreadInit()
331 thread_local_.target_fp_ = 0; in ThreadInit()
332 thread_local_.step_in_enabled_ = false; in ThreadInit()
334 base::NoBarrier_Store(&thread_local_.current_debug_scope_, in ThreadInit()
341 MemCopy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal)); in ArchiveDebug()
[all …]
Ddebug.h465 base::NoBarrier_Load(&thread_local_.current_debug_scope_)); in debugger_entry()
477 return !!base::NoBarrier_Load(&thread_local_.current_debug_scope_); in in_debug_scope()
482 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; } in break_frame_id()
483 int break_id() { return thread_local_.break_id_; } in break_id()
495 return reinterpret_cast<Address>(&thread_local_.step_in_enabled_); in step_in_enabled_address()
498 StepAction last_step_action() { return thread_local_.last_step_action_; } in last_step_action()
508 thread_local_.break_id_ = ++thread_local_.break_count_; in SetNextBreakId()
638 ThreadLocal thread_local_; variable
Dliveedit.cc804 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED; in InitializeThreadLocal()
811 switch (debug->thread_local_.frame_drop_mode_) { in SetAfterBreakTarget()