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

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

Issue 2352163004: [stubs] ApiCallbackDescriptor cleanup - make it independent on the number of JS parameters. (Closed)
Patch Set: Created 4 years, 3 months 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/x64/interface-descriptors-x64.cc ('k') | no next file » | 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_X87 5 #if V8_TARGET_ARCH_X87
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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 CallInterfaceDescriptorData* data) { 348 CallInterfaceDescriptorData* data) {
349 Register registers[] = { 349 Register registers[] = {
350 edi, // JSFunction 350 edi, // JSFunction
351 edx, // the new target 351 edx, // the new target
352 eax, // actual number of arguments 352 eax, // actual number of arguments
353 ebx, // expected number of arguments 353 ebx, // expected number of arguments
354 }; 354 };
355 data->InitializePlatformSpecific(arraysize(registers), registers); 355 data->InitializePlatformSpecific(arraysize(registers), registers);
356 } 356 }
357 357
358 void ApiCallbackDescriptorBase::InitializePlatformSpecific( 358 void ApiCallbackDescriptor::InitializePlatformSpecific(
359 CallInterfaceDescriptorData* data) { 359 CallInterfaceDescriptorData* data) {
360 Register registers[] = { 360 Register registers[] = {
361 edi, // callee 361 edi, // callee
362 ebx, // call_data 362 ebx, // call_data
363 ecx, // holder 363 ecx, // holder
364 edx, // api_function_address 364 edx, // api_function_address
365 }; 365 };
366 data->InitializePlatformSpecific(arraysize(registers), registers); 366 data->InitializePlatformSpecific(arraysize(registers), registers);
367 } 367 }
368 368
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 ebx, // the JSGeneratorObject to resume 424 ebx, // the JSGeneratorObject to resume
425 edx // the resume mode (tagged) 425 edx // the resume mode (tagged)
426 }; 426 };
427 data->InitializePlatformSpecific(arraysize(registers), registers); 427 data->InitializePlatformSpecific(arraysize(registers), registers);
428 } 428 }
429 429
430 } // namespace internal 430 } // namespace internal
431 } // namespace v8 431 } // namespace v8
432 432
433 #endif // V8_TARGET_ARCH_X87 433 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « src/x64/interface-descriptors-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698