| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 58 |
| 59 const Register ArgumentsAccessReadDescriptor::index() { return r1; } | 59 const Register ArgumentsAccessReadDescriptor::index() { return r1; } |
| 60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return r0; } | 60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return r0; } |
| 61 | 61 |
| 62 | 62 |
| 63 const Register ArgumentsAccessNewDescriptor::function() { return r1; } |
| 64 const Register ArgumentsAccessNewDescriptor::parameter_count() { return r2; } |
| 65 const Register ArgumentsAccessNewDescriptor::parameter_pointer() { return r3; } |
| 66 |
| 67 |
| 63 const Register ApiGetterDescriptor::function_address() { return r2; } | 68 const Register ApiGetterDescriptor::function_address() { return r2; } |
| 64 | 69 |
| 65 | 70 |
| 66 const Register MathPowTaggedDescriptor::exponent() { return r2; } | 71 const Register MathPowTaggedDescriptor::exponent() { return r2; } |
| 67 | 72 |
| 68 | 73 |
| 69 const Register MathPowIntegerDescriptor::exponent() { | 74 const Register MathPowIntegerDescriptor::exponent() { |
| 70 return MathPowTaggedDescriptor::exponent(); | 75 return MathPowTaggedDescriptor::exponent(); |
| 71 } | 76 } |
| 72 | 77 |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 r2, // address of first argument | 424 r2, // address of first argument |
| 420 r1 // the target callable to be call | 425 r1 // the target callable to be call |
| 421 }; | 426 }; |
| 422 data->InitializePlatformSpecific(arraysize(registers), registers); | 427 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 423 } | 428 } |
| 424 | 429 |
| 425 } // namespace internal | 430 } // namespace internal |
| 426 } // namespace v8 | 431 } // namespace v8 |
| 427 | 432 |
| 428 #endif // V8_TARGET_ARCH_ARM | 433 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |