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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 | 54 |
55 const Register StringCompareDescriptor::LeftRegister() { return x1; } | 55 const Register StringCompareDescriptor::LeftRegister() { return x1; } |
56 const Register StringCompareDescriptor::RightRegister() { return x0; } | 56 const Register StringCompareDescriptor::RightRegister() { return x0; } |
57 | 57 |
58 | 58 |
59 const Register ArgumentsAccessReadDescriptor::index() { return x1; } | 59 const Register ArgumentsAccessReadDescriptor::index() { return x1; } |
60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; } | 60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; } |
61 | 61 |
62 | 62 |
| 63 const Register ArgumentsAccessNewDescriptor::function() { return x1; } |
| 64 const Register ArgumentsAccessNewDescriptor::parameter_count() { return x2; } |
| 65 const Register ArgumentsAccessNewDescriptor::parameter_pointer() { return x3; } |
| 66 |
| 67 |
63 const Register ApiGetterDescriptor::function_address() { return x2; } | 68 const Register ApiGetterDescriptor::function_address() { return x2; } |
64 | 69 |
65 | 70 |
66 const Register MathPowTaggedDescriptor::exponent() { return x11; } | 71 const Register MathPowTaggedDescriptor::exponent() { return x11; } |
67 | 72 |
68 | 73 |
69 const Register MathPowIntegerDescriptor::exponent() { return x12; } | 74 const Register MathPowIntegerDescriptor::exponent() { return x12; } |
70 | 75 |
71 | 76 |
72 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } | 77 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 x2, // address of first argument | 453 x2, // address of first argument |
449 x1 // the target callable to be call | 454 x1 // the target callable to be call |
450 }; | 455 }; |
451 data->InitializePlatformSpecific(arraysize(registers), registers); | 456 data->InitializePlatformSpecific(arraysize(registers), registers); |
452 } | 457 } |
453 | 458 |
454 } // namespace internal | 459 } // namespace internal |
455 } // namespace v8 | 460 } // namespace v8 |
456 | 461 |
457 #endif // V8_TARGET_ARCH_ARM64 | 462 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |