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_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
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 | 49 |
50 | 50 |
51 const Register MathPowTaggedDescriptor::exponent() { return eax; } | 51 const Register MathPowTaggedDescriptor::exponent() { return eax; } |
52 | 52 |
53 | 53 |
54 const Register MathPowIntegerDescriptor::exponent() { | 54 const Register MathPowIntegerDescriptor::exponent() { |
55 return MathPowTaggedDescriptor::exponent(); | 55 return MathPowTaggedDescriptor::exponent(); |
56 } | 56 } |
57 | 57 |
58 | 58 |
59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return eax; } | |
60 const Register GrowArrayElementsDescriptor::KeyRegister() { return ebx; } | |
61 const Register GrowArrayElementsDescriptor::CapacityRegister() { return ecx; } | |
62 | |
63 | |
64 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 59 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
65 Register registers[] = {esi, ebx}; | 60 Register registers[] = {esi, ebx}; |
66 data->Initialize(arraysize(registers), registers, NULL); | 61 data->Initialize(arraysize(registers), registers, NULL); |
67 } | 62 } |
68 | 63 |
69 | 64 |
70 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 65 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
71 Register registers[] = {esi, edi}; | 66 Register registers[] = {esi, edi}; |
72 data->Initialize(arraysize(registers), registers, NULL); | 67 data->Initialize(arraysize(registers), registers, NULL); |
73 } | 68 } |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 Representation::Tagged(), // call_data | 307 Representation::Tagged(), // call_data |
313 Representation::Tagged(), // holder | 308 Representation::Tagged(), // holder |
314 Representation::External(), // api_function_address | 309 Representation::External(), // api_function_address |
315 }; | 310 }; |
316 data->Initialize(arraysize(registers), registers, representations); | 311 data->Initialize(arraysize(registers), registers, representations); |
317 } | 312 } |
318 } | 313 } |
319 } // namespace v8::internal | 314 } // namespace v8::internal |
320 | 315 |
321 #endif // V8_TARGET_ARCH_IA32 | 316 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |