OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_PPC | 5 #if V8_TARGET_ARCH_PPC |
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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 r3, // receiver | 334 r3, // receiver |
335 }; | 335 }; |
336 data->InitializePlatformSpecific(arraysize(registers), registers); | 336 data->InitializePlatformSpecific(arraysize(registers), registers); |
337 } | 337 } |
338 | 338 |
339 | 339 |
340 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( | 340 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( |
341 CallInterfaceDescriptorData* data) { | 341 CallInterfaceDescriptorData* data) { |
342 Register registers[] = { | 342 Register registers[] = { |
343 r4, // JSFunction | 343 r4, // JSFunction |
| 344 r6, // the new target |
344 r3, // actual number of arguments | 345 r3, // actual number of arguments |
345 r5, // expected number of arguments | 346 r5, // expected number of arguments |
346 }; | 347 }; |
347 data->InitializePlatformSpecific(arraysize(registers), registers); | 348 data->InitializePlatformSpecific(arraysize(registers), registers); |
348 } | 349 } |
349 | 350 |
350 | 351 |
351 void ApiFunctionDescriptor::InitializePlatformSpecific( | 352 void ApiFunctionDescriptor::InitializePlatformSpecific( |
352 CallInterfaceDescriptorData* data) { | 353 CallInterfaceDescriptorData* data) { |
353 Register registers[] = { | 354 Register registers[] = { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 r3, // argument count (argc) | 424 r3, // argument count (argc) |
424 r5, // address of first argument (argv) | 425 r5, // address of first argument (argv) |
425 r4 // the runtime function to call | 426 r4 // the runtime function to call |
426 }; | 427 }; |
427 data->InitializePlatformSpecific(arraysize(registers), registers); | 428 data->InitializePlatformSpecific(arraysize(registers), registers); |
428 } | 429 } |
429 } // namespace internal | 430 } // namespace internal |
430 } // namespace v8 | 431 } // namespace v8 |
431 | 432 |
432 #endif // V8_TARGET_ARCH_PPC | 433 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |