| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 const Register MathPowIntegerDescriptor::exponent() { | 74 const Register MathPowIntegerDescriptor::exponent() { |
| 75 return MathPowTaggedDescriptor::exponent(); | 75 return MathPowTaggedDescriptor::exponent(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 | 78 |
| 79 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } | 79 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } |
| 80 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } | 80 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } |
| 81 | 81 |
| 82 | 82 |
| 83 void VectorStoreTransitionDescriptor::InitializePlatformSpecific( | |
| 84 CallInterfaceDescriptorData* data) { | |
| 85 Register registers[] = {ReceiverRegister(), NameRegister(), ValueRegister(), | |
| 86 SlotRegister(), VectorRegister(), MapRegister()}; | |
| 87 data->InitializePlatformSpecific(arraysize(registers), registers); | |
| 88 } | |
| 89 | |
| 90 | |
| 91 void FastNewClosureDescriptor::InitializePlatformSpecific( | 83 void FastNewClosureDescriptor::InitializePlatformSpecific( |
| 92 CallInterfaceDescriptorData* data) { | 84 CallInterfaceDescriptorData* data) { |
| 93 Register registers[] = {r2}; | 85 Register registers[] = {r2}; |
| 94 data->InitializePlatformSpecific(arraysize(registers), registers); | 86 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 95 } | 87 } |
| 96 | 88 |
| 97 | 89 |
| 98 void FastNewContextDescriptor::InitializePlatformSpecific( | 90 void FastNewContextDescriptor::InitializePlatformSpecific( |
| 99 CallInterfaceDescriptorData* data) { | 91 CallInterfaceDescriptorData* data) { |
| 100 Register registers[] = {r1}; | 92 Register registers[] = {r1}; |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 r2, // address of first argument (argv) | 427 r2, // address of first argument (argv) |
| 436 r1 // the runtime function to call | 428 r1 // the runtime function to call |
| 437 }; | 429 }; |
| 438 data->InitializePlatformSpecific(arraysize(registers), registers); | 430 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 439 } | 431 } |
| 440 | 432 |
| 441 } // namespace internal | 433 } // namespace internal |
| 442 } // namespace v8 | 434 } // namespace v8 |
| 443 | 435 |
| 444 #endif // V8_TARGET_ARCH_ARM | 436 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |