Searched refs:thread_local_ (Results 1 – 7 of 7) sorted by relevance
58 size_t size = sizeof(thread_local_); in ArchiveStack()60 &thread_local_, in ArchiveStack()62 thread_local_ = ThreadLocal(); in ArchiveStack()68 size_t size = sizeof(thread_local_); in RestoreStack()69 memcpy(&thread_local_, reinterpret_cast<void*>(from), size); in RestoreStack()75 if (thread_local_.memory_size_ > kMinimumStackSize) { in Reset()76 DeleteArray(thread_local_.memory_); in Reset()77 thread_local_ = ThreadLocal(); in Reset()93 if (thread_local_.memory_size_ < size) { in EnsureCapacity()95 if (thread_local_.memory_size_ > 0) { in EnsureCapacity()[all …]
67 ASSERT(thread_local_.memory_size_ != 0); in stack_base()68 return thread_local_.memory_ + thread_local_.memory_size_; in stack_base()72 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity()79 Address* limit_address() { return &(thread_local_.limit_); } in limit_address()91 void FreeThreadResources() { thread_local_.Free(); } in FreeThreadResources()123 return reinterpret_cast<Address>(&thread_local_.memory_); in memory_address()128 return reinterpret_cast<Address>(&thread_local_.memory_size_); in memory_size_address()136 ThreadLocal thread_local_; variable
55 thread_local_.jslimit_ = kInterruptLimit; in set_interrupt_limits()56 thread_local_.climit_ = kInterruptLimit; in set_interrupt_limits()63 thread_local_.jslimit_ = thread_local_.real_jslimit_; in reset_limits()64 thread_local_.climit_ = thread_local_.real_climit_; in reset_limits()344 return (thread_local_.jslimit_ != kInterruptLimit && in IsStackOverflow()345 thread_local_.climit_ != kInterruptLimit); in IsStackOverflow()362 if (thread_local_.jslimit_ == thread_local_.real_jslimit_) { in SetStackLimit()363 thread_local_.jslimit_ = jslimit; in SetStackLimit()365 if (thread_local_.climit_ == thread_local_.real_climit_) { in SetStackLimit()366 thread_local_.climit_ = limit; in SetStackLimit()[all …]
212 return thread_local_.climit_; in climit()215 return thread_local_.real_climit_; in real_climit()218 return thread_local_.jslimit_; in jslimit()221 return thread_local_.real_jslimit_; in real_jslimit()224 return reinterpret_cast<Address>(&thread_local_.jslimit_); in address_of_jslimit()227 return reinterpret_cast<Address>(&thread_local_.real_jslimit_); in address_of_real_jslimit()239 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()244 return thread_local_.postpone_interrupts_nesting_ > 0; in should_postpone_interrupts()298 ThreadLocal thread_local_; variable
530 thread_local_.break_count_ = 0; in ThreadInit()531 thread_local_.break_id_ = 0; in ThreadInit()532 thread_local_.break_frame_id_ = StackFrame::NO_ID; in ThreadInit()533 thread_local_.last_step_action_ = StepNone; in ThreadInit()534 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ThreadInit()535 thread_local_.step_count_ = 0; in ThreadInit()536 thread_local_.last_fp_ = 0; in ThreadInit()537 thread_local_.queued_step_count_ = 0; in ThreadInit()538 thread_local_.step_into_fp_ = 0; in ThreadInit()539 thread_local_.step_out_fp_ = 0; in ThreadInit()[all …]
231 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; } in InDebugger()290 return thread_local_.break_frame_id_; in break_frame_id()292 int break_id() { return thread_local_.break_id_; } in break_id()294 bool StepInActive() { return thread_local_.step_into_fp_ != 0; } in StepInActive()299 Address step_in_fp() { return thread_local_.step_into_fp_; } in step_in_fp()300 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; } in step_in_fp_addr()302 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; } in StepOutActive()303 Address step_out_fp() { return thread_local_.step_out_fp_; } in step_out_fp()306 return thread_local_.debugger_entry_; in debugger_entry()309 thread_local_.debugger_entry_ = entry; in set_debugger_entry()[all …]
1378 stack_guard_->thread_local_.postpone_interrupts_nesting_++; in PostponeInterruptsScope()1383 if (--stack_guard_->thread_local_.postpone_interrupts_nesting_ == 0) { in ~PostponeInterruptsScope()