OLD | NEW |
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 = {Register::kCode_eax}; | 17 const Register kReturnRegister0 = {Register::kCode_eax}; |
18 const Register kReturnRegister1 = {Register::kCode_edx}; | 18 const Register kReturnRegister1 = {Register::kCode_edx}; |
19 const Register kReturnRegister2 = {Register::kCode_edi}; | 19 const Register kReturnRegister2 = {Register::kCode_edi}; |
20 const Register kJSFunctionRegister = {Register::kCode_edi}; | 20 const Register kJSFunctionRegister = {Register::kCode_edi}; |
21 const Register kContextRegister = {Register::kCode_esi}; | 21 const Register kContextRegister = {Register::kCode_esi}; |
| 22 const Register kAllocateSizeRegister = {Register::kCode_edx}; |
22 const Register kInterpreterAccumulatorRegister = {Register::kCode_eax}; | 23 const Register kInterpreterAccumulatorRegister = {Register::kCode_eax}; |
23 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_ecx}; | 24 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_ecx}; |
24 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_edi}; | 25 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_edi}; |
25 const Register kInterpreterDispatchTableRegister = {Register::kCode_esi}; | 26 const Register kInterpreterDispatchTableRegister = {Register::kCode_esi}; |
26 const Register kJavaScriptCallArgCountRegister = {Register::kCode_eax}; | 27 const Register kJavaScriptCallArgCountRegister = {Register::kCode_eax}; |
27 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_edx}; | 28 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_edx}; |
28 const Register kRuntimeCallFunctionRegister = {Register::kCode_ebx}; | 29 const Register kRuntimeCallFunctionRegister = {Register::kCode_ebx}; |
29 const Register kRuntimeCallArgCountRegister = {Register::kCode_eax}; | 30 const Register kRuntimeCallArgCountRegister = {Register::kCode_eax}; |
30 | 31 |
31 // Convenience for platform-independent signatures. We do not normally | 32 // Convenience for platform-independent signatures. We do not normally |
(...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 } \ | 1066 } \ |
1066 masm-> | 1067 masm-> |
1067 #else | 1068 #else |
1068 #define ACCESS_MASM(masm) masm-> | 1069 #define ACCESS_MASM(masm) masm-> |
1069 #endif | 1070 #endif |
1070 | 1071 |
1071 } // namespace internal | 1072 } // namespace internal |
1072 } // namespace v8 | 1073 } // namespace v8 |
1073 | 1074 |
1074 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1075 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
OLD | NEW |