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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 const Register FastNewFunctionContextDescriptor::FunctionRegister() { | 25 const Register FastNewFunctionContextDescriptor::FunctionRegister() { |
26 return r1; | 26 return r1; |
27 } | 27 } |
28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return r0; } | 28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return r0; } |
29 | 29 |
30 const Register LoadDescriptor::ReceiverRegister() { return r1; } | 30 const Register LoadDescriptor::ReceiverRegister() { return r1; } |
31 const Register LoadDescriptor::NameRegister() { return r2; } | 31 const Register LoadDescriptor::NameRegister() { return r2; } |
32 const Register LoadDescriptor::SlotRegister() { return r0; } | 32 const Register LoadDescriptor::SlotRegister() { return r0; } |
33 | 33 |
34 | |
35 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } | 34 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } |
36 | 35 |
| 36 const Register LoadICProtoArrayDescriptor::HandlerRegister() { return r4; } |
37 | 37 |
38 const Register StoreDescriptor::ReceiverRegister() { return r1; } | 38 const Register StoreDescriptor::ReceiverRegister() { return r1; } |
39 const Register StoreDescriptor::NameRegister() { return r2; } | 39 const Register StoreDescriptor::NameRegister() { return r2; } |
40 const Register StoreDescriptor::ValueRegister() { return r0; } | 40 const Register StoreDescriptor::ValueRegister() { return r0; } |
41 const Register StoreDescriptor::SlotRegister() { return r4; } | 41 const Register StoreDescriptor::SlotRegister() { return r4; } |
42 | 42 |
43 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; } | 43 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; } |
44 | 44 |
45 const Register StoreTransitionDescriptor::SlotRegister() { return r4; } | 45 const Register StoreTransitionDescriptor::SlotRegister() { return r4; } |
46 const Register StoreTransitionDescriptor::VectorRegister() { return r3; } | 46 const Register StoreTransitionDescriptor::VectorRegister() { return r3; } |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 r1, // the JSGeneratorObject to resume | 433 r1, // the JSGeneratorObject to resume |
434 r2 // the resume mode (tagged) | 434 r2 // the resume mode (tagged) |
435 }; | 435 }; |
436 data->InitializePlatformSpecific(arraysize(registers), registers); | 436 data->InitializePlatformSpecific(arraysize(registers), registers); |
437 } | 437 } |
438 | 438 |
439 } // namespace internal | 439 } // namespace internal |
440 } // namespace v8 | 440 } // namespace v8 |
441 | 441 |
442 #endif // V8_TARGET_ARCH_ARM | 442 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |