Home | History | Annotate | Download | only in x87

Lines Matching full:locals_count

126     int locals_count = info->scope()->num_stack_slots();
128 DCHECK(!IsGeneratorFunction(literal()->kind()) || locals_count == 0);
129 if (locals_count == 1) {
131 } else if (locals_count > 1) {
132 if (locals_count >= 128) {
135 __ sub(ecx, Immediate(locals_count * kPointerSize));
145 if (locals_count >= kMaxPushes) {
146 int loop_iterations = locals_count / kMaxPushes;
157 int remaining = locals_count % kMaxPushes;