| 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 const Register FastNewFunctionContextDescriptor::FunctionRegister() { | 23 const Register FastNewFunctionContextDescriptor::FunctionRegister() { |
| 24 return a1; | 24 return a1; |
| 25 } | 25 } |
| 26 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return a0; } | 26 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return a0; } |
| 27 | 27 |
| 28 const Register LoadDescriptor::ReceiverRegister() { return a1; } | 28 const Register LoadDescriptor::ReceiverRegister() { return a1; } |
| 29 const Register LoadDescriptor::NameRegister() { return a2; } | 29 const Register LoadDescriptor::NameRegister() { return a2; } |
| 30 const Register LoadDescriptor::SlotRegister() { return a0; } | 30 const Register LoadDescriptor::SlotRegister() { return a0; } |
| 31 | 31 |
| 32 | |
| 33 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } | 32 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } |
| 34 | 33 |
| 34 const Register LoadICProtoArrayDescriptor::HandlerRegister() { return t0; } |
| 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 StoreTransitionDescriptor::SlotRegister() { return t0; } | 43 const Register StoreTransitionDescriptor::SlotRegister() { return t0; } |
| 44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; } | 44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; } |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 a1, // the JSGeneratorObject to resume | 411 a1, // the JSGeneratorObject to resume |
| 412 a2 // the resume mode (tagged) | 412 a2 // the resume mode (tagged) |
| 413 }; | 413 }; |
| 414 data->InitializePlatformSpecific(arraysize(registers), registers); | 414 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 415 } | 415 } |
| 416 | 416 |
| 417 } // namespace internal | 417 } // namespace internal |
| 418 } // namespace v8 | 418 } // namespace v8 |
| 419 | 419 |
| 420 #endif // V8_TARGET_ARCH_MIPS | 420 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |