| 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 15 matching lines...) Expand all Loading... |
| 26 const Register LoadDescriptor::NameRegister() { return x2; } | 26 const Register LoadDescriptor::NameRegister() { return x2; } |
| 27 const Register LoadDescriptor::SlotRegister() { return x0; } | 27 const Register LoadDescriptor::SlotRegister() { return x0; } |
| 28 | 28 |
| 29 | 29 |
| 30 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } | 30 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } |
| 31 | 31 |
| 32 | 32 |
| 33 const Register StoreDescriptor::ReceiverRegister() { return x1; } | 33 const Register StoreDescriptor::ReceiverRegister() { return x1; } |
| 34 const Register StoreDescriptor::NameRegister() { return x2; } | 34 const Register StoreDescriptor::NameRegister() { return x2; } |
| 35 const Register StoreDescriptor::ValueRegister() { return x0; } | 35 const Register StoreDescriptor::ValueRegister() { return x0; } |
| 36 const Register StoreDescriptor::SlotRegister() { return x4; } |
| 36 | 37 |
| 37 | 38 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } |
| 38 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return x4; } | |
| 39 | |
| 40 | |
| 41 const Register VectorStoreICDescriptor::VectorRegister() { return x3; } | |
| 42 | |
| 43 | 39 |
| 44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; } | 40 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; } |
| 45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; } | 41 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; } |
| 46 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; } | 42 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; } |
| 47 | 43 |
| 48 | 44 |
| 49 const Register StoreTransitionDescriptor::MapRegister() { return x3; } | 45 const Register StoreTransitionDescriptor::MapRegister() { return x3; } |
| 50 | 46 |
| 51 | 47 |
| 52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } | 48 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 x1, // the JSGeneratorObject to resume | 459 x1, // the JSGeneratorObject to resume |
| 464 x2 // the resume mode (tagged) | 460 x2 // the resume mode (tagged) |
| 465 }; | 461 }; |
| 466 data->InitializePlatformSpecific(arraysize(registers), registers); | 462 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 467 } | 463 } |
| 468 | 464 |
| 469 } // namespace internal | 465 } // namespace internal |
| 470 } // namespace v8 | 466 } // namespace v8 |
| 471 | 467 |
| 472 #endif // V8_TARGET_ARCH_ARM64 | 468 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |