Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 2f6585641a391e7f430041266614b8c06f8c1c93..ad116d60005fff9e60902c9ba225bcc4f8b88c88 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -350,6 +350,61 @@ void NewStringAddStub::InitializeInterfaceDescriptor( |
} |
+void CallDescriptors::InitializeForIsolate(Isolate* isolate) { |
+ { |
+ CodeStubInterfaceDescriptor* descriptor = |
+ isolate->call_descriptor(Isolate::ArgumentAdaptorCall); |
+ static Register registers[] = { rdi, // JSFunction |
+ rsi, // context |
+ rcx, // call kind |
+ rax, // actual number of arguments |
+ rbx, // expected number of arguments |
+ }; |
+ static Representation representations[] = { |
+ Representation::Tagged(), // JSFunction |
+ Representation::Tagged(), // context |
+ Representation::Smi(), // call kind |
+ Representation::Integer32(), // actual number of arguments |
+ Representation::Integer32(), // expected number of arguments |
+ }; |
+ descriptor->register_param_count_ = 5; |
+ descriptor->register_params_ = registers; |
+ descriptor->param_representations_ = representations; |
+ descriptor->deoptimization_handler_ = NULL; |
+ } |
+ { |
+ CodeStubInterfaceDescriptor* descriptor = |
+ isolate->call_descriptor(Isolate::KeyedCall); |
+ static Register registers[] = { rsi, // context |
+ rcx, // key |
+ }; |
+ static Representation representations[] = { |
+ Representation::Tagged(), // context |
+ Representation::Tagged(), // key |
+ }; |
+ descriptor->register_param_count_ = 2; |
+ descriptor->register_params_ = registers; |
+ descriptor->param_representations_ = representations; |
+ descriptor->deoptimization_handler_ = NULL; |
+ } |
+ { |
+ CodeStubInterfaceDescriptor* descriptor = |
+ isolate->call_descriptor(Isolate::NamedCall); |
+ static Register registers[] = { rsi, // context |
+ rcx, // name |
+ }; |
+ static Representation representations[] = { |
+ Representation::Tagged(), // context |
+ Representation::Tagged(), // name |
+ }; |
+ descriptor->register_param_count_ = 2; |
+ descriptor->register_params_ = registers; |
+ descriptor->param_representations_ = representations; |
+ descriptor->deoptimization_handler_ = NULL; |
+ } |
+} |
+ |
+ |
#define __ ACCESS_MASM(masm) |