| 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_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
| 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
| 7 | 7 |
| 8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/globals.h" | 9 #include "src/globals.h" |
| 10 #include "src/mips/assembler-mips.h" | 10 #include "src/mips/assembler-mips.h" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 namespace internal { | 13 namespace internal { |
| 14 | 14 |
| 15 // Give alias names to registers for calling conventions. | 15 // Give alias names to registers for calling conventions. |
| 16 const Register kReturnRegister0 = {Register::kCode_v0}; | 16 const Register kReturnRegister0 = {Register::kCode_v0}; |
| 17 const Register kReturnRegister1 = {Register::kCode_v1}; | 17 const Register kReturnRegister1 = {Register::kCode_v1}; |
| 18 const Register kReturnRegister2 = {Register::kCode_a0}; | 18 const Register kReturnRegister2 = {Register::kCode_a0}; |
| 19 const Register kJSFunctionRegister = {Register::kCode_a1}; | 19 const Register kJSFunctionRegister = {Register::kCode_a1}; |
| 20 const Register kContextRegister = {Register::kCpRegister}; | 20 const Register kContextRegister = {Register::kCpRegister}; |
| 21 const Register kAllocateSizeRegister = {Register::kCode_a0}; |
| 21 const Register kInterpreterAccumulatorRegister = {Register::kCode_v0}; | 22 const Register kInterpreterAccumulatorRegister = {Register::kCode_v0}; |
| 22 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_t4}; | 23 const Register kInterpreterBytecodeOffsetRegister = {Register::kCode_t4}; |
| 23 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_t5}; | 24 const Register kInterpreterBytecodeArrayRegister = {Register::kCode_t5}; |
| 24 const Register kInterpreterDispatchTableRegister = {Register::kCode_t6}; | 25 const Register kInterpreterDispatchTableRegister = {Register::kCode_t6}; |
| 25 const Register kJavaScriptCallArgCountRegister = {Register::kCode_a0}; | 26 const Register kJavaScriptCallArgCountRegister = {Register::kCode_a0}; |
| 26 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_a3}; | 27 const Register kJavaScriptCallNewTargetRegister = {Register::kCode_a3}; |
| 27 const Register kRuntimeCallFunctionRegister = {Register::kCode_a1}; | 28 const Register kRuntimeCallFunctionRegister = {Register::kCode_a1}; |
| 28 const Register kRuntimeCallArgCountRegister = {Register::kCode_a0}; | 29 const Register kRuntimeCallArgCountRegister = {Register::kCode_a0}; |
| 29 | 30 |
| 30 // Forward declaration. | 31 // Forward declaration. |
| (...skipping 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1877 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1878 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1878 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1879 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1879 #else | 1880 #else |
| 1880 #define ACCESS_MASM(masm) masm-> | 1881 #define ACCESS_MASM(masm) masm-> |
| 1881 #endif | 1882 #endif |
| 1882 | 1883 |
| 1883 } // namespace internal | 1884 } // namespace internal |
| 1884 } // namespace v8 | 1885 } // namespace v8 |
| 1885 | 1886 |
| 1886 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1887 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
| OLD | NEW |