Home | History | Annotate | Download | only in builtins

Lines Matching defs:argc

498   Node* argc = Parameter(BuiltinDescriptor::kArgumentsCount);
501 CodeStubArguments arguments(this, ChangeInt32ToIntPtr(argc));
502 // From now on use word-size argc value.
503 argc = arguments.GetLength();
508 Branch(WordEqual(argc, IntPtrConstant(1)), &if_oneargument,
528 Node* one_byte_result = AllocateSeqOneByteString(context, argc);
562 Node* two_byte_result = AllocateSeqTwoByteString(context, argc);
1017 Node* argc = Parameter(BuiltinDescriptor::kArgumentsCount);
1020 CodeStubArguments arguments(this, ChangeInt32ToIntPtr(argc));
1022 // From now on use word-size argc value.
1023 argc = arguments.GetLength();
1025 GotoIf(IntPtrEqual(argc, IntPtrConstant(0)), &argc_0);
1026 GotoIf(IntPtrEqual(argc, IntPtrConstant(1)), &argc_1);