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

Side by Side Diff: src/mips64/interface-descriptors-mips64.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/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.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 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_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
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
335 a0, // receiver 335 a0, // 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 a1, // JSFunction 344 a1, // JSFunction
345 a3, // the new target
345 a0, // actual number of arguments 346 a0, // actual number of arguments
346 a2, // expected number of arguments 347 a2, // 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
425 a2, // address of first argument (argv) 426 a2, // address of first argument (argv)
426 a1 // the runtime function to call 427 a1 // 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_MIPS64 435 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698