Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: src/full-codegen/mips/full-codegen-mips.cc

Issue 2412453005: [stubs] Refactor the CallICStub to pass the number of arguments. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_MIPS 5 #if V8_TARGET_ARCH_MIPS
6 6
7 // Note on Mips implementation: 7 // Note on Mips implementation:
8 // 8 //
9 // The result_register() for mips is the 'v0' register, which is defined 9 // The result_register() for mips is the 'v0' register, which is defined
10 // by the ABI to contain function return values. However, the first 10 // by the ABI to contain function return values. However, the first
(...skipping 2375 matching lines...) Expand 10 before | Expand all | Expand 10 after
2386 SetCallPosition(expr, expr->tail_call_mode()); 2386 SetCallPosition(expr, expr->tail_call_mode());
2387 if (expr->tail_call_mode() == TailCallMode::kAllow) { 2387 if (expr->tail_call_mode() == TailCallMode::kAllow) {
2388 if (FLAG_trace) { 2388 if (FLAG_trace) {
2389 __ CallRuntime(Runtime::kTraceTailCall); 2389 __ CallRuntime(Runtime::kTraceTailCall);
2390 } 2390 }
2391 // Update profiling counters before the tail call since we will 2391 // Update profiling counters before the tail call since we will
2392 // not return to this function. 2392 // not return to this function.
2393 EmitProfilingCounterHandlingForReturnSequence(true); 2393 EmitProfilingCounterHandlingForReturnSequence(true);
2394 } 2394 }
2395 Handle<Code> code = 2395 Handle<Code> code =
2396 CodeFactory::CallIC(isolate(), arg_count, mode, expr->tail_call_mode()) 2396 CodeFactory::CallIC(isolate(), mode, expr->tail_call_mode()).code();
2397 .code();
2398 __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot()))); 2397 __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot())));
2399 __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize)); 2398 __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
2399 __ li(a0, Operand(arg_count));
2400 __ Call(code, RelocInfo::CODE_TARGET); 2400 __ Call(code, RelocInfo::CODE_TARGET);
2401 OperandStackDepthDecrement(arg_count + 1); 2401 OperandStackDepthDecrement(arg_count + 1);
2402 2402
2403 RecordJSReturnSite(expr); 2403 RecordJSReturnSite(expr);
2404 RestoreContext(); 2404 RestoreContext();
2405 context()->DropAndPlug(1, v0); 2405 context()->DropAndPlug(1, v0);
2406 } 2406 }
2407 2407
2408 void FullCodeGenerator::EmitResolvePossiblyDirectEval(Call* expr) { 2408 void FullCodeGenerator::EmitResolvePossiblyDirectEval(Call* expr) {
2409 int arg_count = expr->arguments()->length(); 2409 int arg_count = expr->arguments()->length();
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after
3670 reinterpret_cast<uint32_t>( 3670 reinterpret_cast<uint32_t>(
3671 isolate->builtins()->OnStackReplacement()->entry())); 3671 isolate->builtins()->OnStackReplacement()->entry()));
3672 return ON_STACK_REPLACEMENT; 3672 return ON_STACK_REPLACEMENT;
3673 } 3673 }
3674 3674
3675 3675
3676 } // namespace internal 3676 } // namespace internal
3677 } // namespace v8 3677 } // namespace v8
3678 3678
3679 #endif // V8_TARGET_ARCH_MIPS 3679 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/full-codegen/ia32/full-codegen-ia32.cc ('k') | src/full-codegen/mips64/full-codegen-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698