Lines Matching defs:count
289 void TurboAssembler::Drop(int count) {
290 if (count > 0) {
291 AddS64(sp, sp, Operand(count * kSystemPointerSize), r0);
295 void TurboAssembler::Drop(Register count, Register scratch) {
296 ShiftLeftU64(scratch, count, Operand(kSystemPointerSizeLog2));
1182 void TurboAssembler::DropArguments(Register count, ArgumentsCountType type,
1188 ShiftLeftU64(ip, count, Operand(kSystemPointerSizeLog2));
1194 SmiToPtrArrayOffset(count, count);
1195 add(sp, sp, count);
1199 add(sp, sp, count);
1448 // r3: actual arguments count
1450 // r5: expected arguments count
1455 // If the expected parameter count is equal to the adaptor sentinel, no need
1463 // If overapplication or if the actual argument count is equal to the
1464 // formal parameter count, no need to push extra undefined values.