| 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 #include "src/arm64/interface-descriptors-arm64.h" | 5 #include "src/arm64/interface-descriptors-arm64.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_ARM64 | 7 #if V8_TARGET_ARCH_ARM64 |
| 8 | 8 |
| 9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 const Register StoreDescriptor::NameRegister() { return x2; } | 39 const Register StoreDescriptor::NameRegister() { return x2; } |
| 40 const Register StoreDescriptor::ValueRegister() { return x0; } | 40 const Register StoreDescriptor::ValueRegister() { return x0; } |
| 41 const Register StoreDescriptor::SlotRegister() { return x4; } | 41 const Register StoreDescriptor::SlotRegister() { return x4; } |
| 42 | 42 |
| 43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } | 43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } |
| 44 | 44 |
| 45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; } | 45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; } |
| 46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; } | 46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; } |
| 47 const Register StoreTransitionDescriptor::MapRegister() { return x5; } | 47 const Register StoreTransitionDescriptor::MapRegister() { return x5; } |
| 48 | 48 |
| 49 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } | |
| 50 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } | |
| 51 | |
| 52 | |
| 53 const Register StringCompareDescriptor::LeftRegister() { return x1; } | 49 const Register StringCompareDescriptor::LeftRegister() { return x1; } |
| 54 const Register StringCompareDescriptor::RightRegister() { return x0; } | 50 const Register StringCompareDescriptor::RightRegister() { return x0; } |
| 55 | 51 |
| 56 const Register ApiGetterDescriptor::HolderRegister() { return x0; } | 52 const Register ApiGetterDescriptor::HolderRegister() { return x0; } |
| 57 const Register ApiGetterDescriptor::CallbackRegister() { return x3; } | 53 const Register ApiGetterDescriptor::CallbackRegister() { return x3; } |
| 58 | 54 |
| 59 const Register MathPowTaggedDescriptor::exponent() { return x11; } | 55 const Register MathPowTaggedDescriptor::exponent() { return x11; } |
| 60 | 56 |
| 61 | 57 |
| 62 const Register MathPowIntegerDescriptor::exponent() { return x12; } | 58 const Register MathPowIntegerDescriptor::exponent() { return x12; } |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 x1, // the JSGeneratorObject to resume | 472 x1, // the JSGeneratorObject to resume |
| 477 x2 // the resume mode (tagged) | 473 x2 // the resume mode (tagged) |
| 478 }; | 474 }; |
| 479 data->InitializePlatformSpecific(arraysize(registers), registers); | 475 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 480 } | 476 } |
| 481 | 477 |
| 482 } // namespace internal | 478 } // namespace internal |
| 483 } // namespace v8 | 479 } // namespace v8 |
| 484 | 480 |
| 485 #endif // V8_TARGET_ARCH_ARM64 | 481 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |