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_MIPS64 | 7 #if V8_TARGET_ARCH_MIPS64 |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 return MathPowTaggedDescriptor::exponent(); | 53 return MathPowTaggedDescriptor::exponent(); |
54 } | 54 } |
55 | 55 |
56 | 56 |
57 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 57 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
58 Register registers[] = {cp, a2}; | 58 Register registers[] = {cp, a2}; |
59 data->Initialize(arraysize(registers), registers, NULL); | 59 data->Initialize(arraysize(registers), registers, NULL); |
60 } | 60 } |
61 | 61 |
62 | 62 |
63 // IC register specifications | |
64 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; } | |
65 const Register GrowArrayElementsDescriptor::KeyRegister() { return a1; } | |
66 const Register GrowArrayElementsDescriptor::CapacityRegister() { return a2; } | |
67 | |
68 | |
69 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 63 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
70 Register registers[] = {cp, a1}; | 64 Register registers[] = {cp, a1}; |
71 data->Initialize(arraysize(registers), registers, NULL); | 65 data->Initialize(arraysize(registers), registers, NULL); |
72 } | 66 } |
73 | 67 |
74 | 68 |
75 void ToNumberDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 69 void ToNumberDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
76 Register registers[] = {cp, a0}; | 70 Register registers[] = {cp, a0}; |
77 data->Initialize(arraysize(registers), registers, NULL); | 71 data->Initialize(arraysize(registers), registers, NULL); |
78 } | 72 } |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 Representation::Tagged(), // call_data | 306 Representation::Tagged(), // call_data |
313 Representation::Tagged(), // holder | 307 Representation::Tagged(), // holder |
314 Representation::External(), // api_function_address | 308 Representation::External(), // api_function_address |
315 }; | 309 }; |
316 data->Initialize(arraysize(registers), registers, representations); | 310 data->Initialize(arraysize(registers), registers, representations); |
317 } | 311 } |
318 } | 312 } |
319 } // namespace v8::internal | 313 } // namespace v8::internal |
320 | 314 |
321 #endif // V8_TARGET_ARCH_MIPS64 | 315 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |