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 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 Register registers[] = { | 404 Register registers[] = { |
426 a1, // loaded new FP | 405 a1, // loaded new FP |
427 }; | 406 }; |
428 data->InitializePlatformSpecific(arraysize(registers), registers); | 407 data->InitializePlatformSpecific(arraysize(registers), registers); |
429 } | 408 } |
430 | 409 |
431 } // namespace internal | 410 } // namespace internal |
432 } // namespace v8 | 411 } // namespace v8 |
433 | 412 |
434 #endif // V8_TARGET_ARCH_MIPS | 413 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |