• Home
  • Raw
  • Download

Lines Matching refs:thread_local_

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()
540 thread_local_.after_break_target_ = 0; in ThreadInit()
542 thread_local_.debugger_entry_ = NULL; in ThreadInit()
543 thread_local_.pending_interrupts_ = 0; in ThreadInit()
544 thread_local_.restarter_frame_function_pointer_ = NULL; in ThreadInit()
550 memcpy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal)); in ArchiveDebug()
561 memcpy(reinterpret_cast<char*>(&thread_local_), from, sizeof(ThreadLocal)); in RestoreDebug()
900 thread_local_.frame_drop_mode_ = FRAMES_UNTOUCHED; in Break()
934 if (thread_local_.step_count_ > 0) { in Break()
935 thread_local_.step_count_--; in Break()
953 ASSERT(thread_local_.step_count_ == 0); in Break()
955 (thread_local_.last_step_action_ != StepNone && in Break()
956 thread_local_.step_count_ == 0)) { in Break()
963 if (thread_local_.queued_step_count_ > 0) { in Break()
965 int step_count = thread_local_.queued_step_count_; in Break()
968 thread_local_.queued_step_count_ = 0; in Break()
975 } else if (thread_local_.last_step_action_ != StepNone) { in Break()
978 StepAction step_action = thread_local_.last_step_action_; in Break()
979 int step_count = thread_local_.step_count_; in Break()
983 if (step_action == StepNext && frame->fp() < thread_local_.last_fp_) { in Break()
987 while (!it.done() && it.frame()->fp() != thread_local_.last_fp_) { in Break()
993 if (it.frame()->fp() == thread_local_.last_fp_) { in Break()
997 thread_local_.queued_step_count_ = step_count - 1; in Break()
1013 if (thread_local_.frame_drop_mode_ == FRAMES_UNTOUCHED) { in Break()
1015 } else if (thread_local_.frame_drop_mode_ == in Break()
1020 thread_local_.after_break_target_ = plain_return->entry(); in Break()
1021 } else if (thread_local_.frame_drop_mode_ == in Break()
1027 thread_local_.after_break_target_ = plain_return->entry(); in Break()
1028 } else if (thread_local_.frame_drop_mode_ == in Break()
1031 } else if (thread_local_.frame_drop_mode_ == in Break()
1035 thread_local_.after_break_target_ = plain_return->entry(); in Break()
1295 thread_local_.last_step_action_ = step_action; in PrepareStep()
1299 thread_local_.step_count_ = 0; in PrepareStep()
1301 thread_local_.step_count_ = step_count; in PrepareStep()
1352 if (thread_local_.restarter_frame_function_pointer_ == NULL) { in PrepareStep()
1419 thread_local_.last_statement_position_ = in PrepareStep()
1421 thread_local_.last_fp_ = frame->fp(); in PrepareStep()
1427 JSFunction::cast(*thread_local_.restarter_frame_function_pointer_)); in PrepareStep()
1488 thread_local_.last_statement_position_ = in PrepareStep()
1490 thread_local_.last_fp_ = frame->fp(); in PrepareStep()
1510 if (thread_local_.last_step_action_ == StepNext || in StepNextContinue()
1511 thread_local_.last_step_action_ == StepOut) { in StepNextContinue()
1512 if (frame->fp() < thread_local_.last_fp_) return true; in StepNextContinue()
1517 if (thread_local_.last_step_action_ == StepNext || in StepNextContinue()
1518 thread_local_.last_step_action_ == StepIn) { in StepNextContinue()
1525 return thread_local_.last_fp_ == frame->fp() && in StepNextContinue()
1526 thread_local_.last_statement_position_ == current_statement_position; in StepNextContinue()
1635 thread_local_.break_frame_id_ = break_frame_id; in NewBreak()
1636 thread_local_.break_id_ = ++thread_local_.break_count_; in NewBreak()
1641 thread_local_.break_frame_id_ = break_frame_id; in SetBreak()
1642 thread_local_.break_id_ = break_id; in SetBreak()
1701 thread_local_.step_count_ = 0; in ClearStepping()
1726 thread_local_.step_into_fp_ = frame->fp(); in ActivateStepIn()
1731 thread_local_.step_into_fp_ = 0; in ClearStepIn()
1737 thread_local_.step_out_fp_ = frame->fp(); in ActivateStepOut()
1742 thread_local_.step_out_fp_ = 0; in ClearStepOut()
1747 thread_local_.last_step_action_ = StepNone; in ClearStepNext()
1748 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ClearStepNext()
1749 thread_local_.last_fp_ = 0; in ClearStepNext()
2154 thread_local_.after_break_target_ = in SetAfterBreakTarget()
2161 thread_local_.after_break_target_ = addr + Assembler::kDebugBreakSlotLength; in SetAfterBreakTarget()
2173 thread_local_.after_break_target_ = Assembler::target_address_at(addr); in SetAfterBreakTarget()
2179 thread_local_.after_break_target_ = Assembler::target_address_at(addr); in SetAfterBreakTarget()
2230 thread_local_.frame_drop_mode_ = mode; in FramesHaveBeenDropped()
2231 thread_local_.break_frame_id_ = new_break_frame_id; in FramesHaveBeenDropped()
2232 thread_local_.restarter_frame_function_pointer_ = in FramesHaveBeenDropped()