Lines Matching defs:locals_count
832 uint32_t locals_count = 0; // Additional locals introduced in this 'let'.
846 ControlBase(ControlKind kind, uint32_t locals_count, uint32_t stack_depth,
851 locals_count(locals_count),
856 DCHECK(kind == kControlLet || locals_count == 0);
1176 // Returns a BitVector of length {locals_count + 1} representing the set of
1181 uint32_t locals_count, Zone* zone) {
1184 // The number of locals_count is augmented by 1 so that the 'locals_count'
1186 BitVector* assigned = zone->New<BitVector>(locals_count + 1, zone);
1222 imm.index - local_offsets[depth] < locals_count) {
1232 assigned->Add(locals_count);
2899 CALL_INTERFACE_IF_OK_AND_REACHABLE(DeallocateLocals, c->locals_count);
2901 this->local_types_.begin() + c->locals_count);
2902 this->num_locals_ -= c->locals_count;
3719 Control* PushControl(ControlKind kind, uint32_t locals_count = 0,
3728 control_.emplace_back(kind, locals_count, stack_depth, init_stack_depth,