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

Side by Side Diff: src/x64/builtins-x64.cc

Issue 1676263002: Remove --stop-at flag from several backends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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/ppc/builtins-ppc.cc ('k') | src/x87/builtins-x87.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_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/code-factory.h" 7 #include "src/code-factory.h"
8 #include "src/codegen.h" 8 #include "src/codegen.h"
9 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
10 #include "src/full-codegen/full-codegen.h" 10 #include "src/full-codegen/full-codegen.h"
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 // Continue loop if not done. 660 // Continue loop if not done.
661 __ bind(&loop_check); 661 __ bind(&loop_check);
662 __ subp(rcx, Immediate(kPointerSize)); 662 __ subp(rcx, Immediate(kPointerSize));
663 __ j(greater_equal, &loop_header, Label::kNear); 663 __ j(greater_equal, &loop_header, Label::kNear);
664 } 664 }
665 665
666 // TODO(rmcilroy): List of things not currently dealt with here but done in 666 // TODO(rmcilroy): List of things not currently dealt with here but done in
667 // fullcodegen's prologue: 667 // fullcodegen's prologue:
668 // - Support profiler (specifically profiling_counter). 668 // - Support profiler (specifically profiling_counter).
669 // - Call ProfileEntryHookStub when isolate has a function_entry_hook. 669 // - Call ProfileEntryHookStub when isolate has a function_entry_hook.
670 // - Allow simulator stop operations if FLAG_stop_at is set.
671 // - Code aging of the BytecodeArray object. 670 // - Code aging of the BytecodeArray object.
672 671
673 // Load accumulator, register file, bytecode offset, dispatch table into 672 // Load accumulator, register file, bytecode offset, dispatch table into
674 // registers. 673 // registers.
675 __ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex); 674 __ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex);
676 __ movp(kInterpreterRegisterFileRegister, rbp); 675 __ movp(kInterpreterRegisterFileRegister, rbp);
677 __ addp(kInterpreterRegisterFileRegister, 676 __ addp(kInterpreterRegisterFileRegister,
678 Immediate(InterpreterFrameConstants::kRegisterFilePointerFromFp)); 677 Immediate(InterpreterFrameConstants::kRegisterFilePointerFromFp));
679 __ movp(kInterpreterBytecodeOffsetRegister, 678 __ movp(kInterpreterBytecodeOffsetRegister,
680 Immediate(BytecodeArray::kHeaderSize - kHeapObjectTag)); 679 Immediate(BytecodeArray::kHeaderSize - kHeapObjectTag));
(...skipping 2171 matching lines...) Expand 10 before | Expand all | Expand 10 after
2852 __ ret(0); 2851 __ ret(0);
2853 } 2852 }
2854 2853
2855 2854
2856 #undef __ 2855 #undef __
2857 2856
2858 } // namespace internal 2857 } // namespace internal
2859 } // namespace v8 2858 } // namespace v8
2860 2859
2861 #endif // V8_TARGET_ARCH_X64 2860 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/ppc/builtins-ppc.cc ('k') | src/x87/builtins-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698