Lines Matching defs:args
1410 RegisterList args,
1412 if (args.register_count() == 1) {
1413 OutputCallProperty0(callable, args[0], feedback_slot);
1414 } else if (args.register_count() == 2) {
1415 OutputCallProperty1(callable, args[0], args[1], feedback_slot);
1416 } else if (args.register_count() == 3) {
1417 OutputCallProperty2(callable, args[0], args[1], args[2], feedback_slot);
1419 OutputCallProperty(callable, args, args.register_count(), feedback_slot);
1425 Register callable, RegisterList args, int feedback_slot) {
1426 if (args.register_count() == 0) {
1428 } else if (args.register_count() == 1) {
1429 OutputCallUndefinedReceiver1(callable, args[0], feedback_slot);
1430 } else if (args.register_count() == 2) {
1431 OutputCallUndefinedReceiver2(callable, args[0], args[1], feedback_slot);
1433 OutputCallUndefinedReceiver(callable, args, args.register_count(),
1440 RegisterList args,
1442 OutputCallAnyReceiver(callable, args, args.register_count(), feedback_slot);
1447 RegisterList args,
1449 OutputCallWithSpread(callable, args, args.register_count(), feedback_slot);
1454 RegisterList args,
1456 OutputConstruct(constructor, args, args.register_count(), feedback_slot_id);
1461 Register constructor, RegisterList args, int feedback_slot_id) {
1462 OutputConstructWithSpread(constructor, args, args.register_count(),
1468 Runtime::FunctionId function_id, RegisterList args) {
1475 OutputInvokeIntrinsic(static_cast<int>(intrinsic_id), args,
1476 args.register_count());
1478 OutputCallRuntime(static_cast<int>(function_id), args,
1479 args.register_count());
1495 Runtime::FunctionId function_id, RegisterList args,
1501 OutputCallRuntimeForPair(static_cast<uint16_t>(function_id), args,
1502 args.register_count(), return_pair);
1512 RegisterList args) {
1513 OutputCallJSRuntime(context_index, args, args.register_count());