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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 1576093004: [Interpreter] Add ForInPrepare runtime function which returns a ObjectTriple. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add MIPS port Created 4 years, 11 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/x64/code-stubs-x64.cc ('k') | no next file » | 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 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ 5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_
6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ 6 #define V8_X64_MACRO_ASSEMBLER_X64_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/base/flags.h" 10 #include "src/base/flags.h"
11 #include "src/frames.h" 11 #include "src/frames.h"
12 #include "src/globals.h" 12 #include "src/globals.h"
13 #include "src/x64/frames-x64.h" 13 #include "src/x64/frames-x64.h"
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 17
18 // Give alias names to registers for calling conventions. 18 // Give alias names to registers for calling conventions.
19 const Register kReturnRegister0 = {Register::kCode_rax}; 19 const Register kReturnRegister0 = {Register::kCode_rax};
20 const Register kReturnRegister1 = {Register::kCode_rdx}; 20 const Register kReturnRegister1 = {Register::kCode_rdx};
21 const Register kReturnRegister2 = {Register::kCode_r8};
21 const Register kJSFunctionRegister = {Register::kCode_rdi}; 22 const Register kJSFunctionRegister = {Register::kCode_rdi};
22 const Register kContextRegister = {Register::kCode_rsi}; 23 const Register kContextRegister = {Register::kCode_rsi};
23 const Register kInterpreterAccumulatorRegister = {Register::kCode_rax}; 24 const Register kInterpreterAccumulatorRegister = {Register::kCode_rax};
24 const Register kInterpreterRegisterFileRegister = {Register::kCode_r11}; 25 const Register kInterpreterRegisterFileRegister = {Register::kCode_r11};
25 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_r12}; 26 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_r12};
26 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_r14}; 27 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_r14};
27 const Register kInterpreterDispatchTableRegister = {Register::kCode_r15}; 28 const Register kInterpreterDispatchTableRegister = {Register::kCode_r15};
28 const Register kJavaScriptCallArgCountRegister = {Register::kCode_rax}; 29 const Register kJavaScriptCallArgCountRegister = {Register::kCode_rax};
29 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_rdx}; 30 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_rdx};
30 const Register kRuntimeCallFunctionRegister = {Register::kCode_rbx}; 31 const Register kRuntimeCallFunctionRegister = {Register::kCode_rbx};
(...skipping 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 } \ 1740 } \
1740 masm-> 1741 masm->
1741 #else 1742 #else
1742 #define ACCESS_MASM(masm) masm-> 1743 #define ACCESS_MASM(masm) masm->
1743 #endif 1744 #endif
1744 1745
1745 } // namespace internal 1746 } // namespace internal
1746 } // namespace v8 1747 } // namespace v8
1747 1748
1748 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1749 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698