Lines Matching defs:count
867 push(kJavaScriptCallArgCountRegister); // Actual argument count.
870 void TurboAssembler::DropArguments(Register count, ArgumentsCountType type,
876 lea(esp, Operand(esp, count, times_system_pointer_size, receiver_bytes));
886 Operand(esp, count, times_half_system_pointer_size, receiver_bytes));
891 add(esp, count);
893 lea(esp, Operand(esp, count, times_1, receiver_bytes));
900 void TurboAssembler::DropArguments(Register count, Register scratch,
903 DCHECK(!AreAliased(count, scratch));
905 DropArguments(count, type, mode);
1263 // If the expected parameter count is equal to the adaptor sentinel, no need
1270 // If overapplication or if the actual argument count is equal to the
1271 // formal parameter count, no need to push extra undefined values.