Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-stack.cc27 thread_local_.Free(); in ~RegExpStack()
32 size_t size = sizeof(thread_local_); in ArchiveStack()
33 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); in ArchiveStack()
34 thread_local_ = ThreadLocal(); in ArchiveStack()
40 size_t size = sizeof(thread_local_); in RestoreStack()
41 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size); in RestoreStack()
47 if (thread_local_.memory_size_ > kMinimumStackSize) { in Reset()
48 DeleteArray(thread_local_.memory_); in Reset()
49 thread_local_ = ThreadLocal(); in Reset()
65 if (thread_local_.memory_size_ < size) { in EnsureCapacity()
[all …]
Dregexp-stack.h48 DCHECK_NE(0, thread_local_.memory_size_); in stack_base()
49 return reinterpret_cast<Address>(thread_local_.memory_) + in stack_base()
50 thread_local_.memory_size_; in stack_base()
54 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity()
61 Address* limit_address() { return &(thread_local_.limit_); } in limit_address()
73 void FreeThreadResources() { thread_local_.Free(); } in FreeThreadResources()
106 return reinterpret_cast<Address>(&thread_local_.memory_); in memory_address()
111 return reinterpret_cast<Address>(&thread_local_.memory_size_); in memory_size_address()
119 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()
281 if (thread_local_.jslimit() == thread_local_.real_jslimit_) { in SetStackLimit()
282 thread_local_.set_jslimit(jslimit); in SetStackLimit()
284 if (thread_local_.climit() == thread_local_.real_climit_) { in SetStackLimit()
285 thread_local_.set_climit(limit); in SetStackLimit()
287 thread_local_.real_climit_ = limit; in SetStackLimit()
288 thread_local_.real_jslimit_ = jslimit; in SetStackLimit()
[all …]
Dexecution.h116 uintptr_t climit() { return thread_local_.climit(); } in climit()
117 uintptr_t jslimit() { return thread_local_.jslimit(); } in jslimit()
122 return thread_local_.real_climit_; in real_climit()
125 return thread_local_.real_jslimit_; in real_jslimit()
128 return reinterpret_cast<Address>(&thread_local_.jslimit_); in address_of_jslimit()
131 return reinterpret_cast<Address>(&thread_local_.real_jslimit_); in address_of_real_jslimit()
148 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
222 ThreadLocal thread_local_; variable
/external/v8/src/debug/
Ddebug.cc336 thread_local_.break_frame_id_ = StackFrame::NO_ID; in ThreadInit()
337 thread_local_.last_step_action_ = StepNone; in ThreadInit()
338 thread_local_.last_statement_position_ = kNoSourcePosition; in ThreadInit()
339 thread_local_.last_frame_count_ = -1; in ThreadInit()
340 thread_local_.fast_forward_to_return_ = false; in ThreadInit()
341 thread_local_.ignore_step_into_function_ = Smi::kZero; in ThreadInit()
342 thread_local_.target_frame_count_ = -1; in ThreadInit()
343 thread_local_.return_value_ = Smi::kZero; in ThreadInit()
344 thread_local_.last_breakpoint_id_ = 0; in ThreadInit()
346 thread_local_.restart_fp_ = kNullAddress; in ThreadInit()
[all …]
Ddebug.h336 return !!base::Relaxed_Load(&thread_local_.current_debug_scope_); in in_debug_scope()
345 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; } in break_frame_id()
348 Object* return_value() { return thread_local_.return_value_; } in return_value()
349 void set_return_value(Object* value) { thread_local_.return_value_ = value; } in set_return_value()
361 return reinterpret_cast<Address>(&thread_local_.suspended_generator_); in suspended_generator_address()
365 return reinterpret_cast<Address>(&thread_local_.restart_fp_); in restart_fp_address()
368 StepAction last_step_action() { return thread_local_.last_step_action_; } in last_step_action()
370 return thread_local_.break_on_next_function_call_; in break_on_next_function_call()
400 thread_local_.suspended_generator_ = Smi::kZero; in clear_suspended_generator()
404 return thread_local_.suspended_generator_ != Smi::kZero; in has_suspended_generator()
[all …]
Dliveedit.cc1267 debug->thread_local_.restart_fp_ = 0; in InitializeThreadLocal()