| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } | 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } |
| 49 | 49 |
| 50 | 50 |
| 51 const Register InstanceOfDescriptor::LeftRegister() { return x1; } | 51 const Register InstanceOfDescriptor::LeftRegister() { return x1; } |
| 52 const Register InstanceOfDescriptor::RightRegister() { return x0; } | 52 const Register InstanceOfDescriptor::RightRegister() { return x0; } |
| 53 | 53 |
| 54 | 54 |
| 55 const Register StringCompareDescriptor::LeftRegister() { return x1; } | 55 const Register StringCompareDescriptor::LeftRegister() { return x1; } |
| 56 const Register StringCompareDescriptor::RightRegister() { return x0; } | 56 const Register StringCompareDescriptor::RightRegister() { return x0; } |
| 57 | 57 |
| 58 | 58 const Register ApiGetterDescriptor::HolderRegister() { return x0; } |
| 59 const Register ApiGetterDescriptor::function_address() { return x2; } | 59 const Register ApiGetterDescriptor::CallbackRegister() { return x3; } |
| 60 | |
| 61 | 60 |
| 62 const Register MathPowTaggedDescriptor::exponent() { return x11; } | 61 const Register MathPowTaggedDescriptor::exponent() { return x11; } |
| 63 | 62 |
| 64 | 63 |
| 65 const Register MathPowIntegerDescriptor::exponent() { return x12; } | 64 const Register MathPowIntegerDescriptor::exponent() { return x12; } |
| 66 | 65 |
| 67 | 66 |
| 68 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } | 67 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } |
| 69 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } | 68 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } |
| 70 | 69 |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 x1, // the typedarray object | 482 x1, // the typedarray object |
| 484 x0 // the index to load (untagged) | 483 x0 // the index to load (untagged) |
| 485 }; | 484 }; |
| 486 data->InitializePlatformSpecific(arraysize(registers), registers); | 485 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 487 } | 486 } |
| 488 | 487 |
| 489 } // namespace internal | 488 } // namespace internal |
| 490 } // namespace v8 | 489 } // namespace v8 |
| 491 | 490 |
| 492 #endif // V8_TARGET_ARCH_ARM64 | 491 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |