| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } | 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } |
| 49 | 49 |
| 50 | 50 |
| 51 const Register InstanceOfDescriptor::LeftRegister() { return r1; } | 51 const Register InstanceOfDescriptor::LeftRegister() { return r1; } |
| 52 const Register InstanceOfDescriptor::RightRegister() { return r0; } | 52 const Register InstanceOfDescriptor::RightRegister() { return r0; } |
| 53 | 53 |
| 54 | 54 |
| 55 const Register StringCompareDescriptor::LeftRegister() { return r1; } | 55 const Register StringCompareDescriptor::LeftRegister() { return r1; } |
| 56 const Register StringCompareDescriptor::RightRegister() { return r0; } | 56 const Register StringCompareDescriptor::RightRegister() { return r0; } |
| 57 | 57 |
| 58 const Register ApiGetterDescriptor::HolderRegister() { return r0; } | 58 |
| 59 const Register ApiGetterDescriptor::CallbackRegister() { return r3; } | 59 const Register ApiGetterDescriptor::function_address() { return r2; } |
| 60 |
| 60 | 61 |
| 61 const Register MathPowTaggedDescriptor::exponent() { return r2; } | 62 const Register MathPowTaggedDescriptor::exponent() { return r2; } |
| 62 | 63 |
| 63 | 64 |
| 64 const Register MathPowIntegerDescriptor::exponent() { | 65 const Register MathPowIntegerDescriptor::exponent() { |
| 65 return MathPowTaggedDescriptor::exponent(); | 66 return MathPowTaggedDescriptor::exponent(); |
| 66 } | 67 } |
| 67 | 68 |
| 68 | 69 |
| 69 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } | 70 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 r1, // the typedarray object | 451 r1, // the typedarray object |
| 451 r0 // the index to load (untagged) | 452 r0 // the index to load (untagged) |
| 452 }; | 453 }; |
| 453 data->InitializePlatformSpecific(arraysize(registers), registers); | 454 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 454 } | 455 } |
| 455 | 456 |
| 456 } // namespace internal | 457 } // namespace internal |
| 457 } // namespace v8 | 458 } // namespace v8 |
| 458 | 459 |
| 459 #endif // V8_TARGET_ARCH_ARM | 460 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |