| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_CONSTANTS_X64_H_ | 5 #ifndef VM_CONSTANTS_X64_H_ |
| 6 #define VM_CONSTANTS_X64_H_ | 6 #define VM_CONSTANTS_X64_H_ |
| 7 | 7 |
| 8 namespace dart { | 8 namespace dart { |
| 9 | 9 |
| 10 enum Register { | 10 enum Register { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 REX_B = 1 << 0, | 78 REX_B = 1 << 0, |
| 79 REX_X = 1 << 1, | 79 REX_X = 1 << 1, |
| 80 REX_R = 1 << 2, | 80 REX_R = 1 << 2, |
| 81 REX_W = 1 << 3, | 81 REX_W = 1 << 3, |
| 82 REX_PREFIX = 1 << 6 | 82 REX_PREFIX = 1 << 6 |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 | 85 |
| 86 // Register aliases. | 86 // Register aliases. |
| 87 const Register TMP = R11; // Used as scratch register by the assembler. | 87 const Register TMP = R11; // Used as scratch register by the assembler. |
| 88 const Register CTX = R15; // Caches current context in generated code. | 88 const Register CTX = R14; // Caches current context in generated code. |
| 89 const Register PP = kNoRegister; // No object pool pointer. | 89 // Caches object pool pointer in generated code. |
| 90 const Register PP = R15; |
| 90 const Register SPREG = RSP; // Stack pointer register. | 91 const Register SPREG = RSP; // Stack pointer register. |
| 91 const Register FPREG = RBP; // Frame pointer register. | 92 const Register FPREG = RBP; // Frame pointer register. |
| 92 const Register ICREG = RBX; // IC data register. | 93 const Register ICREG = RBX; // IC data register. |
| 93 | 94 |
| 94 // Exception object is passed in this register to the catch handlers when an | 95 // Exception object is passed in this register to the catch handlers when an |
| 95 // exception is thrown. | 96 // exception is thrown. |
| 96 const Register kExceptionObjectReg = RAX; | 97 const Register kExceptionObjectReg = RAX; |
| 97 | 98 |
| 98 // Stack trace object is passed in this register to the catch handlers when | 99 // Stack trace object is passed in this register to the catch handlers when |
| 99 // an exception is thrown. | 100 // an exception is thrown. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 }; | 163 }; |
| 163 | 164 |
| 164 | 165 |
| 165 // The largest multibyte nop we will emit. This could go up to 15 if it | 166 // The largest multibyte nop we will emit. This could go up to 15 if it |
| 166 // becomes important to us. | 167 // becomes important to us. |
| 167 const int MAX_NOP_SIZE = 8; | 168 const int MAX_NOP_SIZE = 8; |
| 168 | 169 |
| 169 } // namespace dart | 170 } // namespace dart |
| 170 | 171 |
| 171 #endif // VM_CONSTANTS_X64_H_ | 172 #endif // VM_CONSTANTS_X64_H_ |
| OLD | NEW |