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

Side by Side Diff: src/x64/full-codegen-x64.cc

Issue 22935005: Refine CountOperation of FullCodeGen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Sven's comment Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 4369 matching lines...) Expand 10 before | Expand all | Expand 10 after
4380 } 4380 }
4381 4381
4382 // We need a second deoptimization point after loading the value 4382 // We need a second deoptimization point after loading the value
4383 // in case evaluating the property load my have a side effect. 4383 // in case evaluating the property load my have a side effect.
4384 if (assign_type == VARIABLE) { 4384 if (assign_type == VARIABLE) {
4385 PrepareForBailout(expr->expression(), TOS_REG); 4385 PrepareForBailout(expr->expression(), TOS_REG);
4386 } else { 4386 } else {
4387 PrepareForBailoutForId(prop->LoadId(), TOS_REG); 4387 PrepareForBailoutForId(prop->LoadId(), TOS_REG);
4388 } 4388 }
4389 4389
4390 // Call ToNumber only if operand is not a smi. 4390 // Inline smi case if we are in a loop.
4391 Label no_conversion; 4391 Label done, stub_call;
4392 JumpPatchSite patch_site(masm_);
4392 if (ShouldInlineSmiCase(expr->op())) { 4393 if (ShouldInlineSmiCase(expr->op())) {
4393 __ JumpIfSmi(rax, &no_conversion, Label::kNear); 4394 Label slow;
4395 patch_site.EmitJumpIfNotSmi(rax, &slow, Label::kNear);
4396
4397 // Save result for postfix expressions.
4398 if (expr->is_postfix()) {
4399 if (!context()->IsEffect()) {
4400 // Save the result on the stack. If we have a named or keyed property
4401 // we store the result under the receiver that is currently on top
4402 // of the stack.
4403 switch (assign_type) {
4404 case VARIABLE:
4405 __ push(rax);
4406 break;
4407 case NAMED_PROPERTY:
4408 __ movq(Operand(rsp, kPointerSize), rax);
4409 break;
4410 case KEYED_PROPERTY:
4411 __ movq(Operand(rsp, 2 * kPointerSize), rax);
4412 break;
4413 }
4414 }
4415 }
4416
4417 if (expr->op() == Token::INC) {
4418 __ SmiAddConstant(rax, rax, Smi::FromInt(1));
4419 __ j(no_overflow, &done, Label::kNear);
4420 // Call stub. Undo operation first.
4421 if (expr->op() == Token::INC) {
4422 __ SmiSubConstant(rax, rax, Smi::FromInt(1));
4423 }
4424 } else {
4425 SmiOperationExecutionMode mode(
4426 (1 << NEED_RESERVE_SOURCES) | (1 << BAILOUT_ON_NO_OVERFLOW));
danno 2013/10/14 18:30:45 I think this is clearer as: SmiOperationExecution
haitao.feng 2013/10/16 09:17:01 Done.
4427 __ SmiSubConstant(rax, rax, Smi::FromInt(1), mode, &done, Label::kNear);
4428 }
4429 __ jmp(&stub_call, Label::kNear);
4430 __ bind(&slow);
4394 } 4431 }
4432
4395 ToNumberStub convert_stub; 4433 ToNumberStub convert_stub;
4396 __ CallStub(&convert_stub); 4434 __ CallStub(&convert_stub);
4397 __ bind(&no_conversion);
4398 4435
4399 // Save result for postfix expressions. 4436 // Save result for postfix expressions.
4400 if (expr->is_postfix()) { 4437 if (expr->is_postfix()) {
4401 if (!context()->IsEffect()) { 4438 if (!context()->IsEffect()) {
4402 // Save the result on the stack. If we have a named or keyed property 4439 // Save the result on the stack. If we have a named or keyed property
4403 // we store the result under the receiver that is currently on top 4440 // we store the result under the receiver that is currently on top
4404 // of the stack. 4441 // of the stack.
4405 switch (assign_type) { 4442 switch (assign_type) {
4406 case VARIABLE: 4443 case VARIABLE:
4407 __ push(rax); 4444 __ push(rax);
4408 break; 4445 break;
4409 case NAMED_PROPERTY: 4446 case NAMED_PROPERTY:
4410 __ movq(Operand(rsp, kPointerSize), rax); 4447 __ movq(Operand(rsp, kPointerSize), rax);
4411 break; 4448 break;
4412 case KEYED_PROPERTY: 4449 case KEYED_PROPERTY:
4413 __ movq(Operand(rsp, 2 * kPointerSize), rax); 4450 __ movq(Operand(rsp, 2 * kPointerSize), rax);
4414 break; 4451 break;
4415 } 4452 }
4416 } 4453 }
4417 } 4454 }
4418 4455
4419 // Inline smi case if we are in a loop.
4420 Label done, stub_call;
4421 JumpPatchSite patch_site(masm_);
4422
4423 if (ShouldInlineSmiCase(expr->op())) {
4424 if (expr->op() == Token::INC) {
4425 __ SmiAddConstant(rax, rax, Smi::FromInt(1));
4426 } else {
4427 __ SmiSubConstant(rax, rax, Smi::FromInt(1));
4428 }
4429 __ j(overflow, &stub_call, Label::kNear);
4430 // We could eliminate this smi check if we split the code at
4431 // the first smi check before calling ToNumber.
4432 patch_site.EmitJumpIfSmi(rax, &done, Label::kNear);
4433
4434 __ bind(&stub_call);
4435 // Call stub. Undo operation first.
4436 if (expr->op() == Token::INC) {
4437 __ SmiSubConstant(rax, rax, Smi::FromInt(1));
4438 } else {
4439 __ SmiAddConstant(rax, rax, Smi::FromInt(1));
4440 }
4441 }
4442
4443 // Record position before stub call. 4456 // Record position before stub call.
4444 SetSourcePosition(expr->position()); 4457 SetSourcePosition(expr->position());
4445 4458
4446 // Call stub for +1/-1. 4459 // Call stub for +1/-1.
4460 __ bind(&stub_call);
4447 __ movq(rdx, rax); 4461 __ movq(rdx, rax);
4448 __ Move(rax, Smi::FromInt(1)); 4462 __ Move(rax, Smi::FromInt(1));
4449 BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE); 4463 BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE);
4450 CallIC(stub.GetCode(isolate()), 4464 CallIC(stub.GetCode(isolate()),
4451 RelocInfo::CODE_TARGET, 4465 RelocInfo::CODE_TARGET,
4452 expr->CountBinOpFeedbackId()); 4466 expr->CountBinOpFeedbackId());
4453 patch_site.EmitPatchInfo(); 4467 patch_site.EmitPatchInfo();
4454 __ bind(&done); 4468 __ bind(&done);
4455 4469
4456 // Store the value returned in rax. 4470 // Store the value returned in rax.
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
4947 4961
4948 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 4962 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
4949 Assembler::target_address_at(call_target_address)); 4963 Assembler::target_address_at(call_target_address));
4950 return OSR_AFTER_STACK_CHECK; 4964 return OSR_AFTER_STACK_CHECK;
4951 } 4965 }
4952 4966
4953 4967
4954 } } // namespace v8::internal 4968 } } // namespace v8::internal
4955 4969
4956 #endif // V8_TARGET_ARCH_X64 4970 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698