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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 const Register FastNewFunctionContextDescriptor::FunctionRegister() { | 25 const Register FastNewFunctionContextDescriptor::FunctionRegister() { |
26 return x1; | 26 return x1; |
27 } | 27 } |
28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return x0; } | 28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return x0; } |
29 | 29 |
30 const Register LoadDescriptor::ReceiverRegister() { return x1; } | 30 const Register LoadDescriptor::ReceiverRegister() { return x1; } |
31 const Register LoadDescriptor::NameRegister() { return x2; } | 31 const Register LoadDescriptor::NameRegister() { return x2; } |
32 const Register LoadDescriptor::SlotRegister() { return x0; } | 32 const Register LoadDescriptor::SlotRegister() { return x0; } |
33 | 33 |
34 | |
35 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } | 34 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } |
36 | 35 |
| 36 const Register LoadICProtoArrayDescriptor::HandlerRegister() { return x4; } |
37 | 37 |
38 const Register StoreDescriptor::ReceiverRegister() { return x1; } | 38 const Register StoreDescriptor::ReceiverRegister() { return x1; } |
39 const Register StoreDescriptor::NameRegister() { return x2; } | 39 const Register StoreDescriptor::NameRegister() { return x2; } |
40 const Register StoreDescriptor::ValueRegister() { return x0; } | 40 const Register StoreDescriptor::ValueRegister() { return x0; } |
41 const Register StoreDescriptor::SlotRegister() { return x4; } | 41 const Register StoreDescriptor::SlotRegister() { return x4; } |
42 | 42 |
43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } | 43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } |
44 | 44 |
45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; } | 45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; } |
46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; } | 46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; } |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 x1, // the JSGeneratorObject to resume | 462 x1, // the JSGeneratorObject to resume |
463 x2 // the resume mode (tagged) | 463 x2 // the resume mode (tagged) |
464 }; | 464 }; |
465 data->InitializePlatformSpecific(arraysize(registers), registers); | 465 data->InitializePlatformSpecific(arraysize(registers), registers); |
466 } | 466 } |
467 | 467 |
468 } // namespace internal | 468 } // namespace internal |
469 } // namespace v8 | 469 } // namespace v8 |
470 | 470 |
471 #endif // V8_TARGET_ARCH_ARM64 | 471 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |