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 #if V8_TARGET_ARCH_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
6 | 6 |
7 #include "src/interface-descriptors.h" | 7 #include "src/interface-descriptors.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 22 matching lines...) Expand all Loading... |
33 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } | 33 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } |
34 | 34 |
35 | 35 |
36 const Register StoreDescriptor::ReceiverRegister() { return a1; } | 36 const Register StoreDescriptor::ReceiverRegister() { return a1; } |
37 const Register StoreDescriptor::NameRegister() { return a2; } | 37 const Register StoreDescriptor::NameRegister() { return a2; } |
38 const Register StoreDescriptor::ValueRegister() { return a0; } | 38 const Register StoreDescriptor::ValueRegister() { return a0; } |
39 const Register StoreDescriptor::SlotRegister() { return a4; } | 39 const Register StoreDescriptor::SlotRegister() { return a4; } |
40 | 40 |
41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } | 41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } |
42 | 42 |
43 const Register VectorStoreTransitionDescriptor::SlotRegister() { return a4; } | 43 const Register StoreTransitionDescriptor::SlotRegister() { return a4; } |
44 const Register VectorStoreTransitionDescriptor::VectorRegister() { return a3; } | 44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; } |
45 const Register VectorStoreTransitionDescriptor::MapRegister() { return a5; } | 45 const Register StoreTransitionDescriptor::MapRegister() { return a5; } |
46 | |
47 | |
48 const Register StoreTransitionDescriptor::MapRegister() { return a3; } | |
49 | |
50 | 46 |
51 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return a2; } | 47 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return a2; } |
52 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return a0; } | 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return a0; } |
53 | 49 |
54 | 50 |
55 const Register StringCompareDescriptor::LeftRegister() { return a1; } | 51 const Register StringCompareDescriptor::LeftRegister() { return a1; } |
56 const Register StringCompareDescriptor::RightRegister() { return a0; } | 52 const Register StringCompareDescriptor::RightRegister() { return a0; } |
57 | 53 |
58 const Register ApiGetterDescriptor::HolderRegister() { return a0; } | 54 const Register ApiGetterDescriptor::HolderRegister() { return a0; } |
59 const Register ApiGetterDescriptor::CallbackRegister() { return a3; } | 55 const Register ApiGetterDescriptor::CallbackRegister() { return a3; } |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 a1, // the JSGeneratorObject to resume | 421 a1, // the JSGeneratorObject to resume |
426 a2 // the resume mode (tagged) | 422 a2 // the resume mode (tagged) |
427 }; | 423 }; |
428 data->InitializePlatformSpecific(arraysize(registers), registers); | 424 data->InitializePlatformSpecific(arraysize(registers), registers); |
429 } | 425 } |
430 | 426 |
431 } // namespace internal | 427 } // namespace internal |
432 } // namespace v8 | 428 } // namespace v8 |
433 | 429 |
434 #endif // V8_TARGET_ARCH_MIPS64 | 430 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |