Lines Matching refs:StackHeight
1152 DCHECK_GT(StackHeight(), index); in GetStackValue()
1157 DCHECK_GT(StackHeight(), index); in SetStackValue()
1181 DCHECK_IMPLIES(activations_.empty(), StackHeight() == 0); in StartActivation()
1184 StackHeight()); in StartActivation()
1196 DCHECK_LE(activations_.back().sp, StackHeight()); in FinishActivation()
1218 DCHECK_LE(act.sp, StackHeight()); in HandleException()
1282 DCHECK_GE(StackHeight(), arity); in PushFrame()
1283 frames_.push_back({code, 0, StackHeight() - arity}); in PushFrame()
2142 StackHeight() - stack_effect.first + stack_effect.second; in Execute()
2590 DCHECK_EQ(expected_new_stack_height, StackHeight()); in Execute()
2613 DCHECK_GT(StackHeight(), frames_.back().llimit()); // can't pop into locals in Pop()
2618 DCHECK_GE(StackHeight(), n); in PopN()
2621 DCHECK_GE(StackHeight() - n, frames_.back().llimit()); in PopN()
2659 sp_t StackHeight() { return sp_ - stack_.get(); } in StackHeight() function in v8::internal::wasm::__anon959de6190111::ThreadImpl
2668 for (size_t i = sp; i < StackHeight(); ++i) { in TraceValueStack()
2955 is_top_frame ? thread_->StackHeight() : thread_->frames_[index_ + 1].sp; in GetStackHeight()