Home | History | Annotate | Download | only in src

Lines Matching refs:thread_local_

502   thread_local_.break_count_ = 0;
503 thread_local_.break_id_ = 0;
504 thread_local_.break_frame_id_ = StackFrame::NO_ID;
505 thread_local_.last_step_action_ = StepNone;
506 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
507 thread_local_.step_count_ = 0;
508 thread_local_.last_fp_ = 0;
509 thread_local_.step_into_fp_ = 0;
510 thread_local_.step_out_fp_ = 0;
511 thread_local_.after_break_target_ = 0;
512 thread_local_.debugger_entry_ = NULL;
513 thread_local_.pending_interrupts_ = 0;
518 Debug::ThreadLocal Debug::thread_local_;
523 memcpy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal));
534 memcpy(reinterpret_cast<char*>(&thread_local_), from, sizeof(ThreadLocal));
842 if (thread_local_.step_count_ > 0) {
843 thread_local_.step_count_--;
861 ASSERT(thread_local_.step_count_ == 0);
863 (thread_local_.last_step_action_ != StepNone &&
864 thread_local_.step_count_ == 0)) {
873 } else if (thread_local_.last_step_action_ != StepNone) {
876 StepAction step_action = thread_local_.last_step_action_;
877 int step_count = thread_local_.step_count_;
1102 thread_local_.last_step_action_ = step_action;
1106 thread_local_.step_count_ = 0;
1108 thread_local_.step_count_ = step_count;
1220 thread_local_.last_statement_position_ =
1222 thread_local_.last_fp_ = frame->fp();
1276 thread_local_.last_statement_position_ =
1278 thread_local_.last_fp_ = frame->fp();
1298 if (thread_local_.last_step_action_ == StepNext ||
1299 thread_local_.last_step_action_ == StepIn) {
1306 return thread_local_.last_fp_ == frame->fp() &&
1307 thread_local_.last_statement_position_ == current_statement_position;
1408 thread_local_.break_frame_id_ = break_frame_id;
1409 thread_local_.break_id_ = ++thread_local_.break_count_;
1414 thread_local_.break_frame_id_ = break_frame_id;
1415 thread_local_.break_id_ = break_id;
1471 thread_local_.step_count_ = 0;
1496 thread_local_.step_into_fp_ = frame->fp();
1501 thread_local_.step_into_fp_ = 0;
1507 thread_local_.step_out_fp_ = frame->fp();
1512 thread_local_.step_out_fp_ = 0;
1517 thread_local_.last_step_action_ = StepNone;
1518 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
1519 thread_local_.last_fp_ = 0;
1624 thread_local_.after_break_target_ =
1644 thread_local_.after_break_target_ = Assembler::target_address_at(addr);