Lines Matching defs:count
385 void TurboAssembler::Drop(int count, Condition cond) {
386 if (count > 0) {
387 add(sp, sp, Operand(count * kPointerSize), LeaveCC, cond);
391 void TurboAssembler::Drop(Register count, Condition cond) {
392 add(sp, sp, Operand(count, LSL, kPointerSizeLog2), LeaveCC, cond);
1321 void TurboAssembler::DropArguments(Register count, ArgumentsCountType type,
1326 add(sp, sp, Operand(count, LSL, kPointerSizeLog2), LeaveCC);
1331 add(sp, sp, Operand(count, LSL, kPointerSizeLog2 - kSmiTagSize), LeaveCC);
1335 add(sp, sp, count, LeaveCC);
1593 // r0: actual arguments count
1595 // r2: expected arguments count
1599 // If the expected parameter count is equal to the adaptor sentinel, no need
1606 // If overapplication or if the actual argument count is equal to the
1607 // formal parameter count, no need to push extra undefined values.