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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 Representation::Tagged(), // | 380 Representation::Tagged(), // |
382 Representation::Tagged(), // | 381 Representation::Tagged(), // |
383 Representation::Tagged(), // | 382 Representation::Tagged(), // |
384 }; | 383 }; |
385 data->Initialize(arraysize(registers), registers, representations); | 384 data->Initialize(arraysize(registers), registers, representations); |
386 } | 385 } |
387 } | 386 } |
388 } // namespace v8::internal | 387 } // namespace v8::internal |
389 | 388 |
390 #endif // V8_TARGET_ARCH_MIPS | 389 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |