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 13 matching lines...) Expand all Loading... |
24 const Register LoadDescriptor::NameRegister() { return a2; } | 24 const Register LoadDescriptor::NameRegister() { return a2; } |
25 const Register LoadDescriptor::SlotRegister() { return a0; } | 25 const Register LoadDescriptor::SlotRegister() { return a0; } |
26 | 26 |
27 | 27 |
28 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } | 28 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } |
29 | 29 |
30 | 30 |
31 const Register StoreDescriptor::ReceiverRegister() { return a1; } | 31 const Register StoreDescriptor::ReceiverRegister() { return a1; } |
32 const Register StoreDescriptor::NameRegister() { return a2; } | 32 const Register StoreDescriptor::NameRegister() { return a2; } |
33 const Register StoreDescriptor::ValueRegister() { return a0; } | 33 const Register StoreDescriptor::ValueRegister() { return a0; } |
| 34 const Register StoreDescriptor::SlotRegister() { return t0; } |
34 | 35 |
35 | 36 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } |
36 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return t0; } | |
37 | |
38 | |
39 const Register VectorStoreICDescriptor::VectorRegister() { return a3; } | |
40 | |
41 | 37 |
42 const Register VectorStoreTransitionDescriptor::SlotRegister() { return t0; } | 38 const Register VectorStoreTransitionDescriptor::SlotRegister() { return t0; } |
43 const Register VectorStoreTransitionDescriptor::VectorRegister() { return a3; } | 39 const Register VectorStoreTransitionDescriptor::VectorRegister() { return a3; } |
44 const Register VectorStoreTransitionDescriptor::MapRegister() { return t1; } | 40 const Register VectorStoreTransitionDescriptor::MapRegister() { return t1; } |
45 | 41 |
46 | 42 |
47 const Register StoreTransitionDescriptor::MapRegister() { return a3; } | 43 const Register StoreTransitionDescriptor::MapRegister() { return a3; } |
48 | 44 |
49 | 45 |
50 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return a2; } | 46 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return a2; } |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 a1, // the JSGeneratorObject to resume | 404 a1, // the JSGeneratorObject to resume |
409 a2 // the resume mode (tagged) | 405 a2 // the resume mode (tagged) |
410 }; | 406 }; |
411 data->InitializePlatformSpecific(arraysize(registers), registers); | 407 data->InitializePlatformSpecific(arraysize(registers), registers); |
412 } | 408 } |
413 | 409 |
414 } // namespace internal | 410 } // namespace internal |
415 } // namespace v8 | 411 } // namespace v8 |
416 | 412 |
417 #endif // V8_TARGET_ARCH_MIPS | 413 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |