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

Unified Diff: src/interface-descriptors.cc

Issue 1906453002: Revert of Change calling convention of CallApiGetterStub to accept the AccessorInfo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/interface-descriptors.h ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interface-descriptors.cc
diff --git a/src/interface-descriptors.cc b/src/interface-descriptors.cc
index c8b313d649e0d70033a928a30ca381a062104635..9ee4269d3e711bd8ef775603a024c9237f29cb38 100644
--- a/src/interface-descriptors.cc
+++ b/src/interface-descriptors.cc
@@ -301,16 +301,22 @@
data->InitializePlatformSpecific(arraysize(registers), registers);
}
-const Register ApiGetterDescriptor::ReceiverRegister() {
- return LoadDescriptor::ReceiverRegister();
-}
+FunctionType* ApiGetterDescriptor::BuildCallInterfaceDescriptorFunctionType(
+ Isolate* isolate, int paramater_count) {
+ Zone* zone = isolate->interface_descriptor_zone();
+ FunctionType* function =
+ Type::Function(AnyTagged(zone), Type::Undefined(), 1, zone)->AsFunction();
+ function->InitParameter(0, ExternalPointer(zone));
+ return function;
+}
+
void ApiGetterDescriptor::InitializePlatformSpecific(
CallInterfaceDescriptorData* data) {
- Register registers[] = {ReceiverRegister(), HolderRegister(),
- CallbackRegister()};
- data->InitializePlatformSpecific(arraysize(registers), registers);
-}
+ Register registers[] = {function_address()};
+ data->InitializePlatformSpecific(arraysize(registers), registers);
+}
+
void ContextOnlyDescriptor::InitializePlatformSpecific(
CallInterfaceDescriptorData* data) {
« no previous file with comments | « src/interface-descriptors.h ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698