| Index: src/x64/full-codegen-x64.cc
|
| diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
|
| index 277ce061e7d61ea9ed38253489f7d79f970606ab..e4fa4d9bda99aa0b82ce4bc93ed3efcba934cbb5 100644
|
| --- a/src/x64/full-codegen-x64.cc
|
| +++ b/src/x64/full-codegen-x64.cc
|
| @@ -2573,14 +2573,14 @@ void FullCodeGenerator::CallIC(Handle<Code> code,
|
|
|
|
|
| // Code common for calls using the IC.
|
| -void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) {
|
| +void FullCodeGenerator::EmitCallWithIC(Call* expr) {
|
| Expression* callee = expr->expression();
|
| + ZoneList<Expression*>* args = expr->arguments();
|
| + int arg_count = args->length();
|
|
|
| - CallIC::CallType call_type = callee->IsVariableProxy()
|
| - ? CallIC::FUNCTION
|
| - : CallIC::METHOD;
|
| - // Get the target function.
|
| - if (call_type == CallIC::FUNCTION) {
|
| + CallFunctionFlags flags;
|
| + // Get the target function;
|
| + if (callee->IsVariableProxy()) {
|
| { StackValueContext context(this);
|
| EmitVariableLoad(callee->AsVariableProxy());
|
| PrepareForBailout(callee, NO_REGISTERS);
|
| @@ -2588,6 +2588,7 @@ void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) {
|
| // Push undefined as receiver. This is patched in the method prologue if it
|
| // is a sloppy mode method.
|
| __ Push(isolate()->factory()->undefined_value());
|
| + flags = NO_CALL_FUNCTION_FLAGS;
|
| } else {
|
| // Load the function from the receiver.
|
| ASSERT(callee->IsProperty());
|
| @@ -2597,19 +2598,40 @@ void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) {
|
| // Push the target function under the receiver.
|
| __ Push(Operand(rsp, 0));
|
| __ movp(Operand(rsp, kPointerSize), rax);
|
| + flags = CALL_AS_METHOD;
|
| }
|
|
|
| - EmitCall(expr, call_type);
|
| + // Load the arguments.
|
| + { PreservePositionScope scope(masm()->positions_recorder());
|
| + for (int i = 0; i < arg_count; i++) {
|
| + VisitForStackValue(args->at(i));
|
| + }
|
| + }
|
| +
|
| + // Record source position for debugger.
|
| + SetSourcePosition(expr->position());
|
| + CallFunctionStub stub(arg_count, flags);
|
| + __ movp(rdi, Operand(rsp, (arg_count + 1) * kPointerSize));
|
| + __ CallStub(&stub);
|
| +
|
| + RecordJSReturnSite(expr);
|
| +
|
| + // Restore context register.
|
| + __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| +
|
| + context()->DropAndPlug(1, rax);
|
| }
|
|
|
|
|
| // Common code for calls using the IC.
|
| -void FullCodeGenerator::EmitKeyedCallWithLoadIC(Call* expr,
|
| - Expression* key) {
|
| +void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr,
|
| + Expression* key) {
|
| // Load the key.
|
| VisitForAccumulatorValue(key);
|
|
|
| Expression* callee = expr->expression();
|
| + ZoneList<Expression*>* args = expr->arguments();
|
| + int arg_count = args->length();
|
|
|
| // Load the function from the receiver.
|
| ASSERT(callee->IsProperty());
|
| @@ -2621,12 +2643,29 @@ void FullCodeGenerator::EmitKeyedCallWithLoadIC(Call* expr,
|
| __ Push(Operand(rsp, 0));
|
| __ movp(Operand(rsp, kPointerSize), rax);
|
|
|
| - EmitCall(expr, CallIC::METHOD);
|
| + // Load the arguments.
|
| + { PreservePositionScope scope(masm()->positions_recorder());
|
| + for (int i = 0; i < arg_count; i++) {
|
| + VisitForStackValue(args->at(i));
|
| + }
|
| + }
|
| +
|
| + // Record source position for debugger.
|
| + SetSourcePosition(expr->position());
|
| + CallFunctionStub stub(arg_count, CALL_AS_METHOD);
|
| + __ movp(rdi, Operand(rsp, (arg_count + 1) * kPointerSize));
|
| + __ CallStub(&stub);
|
| +
|
| + RecordJSReturnSite(expr);
|
| + // Restore context register.
|
| + __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| +
|
| + context()->DropAndPlug(1, rax);
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitCall(Call* expr, CallIC::CallType call_type) {
|
| - // Load the arguments.
|
| +void FullCodeGenerator::EmitCallWithStub(Call* expr) {
|
| + // Code common for calls using the call stub.
|
| ZoneList<Expression*>* args = expr->arguments();
|
| int arg_count = args->length();
|
| { PreservePositionScope scope(masm()->positions_recorder());
|
| @@ -2634,23 +2673,20 @@ void FullCodeGenerator::EmitCall(Call* expr, CallIC::CallType call_type) {
|
| VisitForStackValue(args->at(i));
|
| }
|
| }
|
| -
|
| - // Record source position of the IC call.
|
| + // Record source position for debugger.
|
| SetSourcePosition(expr->position());
|
| - Handle<Code> ic = CallIC::initialize_stub(
|
| - isolate(), arg_count, call_type);
|
| +
|
| Handle<Object> uninitialized =
|
| TypeFeedbackInfo::UninitializedSentinel(isolate());
|
| StoreFeedbackVectorSlot(expr->CallFeedbackSlot(), uninitialized);
|
| __ Move(rbx, FeedbackVector());
|
| __ Move(rdx, Smi::FromInt(expr->CallFeedbackSlot()));
|
| - __ movp(rdi, Operand(rsp, (arg_count + 1) * kPointerSize));
|
| - // Don't assign a type feedback id to the IC, since type feedback is provided
|
| - // by the vector above.
|
| - CallIC(ic);
|
|
|
| + // Record call targets in unoptimized code.
|
| + CallFunctionStub stub(arg_count, RECORD_CALL_TARGET);
|
| + __ movp(rdi, Operand(rsp, (arg_count + 1) * kPointerSize));
|
| + __ CallStub(&stub);
|
| RecordJSReturnSite(expr);
|
| -
|
| // Restore context register.
|
| __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| // Discard the function left on TOS.
|
| @@ -2727,7 +2763,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| context()->DropAndPlug(1, rax);
|
| } else if (call_type == Call::GLOBAL_CALL) {
|
| - EmitCallWithLoadIC(expr);
|
| + EmitCallWithIC(expr);
|
|
|
| } else if (call_type == Call::LOOKUP_SLOT_CALL) {
|
| // Call to a lookup slot (dynamically introduced variable).
|
| @@ -2764,16 +2800,16 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
|
|
| // The receiver is either the global receiver or an object found by
|
| // LoadContextSlot.
|
| - EmitCall(expr);
|
| + EmitCallWithStub(expr);
|
| } else if (call_type == Call::PROPERTY_CALL) {
|
| Property* property = callee->AsProperty();
|
| { PreservePositionScope scope(masm()->positions_recorder());
|
| VisitForStackValue(property->obj());
|
| }
|
| if (property->key()->IsPropertyName()) {
|
| - EmitCallWithLoadIC(expr);
|
| + EmitCallWithIC(expr);
|
| } else {
|
| - EmitKeyedCallWithLoadIC(expr, property->key());
|
| + EmitKeyedCallWithIC(expr, property->key());
|
| }
|
| } else {
|
| ASSERT(call_type == Call::OTHER_CALL);
|
| @@ -2783,7 +2819,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| }
|
| __ PushRoot(Heap::kUndefinedValueRootIndex);
|
| // Emit function call.
|
| - EmitCall(expr);
|
| + EmitCallWithStub(expr);
|
| }
|
|
|
| #ifdef DEBUG
|
| @@ -2833,7 +2869,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
| __ Move(rbx, FeedbackVector());
|
| __ Move(rdx, Smi::FromInt(expr->CallNewFeedbackSlot()));
|
|
|
| - CallConstructStub stub(RECORD_CONSTRUCTOR_TARGET);
|
| + CallConstructStub stub(RECORD_CALL_TARGET);
|
| __ Call(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL);
|
| PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
|
| context()->Plug(rax);
|
|
|