Lines Matching refs:stack_
109 stack_(zone), in LR_WasmDecoder()
120 stack_.clear(); in Decode()
139 if (stack_.size() > 0) { in Decode()
140 error(stack_.back().pc(), end, "fell off end of code"); in Decode()
178 ZoneVector<Production> stack_; member in v8::internal::wasm::LR_WasmDecoder
263 stack_.push_back({tree, 0}); in Shift()
269 if (stack_.size() == 0) { in Reduce()
273 Production* p = &stack_.back(); in Reduce()
278 stack_.pop_back(); in Reduce()
290 if (stack_.size() < kMaxIndent / 2) { in indentation()
291 bytes[stack_.size() * 2] = 0; in indentation()
588 blocks_.push_back({ssa_env, static_cast<int>(stack_.size() - 1)}); in PushBlock()
673 DCHECK_EQ(stack_.size() - 1, last->stack_depth); in Reduce()
687 DCHECK_EQ(stack_.size() - 1, last->stack_depth); in Reduce()
1038 Production* bp = &stack_[block->stack_depth]; in ReduceBreakToExprBlock()
1389 if (depth >= stack_.size()) return; in PrintProduction()
1390 Production* p = &stack_[depth]; in PrintProduction()