| 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/arm/interface-descriptors-arm.h" | 5 #include "src/arm/interface-descriptors-arm.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
| 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 r2; } | 26 const Register LoadDescriptor::NameRegister() { return r2; } |
| 27 const Register LoadDescriptor::SlotRegister() { return r0; } | 27 const Register LoadDescriptor::SlotRegister() { return r0; } |
| 28 | 28 |
| 29 | 29 |
| 30 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } | 30 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } |
| 31 | 31 |
| 32 | 32 |
| 33 const Register StoreDescriptor::ReceiverRegister() { return r1; } | 33 const Register StoreDescriptor::ReceiverRegister() { return r1; } |
| 34 const Register StoreDescriptor::NameRegister() { return r2; } | 34 const Register StoreDescriptor::NameRegister() { return r2; } |
| 35 const Register StoreDescriptor::ValueRegister() { return r0; } | 35 const Register StoreDescriptor::ValueRegister() { return r0; } |
| 36 const Register StoreDescriptor::SlotRegister() { return r4; } |
| 36 | 37 |
| 37 | 38 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; } |
| 38 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return r4; } | |
| 39 | |
| 40 | |
| 41 const Register VectorStoreICDescriptor::VectorRegister() { return r3; } | |
| 42 | |
| 43 | 39 |
| 44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } | 40 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } |
| 45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } | 41 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } |
| 46 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } | 42 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } |
| 47 | 43 |
| 48 | 44 |
| 49 const Register StoreTransitionDescriptor::MapRegister() { return r3; } | 45 const Register StoreTransitionDescriptor::MapRegister() { return r3; } |
| 50 | 46 |
| 51 | 47 |
| 52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } | 48 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 r1, // the JSGeneratorObject to resume | 426 r1, // the JSGeneratorObject to resume |
| 431 r2 // the resume mode (tagged) | 427 r2 // the resume mode (tagged) |
| 432 }; | 428 }; |
| 433 data->InitializePlatformSpecific(arraysize(registers), registers); | 429 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 434 } | 430 } |
| 435 | 431 |
| 436 } // namespace internal | 432 } // namespace internal |
| 437 } // namespace v8 | 433 } // namespace v8 |
| 438 | 434 |
| 439 #endif // V8_TARGET_ARCH_ARM | 435 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |