Home | History | Annotate | Download | only in debug

Lines Matching refs:thread_local_

336   thread_local_.break_frame_id_ = StackFrame::NO_ID;
337 thread_local_.last_step_action_ = StepNone;
338 thread_local_.last_statement_position_ = kNoSourcePosition;
339 thread_local_.last_frame_count_ = -1;
340 thread_local_.fast_forward_to_return_ = false;
341 thread_local_.ignore_step_into_function_ = Smi::kZero;
342 thread_local_.target_frame_count_ = -1;
343 thread_local_.return_value_ = Smi::kZero;
344 thread_local_.last_breakpoint_id_ = 0;
346 thread_local_.restart_fp_ = kNullAddress;
347 base::Relaxed_Store(&thread_local_.current_debug_scope_,
349 thread_local_.break_on_next_function_call_ = false;
355 MemCopy(storage, reinterpret_cast<char*>(&thread_local_),
361 MemCopy(reinterpret_cast<char*>(&thread_local_), storage,
371 if (thread_local_.last_step_action_ != StepNone) {
373 PrepareStep(thread_local_.last_step_action_);
382 v->VisitRootPointer(Root::kDebug, nullptr, &thread_local_.return_value_);
384 &thread_local_.suspended_generator_);
386 &thread_local_.ignore_step_into_function_);
459 int target_frame_count = thread_local_.target_frame_count_;
460 int last_frame_count = thread_local_.last_frame_count_;
464 if (thread_local_
490 thread_local_.suspended_generator_ =
499 thread_local_.last_statement_position_ !=
621 *id = ++thread_local_.last_breakpoint_id_;
754 *id = ++thread_local_.last_breakpoint_id_;
847 thread_local_.break_on_next_function_call_ = true;
852 thread_local_.break_on_next_function_call_ = false;
863 if (*function == thread_local_.ignore_step_into_function_) return;
864 thread_local_.ignore_step_into_function_ = Smi::kZero;
873 thread_local_.last_step_action_ = StepIn;
876 JSGeneratorObject::cast(thread_local_.suspended_generator_)->function(),
940 current_frame_count > thread_local_.target_frame_count_) {
969 thread_local_.last_step_action_ = step_action;
1004 thread_local_.ignore_step_into_function_ = *function;
1007 thread_local_.last_step_action_ = StepIn;
1016 thread_local_.last_statement_position_ =
1019 thread_local_.last_frame_count_ = current_frame_count;
1029 thread_local_.last_statement_position_ = kNoSourcePosition;
1030 thread_local_.last_frame_count_ = -1;
1034 thread_local_.target_frame_count_ = current_frame_count;
1035 thread_local_.fast_forward_to_return_ = true;
1063 thread_local_.target_frame_count_ = current_frame_count;
1070 thread_local_.target_frame_count_ = current_frame_count;
1112 thread_local_.last_step_action_ = StepNone;
1113 thread_local_.last_statement_position_ = kNoSourcePosition;
1114 thread_local_.ignore_step_into_function_ = Smi::kZero;
1115 thread_local_.fast_forward_to_return_ = false;
1116 thread_local_.last_frame_count_ = -1;
1117 thread_local_.target_frame_count_ = -1;
1118 thread_local_.break_on_next_function_call_ = false;
1611 if (frame->fp() <= thread_local_.restart_fp_) return;
1614 thread_local_.restart_fp_ = frame->fp();
1618 thread_local_.break_frame_id_ = StackFrame::NO_ID;
1620 if (it.frame()->fp() > thread_local_.restart_fp_) {
1621 thread_local_.break_frame_id_ = it.frame()->id();
1922 thread_local_.last_step_action_ == StepIn ||
1924 thread_local_.break_on_next_function_call_;
2009 base::Relaxed_Load(&debug->thread_local_.current_debug_scope_))),
2012 base::Relaxed_Store(&debug_->thread_local_.current_debug_scope_,
2022 debug_->thread_local_.break_frame_id_ =
2031 base::Relaxed_Store(&debug_->thread_local_.current_debug_scope_,
2035 debug_->thread_local_.break_frame_id_ = break_frame_id_;
2182 return handle(thread_local_.return_value_, isolate_);