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 #if V8_TARGET_ARCH_X64 | 5 #if V8_TARGET_ARCH_X64 |
6 | 6 |
7 #include "src/interface-descriptors.h" | 7 #include "src/interface-descriptors.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 rdx, // receiver | 335 rdx, // receiver |
336 }; | 336 }; |
337 data->InitializePlatformSpecific(arraysize(registers), registers); | 337 data->InitializePlatformSpecific(arraysize(registers), registers); |
338 } | 338 } |
339 | 339 |
340 | 340 |
341 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( | 341 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( |
342 CallInterfaceDescriptorData* data) { | 342 CallInterfaceDescriptorData* data) { |
343 Register registers[] = { | 343 Register registers[] = { |
344 rdi, // JSFunction | 344 rdi, // JSFunction |
| 345 rdx, // the new target |
345 rax, // actual number of arguments | 346 rax, // actual number of arguments |
346 rbx, // expected number of arguments | 347 rbx, // expected number of arguments |
347 }; | 348 }; |
348 data->InitializePlatformSpecific(arraysize(registers), registers); | 349 data->InitializePlatformSpecific(arraysize(registers), registers); |
349 } | 350 } |
350 | 351 |
351 | 352 |
352 void ApiFunctionDescriptor::InitializePlatformSpecific( | 353 void ApiFunctionDescriptor::InitializePlatformSpecific( |
353 CallInterfaceDescriptorData* data) { | 354 CallInterfaceDescriptorData* data) { |
354 Register registers[] = { | 355 Register registers[] = { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 r15, // address of first argument (argv) | 426 r15, // address of first argument (argv) |
426 rbx // the runtime function to call | 427 rbx // the runtime function to call |
427 }; | 428 }; |
428 data->InitializePlatformSpecific(arraysize(registers), registers); | 429 data->InitializePlatformSpecific(arraysize(registers), registers); |
429 } | 430 } |
430 | 431 |
431 } // namespace internal | 432 } // namespace internal |
432 } // namespace v8 | 433 } // namespace v8 |
433 | 434 |
434 #endif // V8_TARGET_ARCH_X64 | 435 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |