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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 const Register MathPowTaggedDescriptor::exponent() { return a2; } | 49 const Register MathPowTaggedDescriptor::exponent() { return a2; } |
50 | 50 |
51 | 51 |
52 const Register MathPowIntegerDescriptor::exponent() { | 52 const Register MathPowIntegerDescriptor::exponent() { |
53 return MathPowTaggedDescriptor::exponent(); | 53 return MathPowTaggedDescriptor::exponent(); |
54 } | 54 } |
55 | 55 |
56 | 56 |
57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; } | 57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; } |
58 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; } | 58 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; } |
59 const Register GrowArrayElementsDescriptor::CapacityRegister() { return a2; } | |
60 | 59 |
61 | 60 |
62 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 61 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
63 Register registers[] = {cp, a2}; | 62 Register registers[] = {cp, a2}; |
64 data->Initialize(arraysize(registers), registers, NULL); | 63 data->Initialize(arraysize(registers), registers, NULL); |
65 } | 64 } |
66 | 65 |
67 | 66 |
68 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 67 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
69 Register registers[] = {cp, a1}; | 68 Register registers[] = {cp, a1}; |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 Representation::Tagged(), // call_data | 365 Representation::Tagged(), // call_data |
367 Representation::Tagged(), // holder | 366 Representation::Tagged(), // holder |
368 Representation::External(), // api_function_address | 367 Representation::External(), // api_function_address |
369 }; | 368 }; |
370 data->Initialize(arraysize(registers), registers, representations); | 369 data->Initialize(arraysize(registers), registers, representations); |
371 } | 370 } |
372 } | 371 } |
373 } // namespace v8::internal | 372 } // namespace v8::internal |
374 | 373 |
375 #endif // V8_TARGET_ARCH_MIPS | 374 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |