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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 42 |
43 | 43 |
44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } | 44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } |
45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } | 45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } |
46 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } | 46 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } |
47 | 47 |
48 | 48 |
49 const Register StoreTransitionDescriptor::MapRegister() { return r3; } | 49 const Register StoreTransitionDescriptor::MapRegister() { return r3; } |
50 | 50 |
51 | 51 |
52 const Register LoadGlobalViaContextDescriptor::SlotRegister() { return r2; } | |
53 | |
54 | |
55 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } | 52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } |
56 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } | 53 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } |
57 | 54 |
58 | 55 |
59 const Register StringCompareDescriptor::LeftRegister() { return r1; } | 56 const Register StringCompareDescriptor::LeftRegister() { return r1; } |
60 const Register StringCompareDescriptor::RightRegister() { return r0; } | 57 const Register StringCompareDescriptor::RightRegister() { return r0; } |
61 | 58 |
62 const Register ApiGetterDescriptor::HolderRegister() { return r0; } | 59 const Register ApiGetterDescriptor::HolderRegister() { return r0; } |
63 const Register ApiGetterDescriptor::CallbackRegister() { return r3; } | 60 const Register ApiGetterDescriptor::CallbackRegister() { return r3; } |
64 | 61 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 r1, // the JSGeneratorObject to resume | 431 r1, // the JSGeneratorObject to resume |
435 r2 // the resume mode (tagged) | 432 r2 // the resume mode (tagged) |
436 }; | 433 }; |
437 data->InitializePlatformSpecific(arraysize(registers), registers); | 434 data->InitializePlatformSpecific(arraysize(registers), registers); |
438 } | 435 } |
439 | 436 |
440 } // namespace internal | 437 } // namespace internal |
441 } // namespace v8 | 438 } // namespace v8 |
442 | 439 |
443 #endif // V8_TARGET_ARCH_ARM | 440 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |