Home | History | Annotate | Download | only in wasm

Lines Matching defs:stack_depth

79   int stack_depth;    // stack height at the beginning of the construct.
705 Value val = PopUpTo(c->stack_depth);
725 Value val = PopUpTo(c->stack_depth);
741 stack_.resize(c->stack_depth);
1108 int stack_depth = static_cast<int>(stack_.size());
1110 {pc_, stack_depth, end_env, nullptr, nullptr, kAstEnd, false});
1114 int stack_depth = static_cast<int>(stack_.size());
1116 {pc_, stack_depth, end_env, nullptr, nullptr, kAstEnd, true});
1120 int stack_depth = static_cast<int>(stack_.size());
1122 {pc_, stack_depth, end_env, false_env, nullptr, kAstStmt, false});
1181 size_t limit = control_.empty() ? 0 : control_.back().stack_depth;
1192 Value PopUpTo(int stack_depth) {
1193 if (stack_depth == stack_.size()) {
1197 DCHECK_LE(stack_depth, static_cast<int>(stack_.size()));
1199 stack_.resize(stack_depth);