Home
last modified time | relevance | path

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

/external/v8/src/
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.h44 DCHECK(thread_local_.memory_size_ != 0); in stack_base()
45 return thread_local_.memory_ + thread_local_.memory_size_; in stack_base()
49 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity()
56 Address* limit_address() { return &(thread_local_.limit_); } in limit_address()
68 void FreeThreadResources() { thread_local_.Free(); } in FreeThreadResources()
100 return reinterpret_cast<Address>(&thread_local_.memory_); in memory_address()
105 return reinterpret_cast<Address>(&thread_local_.memory_size_); in memory_size_address()
113 ThreadLocal thread_local_; variable
Dexecution.cc23 thread_local_.jslimit_ = kInterruptLimit; in set_interrupt_limits()
24 thread_local_.climit_ = kInterruptLimit; in set_interrupt_limits()
31 thread_local_.jslimit_ = thread_local_.real_jslimit_; in reset_limits()
32 thread_local_.climit_ = thread_local_.real_climit_; in reset_limits()
317 if (thread_local_.jslimit_ == thread_local_.real_jslimit_) { in SetStackLimit()
318 thread_local_.jslimit_ = jslimit; in SetStackLimit()
320 if (thread_local_.climit_ == thread_local_.real_climit_) { in SetStackLimit()
321 thread_local_.climit_ = limit; in SetStackLimit()
323 thread_local_.real_climit_ = limit; in SetStackLimit()
324 thread_local_.real_jslimit_ = jslimit; in SetStackLimit()
[all …]
Dexecution.h179 return thread_local_.climit_; in climit()
182 return thread_local_.real_climit_; in real_climit()
185 return thread_local_.jslimit_; in jslimit()
188 return thread_local_.real_jslimit_; in real_jslimit()
191 return reinterpret_cast<Address>(&thread_local_.jslimit_); in address_of_jslimit()
194 return reinterpret_cast<Address>(&thread_local_.real_jslimit_); in address_of_real_jslimit()
211 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
267 ThreadLocal thread_local_; variable
Ddebug.cc555 thread_local_.break_count_ = 0; in ThreadInit()
556 thread_local_.break_id_ = 0; in ThreadInit()
557 thread_local_.break_frame_id_ = StackFrame::NO_ID; in ThreadInit()
558 thread_local_.last_step_action_ = StepNone; in ThreadInit()
559 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ThreadInit()
560 thread_local_.step_count_ = 0; in ThreadInit()
561 thread_local_.last_fp_ = 0; in ThreadInit()
562 thread_local_.queued_step_count_ = 0; in ThreadInit()
563 thread_local_.step_into_fp_ = 0; in ThreadInit()
564 thread_local_.step_out_fp_ = 0; in ThreadInit()
[all …]
Ddebug.h399 bool IsStepping() { return thread_local_.step_count_ > 0; } in IsStepping()
402 bool StepInActive() { return thread_local_.step_into_fp_ != 0; } in StepInActive()
407 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; } in StepOutActive()
458 DebugScope* debugger_entry() { return thread_local_.current_debug_scope_; } in debugger_entry()
469 return thread_local_.current_debug_scope_ != NULL; in in_debug_scope()
473 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; } in break_frame_id()
474 int break_id() { return thread_local_.break_id_; } in break_id()
486 Object*** address = &thread_local_.restarter_frame_function_pointer_; in restarter_frame_function_pointer_address()
491 return reinterpret_cast<Address>(&thread_local_.step_into_fp_); in step_in_fp_addr()
500 thread_local_.break_id_ = ++thread_local_.break_count_; in SetNextBreakId()
[all …]
Dliveedit.cc809 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED; in InitializeThreadLocal()
816 switch (debug->thread_local_.frame_drop_mode_) { in SetAfterBreakTarget()