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

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

Issue 1289863003: [interpreter]: Changes to interpreter builtins for accumulator and register file registers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@fix_interpreter_initialization
Patch Set: Rename incoming_accumulator Created 5 years, 4 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/ia32/builtins-ia32.cc ('k') | src/mips/builtins-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 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_ 5 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_
6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_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/frames.h" 10 #include "src/frames.h"
11 #include "src/globals.h" 11 #include "src/globals.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 15
16 // Give alias names to registers for calling conventions. 16 // Give alias names to registers for calling conventions.
17 const Register kReturnRegister0 = {kRegister_eax_Code}; 17 const Register kReturnRegister0 = {kRegister_eax_Code};
18 const Register kReturnRegister1 = {kRegister_edx_Code}; 18 const Register kReturnRegister1 = {kRegister_edx_Code};
19 const Register kJSFunctionRegister = {kRegister_edi_Code}; 19 const Register kJSFunctionRegister = {kRegister_edi_Code};
20 const Register kContextRegister = {kRegister_esi_Code}; 20 const Register kContextRegister = {kRegister_esi_Code};
21 const Register kInterpreterAccumulatorRegister = {kRegister_eax_Code};
22 const Register kInterpreterRegisterFileRegister = {kRegister_edx_Code};
21 const Register kInterpreterBytecodeOffsetRegister = {kRegister_ecx_Code}; 23 const Register kInterpreterBytecodeOffsetRegister = {kRegister_ecx_Code};
22 const Register kInterpreterBytecodeArrayRegister = {kRegister_edi_Code}; 24 const Register kInterpreterBytecodeArrayRegister = {kRegister_edi_Code};
23 const Register kInterpreterDispatchTableRegister = {kRegister_ebx_Code}; 25 const Register kInterpreterDispatchTableRegister = {kRegister_ebx_Code};
24 const Register kRuntimeCallFunctionRegister = {kRegister_ebx_Code}; 26 const Register kRuntimeCallFunctionRegister = {kRegister_ebx_Code};
25 const Register kRuntimeCallArgCountRegister = {kRegister_eax_Code}; 27 const Register kRuntimeCallArgCountRegister = {kRegister_eax_Code};
26 28
27 // Convenience for platform-independent signatures. We do not normally 29 // Convenience for platform-independent signatures. We do not normally
28 // distinguish memory operands from other operands on ia32. 30 // distinguish memory operands from other operands on ia32.
29 typedef Operand MemOperand; 31 typedef Operand MemOperand;
30 32
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 } \ 1109 } \
1108 masm-> 1110 masm->
1109 #else 1111 #else
1110 #define ACCESS_MASM(masm) masm-> 1112 #define ACCESS_MASM(masm) masm->
1111 #endif 1113 #endif
1112 1114
1113 1115
1114 } } // namespace v8::internal 1116 } } // namespace v8::internal
1115 1117
1116 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 1118 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/builtins-ia32.cc ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698