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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 | 23 |
24 const Register VectorLoadICDescriptor::VectorRegister() { return a3; } | 24 const Register VectorLoadICDescriptor::VectorRegister() { return a3; } |
25 | 25 |
26 | 26 |
27 const Register StoreDescriptor::ReceiverRegister() { return a1; } | 27 const Register StoreDescriptor::ReceiverRegister() { return a1; } |
28 const Register StoreDescriptor::NameRegister() { return a2; } | 28 const Register StoreDescriptor::NameRegister() { return a2; } |
29 const Register StoreDescriptor::ValueRegister() { return a0; } | 29 const Register StoreDescriptor::ValueRegister() { return a0; } |
30 | 30 |
31 | 31 |
| 32 const Register ExtendStorageDescriptor::MapRegister() { return a3; } |
| 33 |
| 34 |
32 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return a3; } | 35 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return a3; } |
33 | 36 |
34 | 37 |
35 const Register InstanceofDescriptor::left() { return a0; } | 38 const Register InstanceofDescriptor::left() { return a0; } |
36 const Register InstanceofDescriptor::right() { return a1; } | 39 const Register InstanceofDescriptor::right() { return a1; } |
37 | 40 |
38 | 41 |
39 const Register ArgumentsAccessReadDescriptor::index() { return a1; } | 42 const Register ArgumentsAccessReadDescriptor::index() { return a1; } |
40 const Register ArgumentsAccessReadDescriptor::parameter_count() { return a0; } | 43 const Register ArgumentsAccessReadDescriptor::parameter_count() { return a0; } |
41 | 44 |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 Representation::Tagged(), // call_data | 297 Representation::Tagged(), // call_data |
295 Representation::Tagged(), // holder | 298 Representation::Tagged(), // holder |
296 Representation::External(), // api_function_address | 299 Representation::External(), // api_function_address |
297 }; | 300 }; |
298 data->Initialize(arraysize(registers), registers, representations); | 301 data->Initialize(arraysize(registers), registers, representations); |
299 } | 302 } |
300 } | 303 } |
301 } // namespace v8::internal | 304 } // namespace v8::internal |
302 | 305 |
303 #endif // V8_TARGET_ARCH_MIPS | 306 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |