| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; } | 61 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; } |
| 62 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; } | 62 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; } |
| 63 | 63 |
| 64 | 64 |
| 65 void FastNewClosureDescriptor::InitializePlatformSpecific( | 65 void FastNewClosureDescriptor::InitializePlatformSpecific( |
| 66 CallInterfaceDescriptorData* data) { | 66 CallInterfaceDescriptorData* data) { |
| 67 Register registers[] = {a1, a2, a3}; | 67 Register registers[] = {a1, a2, a3}; |
| 68 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | 68 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); |
| 69 } | 69 } |
| 70 | 70 |
| 71 void FastNewRestParameterDescriptor::InitializePlatformSpecific( | |
| 72 CallInterfaceDescriptorData* data) { | |
| 73 Register registers[] = {a1}; | |
| 74 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | |
| 75 } | |
| 76 | |
| 77 | |
| 78 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific( | |
| 79 CallInterfaceDescriptorData* data) { | |
| 80 Register registers[] = {a1}; | |
| 81 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | |
| 82 } | |
| 83 | |
| 84 | |
| 85 void FastNewStrictArgumentsDescriptor::InitializePlatformSpecific( | |
| 86 CallInterfaceDescriptorData* data) { | |
| 87 Register registers[] = {a1}; | |
| 88 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | |
| 89 } | |
| 90 | |
| 91 | |
| 92 // static | 71 // static |
| 93 const Register TypeConversionDescriptor::ArgumentRegister() { return a0; } | 72 const Register TypeConversionDescriptor::ArgumentRegister() { return a0; } |
| 94 | 73 |
| 95 void TypeofDescriptor::InitializePlatformSpecific( | 74 void TypeofDescriptor::InitializePlatformSpecific( |
| 96 CallInterfaceDescriptorData* data) { | 75 CallInterfaceDescriptorData* data) { |
| 97 Register registers[] = {a3}; | 76 Register registers[] = {a3}; |
| 98 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | 77 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); |
| 99 } | 78 } |
| 100 | 79 |
| 101 | 80 |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 Register registers[] = { | 403 Register registers[] = { |
| 425 a1, // loaded new FP | 404 a1, // loaded new FP |
| 426 }; | 405 }; |
| 427 data->InitializePlatformSpecific(arraysize(registers), registers); | 406 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 428 } | 407 } |
| 429 | 408 |
| 430 } // namespace internal | 409 } // namespace internal |
| 431 } // namespace v8 | 410 } // namespace v8 |
| 432 | 411 |
| 433 #endif // V8_TARGET_ARCH_MIPS64 | 412 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |