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_X87 | 7 #if V8_TARGET_ARCH_X87 |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 }; | 363 }; |
364 Representation representations[] = { | 364 Representation representations[] = { |
365 Representation::Tagged(), // context | 365 Representation::Tagged(), // context |
366 Representation::Tagged(), // callee | 366 Representation::Tagged(), // callee |
367 Representation::Tagged(), // call_data | 367 Representation::Tagged(), // call_data |
368 Representation::Tagged(), // holder | 368 Representation::Tagged(), // holder |
369 Representation::External(), // api_function_address | 369 Representation::External(), // api_function_address |
370 }; | 370 }; |
371 data->Initialize(arraysize(registers), registers, representations); | 371 data->Initialize(arraysize(registers), registers, representations); |
372 } | 372 } |
| 373 |
| 374 |
| 375 void MathRoundVariantDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
| 376 Register registers[] = { |
| 377 esi, // context |
| 378 edi, // math rounding function |
| 379 edx, // vector slot id |
| 380 }; |
| 381 Representation representations[] = { |
| 382 Representation::Tagged(), // |
| 383 Representation::Tagged(), // |
| 384 Representation::Tagged(), // |
| 385 }; |
| 386 data->Initialize(arraysize(registers), registers, representations); |
| 387 } |
373 } | 388 } |
374 } // namespace v8::internal | 389 } // namespace v8::internal |
375 | 390 |
376 #endif // V8_TARGET_ARCH_X87 | 391 #endif // V8_TARGET_ARCH_X87 |
OLD | NEW |