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

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

Issue 1847373002: [debugger] fix step-next for tail calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix reloc info Created 4 years, 8 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
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/mips/assembler-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_X87 5 #if V8_TARGET_ARCH_X87
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 2497 matching lines...) Expand 10 before | Expand all | Expand 10 after
2508 2508
2509 void FullCodeGenerator::EmitCall(Call* expr, ConvertReceiverMode mode) { 2509 void FullCodeGenerator::EmitCall(Call* expr, ConvertReceiverMode mode) {
2510 // Load the arguments. 2510 // Load the arguments.
2511 ZoneList<Expression*>* args = expr->arguments(); 2511 ZoneList<Expression*>* args = expr->arguments();
2512 int arg_count = args->length(); 2512 int arg_count = args->length();
2513 for (int i = 0; i < arg_count; i++) { 2513 for (int i = 0; i < arg_count; i++) {
2514 VisitForStackValue(args->at(i)); 2514 VisitForStackValue(args->at(i));
2515 } 2515 }
2516 2516
2517 PrepareForBailoutForId(expr->CallId(), NO_REGISTERS); 2517 PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
2518 SetCallPosition(expr); 2518 SetCallPosition(expr, expr->tail_call_mode());
2519 if (expr->tail_call_mode() == TailCallMode::kAllow) { 2519 if (expr->tail_call_mode() == TailCallMode::kAllow) {
2520 if (FLAG_trace) { 2520 if (FLAG_trace) {
2521 __ CallRuntime(Runtime::kTraceTailCall); 2521 __ CallRuntime(Runtime::kTraceTailCall);
2522 } 2522 }
2523 // Update profiling counters before the tail call since we will 2523 // Update profiling counters before the tail call since we will
2524 // not return to this function. 2524 // not return to this function.
2525 EmitProfilingCounterHandlingForReturnSequence(true); 2525 EmitProfilingCounterHandlingForReturnSequence(true);
2526 } 2526 }
2527 Handle<Code> ic = 2527 Handle<Code> ic =
2528 CodeFactory::CallIC(isolate(), arg_count, mode, expr->tail_call_mode()) 2528 CodeFactory::CallIC(isolate(), arg_count, mode, expr->tail_call_mode())
(...skipping 1448 matching lines...) Expand 10 before | Expand all | Expand 10 after
3977 isolate->builtins()->OnStackReplacement()->entry(), 3977 isolate->builtins()->OnStackReplacement()->entry(),
3978 Assembler::target_address_at(call_target_address, unoptimized_code)); 3978 Assembler::target_address_at(call_target_address, unoptimized_code));
3979 return ON_STACK_REPLACEMENT; 3979 return ON_STACK_REPLACEMENT;
3980 } 3980 }
3981 3981
3982 3982
3983 } // namespace internal 3983 } // namespace internal
3984 } // namespace v8 3984 } // namespace v8
3985 3985
3986 #endif // V8_TARGET_ARCH_X87 3986 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698