Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(756)

Side by Side Diff: src/ppc/interface-descriptors-ppc.cc

Issue 1457313002: [turbofan] Pass new.target to arguments adaptor trampoline. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mips64/interface-descriptors-mips64.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/mips64/interface-descriptors-mips64.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698