Home | History | Annotate | Download | only in ia32

Lines Matching refs:arg_count

2150   int arg_count = args->length();
2152 for (int i = 0; i < arg_count; i++) {
2160 isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
2182 int arg_count = args->length();
2184 for (int i = 0; i < arg_count; i++) {
2191 isolate()->stub_cache()->ComputeKeyedCallInitialize(arg_count);
2192 __ mov(ecx, Operand(esp, (arg_count + 1) * kPointerSize)); // Key.
2204 int arg_count = args->length();
2206 for (int i = 0; i < arg_count; i++) {
2224 CallFunctionStub stub(arg_count, flags);
2225 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize));
2235 void FullCodeGenerator::EmitResolvePossiblyDirectEval(int arg_count) {
2237 if (arg_count > 0) {
2238 __ push(Operand(esp, arg_count * kPointerSize));
2273 int arg_count = args->length();
2279 for (int i = 0; i < arg_count; i++) {
2285 __ push(Operand(esp, (arg_count + 1) * kPointerSize));
2286 EmitResolvePossiblyDirectEval(arg_count);
2290 __ mov(Operand(esp, (arg_count + 0) * kPointerSize), edx);
2291 __ mov(Operand(esp, (arg_count + 1) * kPointerSize), eax);
2295 CallFunctionStub stub(arg_count, RECEIVER_MIGHT_BE_IMPLICIT);
2296 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize));
2388 int arg_count = args->length();
2389 for (int i = 0; i < arg_count; i++) {
2398 __ SafeSet(eax, Immediate(arg_count));
2399 __ mov(edi, Operand(esp, arg_count * kPointerSize));
3267 int arg_count = args->length() - 2; // 2 ~ receiver and function.
3268 for (int i = 0; i < arg_count + 1; ++i) {
3280 ParameterCount count(arg_count);
3719 int arg_count = args->length();
3720 for (int i = 0; i < arg_count; i++) {
3729 isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
3735 __ CallRuntime(expr->function(), arg_count);