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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 | 46 |
47 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } | 47 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } |
48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } | 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } |
49 | 49 |
50 | 50 |
51 const Register InstanceOfDescriptor::LeftRegister() { return x1; } | 51 const Register InstanceOfDescriptor::LeftRegister() { return x1; } |
52 const Register InstanceOfDescriptor::RightRegister() { return x0; } | 52 const Register InstanceOfDescriptor::RightRegister() { return x0; } |
53 | 53 |
54 | 54 |
| 55 const Register StringCompareDescriptor::LeftRegister() { return x1; } |
| 56 const Register StringCompareDescriptor::RightRegister() { return x0; } |
| 57 |
| 58 |
55 const Register ArgumentsAccessReadDescriptor::index() { return x1; } | 59 const Register ArgumentsAccessReadDescriptor::index() { return x1; } |
56 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; } | 60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; } |
57 | 61 |
58 | 62 |
59 const Register ApiGetterDescriptor::function_address() { return x2; } | 63 const Register ApiGetterDescriptor::function_address() { return x2; } |
60 | 64 |
61 | 65 |
62 const Register MathPowTaggedDescriptor::exponent() { return x11; } | 66 const Register MathPowTaggedDescriptor::exponent() { return x11; } |
63 | 67 |
64 | 68 |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 x2, // address of first argument | 448 x2, // address of first argument |
445 x1 // the target callable to be call | 449 x1 // the target callable to be call |
446 }; | 450 }; |
447 data->InitializePlatformSpecific(arraysize(registers), registers); | 451 data->InitializePlatformSpecific(arraysize(registers), registers); |
448 } | 452 } |
449 | 453 |
450 } // namespace internal | 454 } // namespace internal |
451 } // namespace v8 | 455 } // namespace v8 |
452 | 456 |
453 #endif // V8_TARGET_ARCH_ARM64 | 457 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |