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_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
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 t0; } | 39 const Register StoreDescriptor::SlotRegister() { return t0; } |
40 | 40 |
41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } | 41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } |
42 | 42 |
43 const Register VectorStoreTransitionDescriptor::SlotRegister() { return t0; } | 43 const Register StoreTransitionDescriptor::SlotRegister() { return t0; } |
44 const Register VectorStoreTransitionDescriptor::VectorRegister() { return a3; } | 44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; } |
45 const Register VectorStoreTransitionDescriptor::MapRegister() { return t1; } | 45 const Register StoreTransitionDescriptor::MapRegister() { return t1; } |
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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 a1, // the JSGeneratorObject to resume | 422 a1, // the JSGeneratorObject to resume |
427 a2 // the resume mode (tagged) | 423 a2 // the resume mode (tagged) |
428 }; | 424 }; |
429 data->InitializePlatformSpecific(arraysize(registers), registers); | 425 data->InitializePlatformSpecific(arraysize(registers), registers); |
430 } | 426 } |
431 | 427 |
432 } // namespace internal | 428 } // namespace internal |
433 } // namespace v8 | 429 } // namespace v8 |
434 | 430 |
435 #endif // V8_TARGET_ARCH_MIPS | 431 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |