Home | History | Annotate | Download | only in wasm

Lines Matching defs:stack_

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