Home | History | Annotate | Download | only in mips

Lines Matching full:param_count

114   int param_count = descriptor.GetRegisterParameterCount();
118 DCHECK(param_count == 0 ||
119 a0.is(descriptor.GetRegisterParameter(param_count - 1)));
121 __ Subu(sp, sp, Operand(param_count * kPointerSize));
122 for (int i = 0; i < param_count; ++i) {
125 MemOperand(sp, (param_count - 1 - i) * kPointerSize));
127 __ CallExternalReference(miss, param_count);