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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 const Register MathPowTaggedDescriptor::exponent() { return x11; } | 61 const Register MathPowTaggedDescriptor::exponent() { return x11; } |
62 | 62 |
63 | 63 |
64 const Register MathPowIntegerDescriptor::exponent() { return x12; } | 64 const Register MathPowIntegerDescriptor::exponent() { return x12; } |
65 | 65 |
66 | 66 |
67 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } | 67 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } |
68 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } | 68 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } |
69 | 69 |
| 70 const Register HasPropertyDescriptor::ObjectRegister() { return x0; } |
| 71 const Register HasPropertyDescriptor::KeyRegister() { return x3; } |
70 | 72 |
71 void FastNewClosureDescriptor::InitializePlatformSpecific( | 73 void FastNewClosureDescriptor::InitializePlatformSpecific( |
72 CallInterfaceDescriptorData* data) { | 74 CallInterfaceDescriptorData* data) { |
73 // x2: function info | 75 // x2: function info |
74 Register registers[] = {x2}; | 76 Register registers[] = {x2}; |
75 data->InitializePlatformSpecific(arraysize(registers), registers); | 77 data->InitializePlatformSpecific(arraysize(registers), registers); |
76 } | 78 } |
77 | 79 |
78 | 80 |
79 void FastNewContextDescriptor::InitializePlatformSpecific( | 81 void FastNewContextDescriptor::InitializePlatformSpecific( |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 x1, // the JSGeneratorObject to resume | 479 x1, // the JSGeneratorObject to resume |
478 x2 // the resume mode (tagged) | 480 x2 // the resume mode (tagged) |
479 }; | 481 }; |
480 data->InitializePlatformSpecific(arraysize(registers), registers); | 482 data->InitializePlatformSpecific(arraysize(registers), registers); |
481 } | 483 } |
482 | 484 |
483 } // namespace internal | 485 } // namespace internal |
484 } // namespace v8 | 486 } // namespace v8 |
485 | 487 |
486 #endif // V8_TARGET_ARCH_ARM64 | 488 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |