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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 data->Initialize(arraysize(registers), registers, NULL); | 79 data->Initialize(arraysize(registers), registers, NULL); |
80 } | 80 } |
81 | 81 |
82 | 82 |
83 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 83 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
84 Register registers[] = {esi, eax}; | 84 Register registers[] = {esi, eax}; |
85 data->Initialize(arraysize(registers), registers, NULL); | 85 data->Initialize(arraysize(registers), registers, NULL); |
86 } | 86 } |
87 | 87 |
88 | 88 |
| 89 void TypeofDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
| 90 Register registers[] = {esi, ebx}; |
| 91 data->Initialize(arraysize(registers), registers, NULL); |
| 92 } |
| 93 |
| 94 |
89 void FastCloneShallowArrayDescriptor::Initialize( | 95 void FastCloneShallowArrayDescriptor::Initialize( |
90 CallInterfaceDescriptorData* data) { | 96 CallInterfaceDescriptorData* data) { |
91 Register registers[] = {esi, eax, ebx, ecx}; | 97 Register registers[] = {esi, eax, ebx, ecx}; |
92 Representation representations[] = { | 98 Representation representations[] = { |
93 Representation::Tagged(), Representation::Tagged(), Representation::Smi(), | 99 Representation::Tagged(), Representation::Tagged(), Representation::Smi(), |
94 Representation::Tagged()}; | 100 Representation::Tagged()}; |
95 data->Initialize(arraysize(registers), registers, representations); | 101 data->Initialize(arraysize(registers), registers, representations); |
96 } | 102 } |
97 | 103 |
98 | 104 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 Representation::Tagged(), // call_data | 367 Representation::Tagged(), // call_data |
362 Representation::Tagged(), // holder | 368 Representation::Tagged(), // holder |
363 Representation::External(), // api_function_address | 369 Representation::External(), // api_function_address |
364 }; | 370 }; |
365 data->Initialize(arraysize(registers), registers, representations); | 371 data->Initialize(arraysize(registers), registers, representations); |
366 } | 372 } |
367 } | 373 } |
368 } // namespace v8::internal | 374 } // namespace v8::internal |
369 | 375 |
370 #endif // V8_TARGET_ARCH_IA32 | 376 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |