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

Side by Side Diff: src/ia32/full-codegen-ia32.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 4384 matching lines...) Expand 10 before | Expand all | Expand 10 after
4395 } 4395 }
4396 4396
4397 // We need a second deoptimization point after loading the value 4397 // We need a second deoptimization point after loading the value
4398 // in case evaluating the property load my have a side effect. 4398 // in case evaluating the property load my have a side effect.
4399 if (assign_type == VARIABLE) { 4399 if (assign_type == VARIABLE) {
4400 PrepareForBailout(expr->expression(), TOS_REG); 4400 PrepareForBailout(expr->expression(), TOS_REG);
4401 } else { 4401 } else {
4402 PrepareForBailoutForId(prop->LoadId(), TOS_REG); 4402 PrepareForBailoutForId(prop->LoadId(), TOS_REG);
4403 } 4403 }
4404 4404
4405 // Call ToNumber only if operand is not a smi. 4405 // Inline smi case if we are in a loop.
4406 Label no_conversion; 4406 Label done, stub_call;
4407 JumpPatchSite patch_site(masm_);
4407 if (ShouldInlineSmiCase(expr->op())) { 4408 if (ShouldInlineSmiCase(expr->op())) {
4408 __ JumpIfSmi(eax, &no_conversion, Label::kNear); 4409 Label slow;
4410 patch_site.EmitJumpIfNotSmi(eax, &slow, Label::kNear);
4411
4412 // Save result for postfix expressions.
4413 if (expr->is_postfix()) {
4414 if (!context()->IsEffect()) {
4415 // Save the result on the stack. If we have a named or keyed property
4416 // we store the result under the receiver that is currently on top
4417 // of the stack.
4418 switch (assign_type) {
4419 case VARIABLE:
4420 __ push(eax);
4421 break;
4422 case NAMED_PROPERTY:
4423 __ mov(Operand(esp, kPointerSize), eax);
4424 break;
4425 case KEYED_PROPERTY:
4426 __ mov(Operand(esp, 2 * kPointerSize), eax);
4427 break;
4428 }
4429 }
4430 }
4431
4432 if (expr->op() == Token::INC) {
4433 __ add(eax, Immediate(Smi::FromInt(1)));
4434 } else {
4435 __ sub(eax, Immediate(Smi::FromInt(1)));
4436 }
4437 __ j(no_overflow, &done, Label::kNear);
4438 // Call stub. Undo operation first.
4439 if (expr->op() == Token::INC) {
4440 __ sub(eax, Immediate(Smi::FromInt(1)));
4441 } else {
4442 __ add(eax, Immediate(Smi::FromInt(1)));
4443 }
4444 __ jmp(&stub_call, Label::kNear);
4445 __ bind(&slow);
4409 } 4446 }
4410 ToNumberStub convert_stub; 4447 ToNumberStub convert_stub;
4411 __ CallStub(&convert_stub); 4448 __ CallStub(&convert_stub);
4412 __ bind(&no_conversion);
4413 4449
4414 // Save result for postfix expressions. 4450 // Save result for postfix expressions.
4415 if (expr->is_postfix()) { 4451 if (expr->is_postfix()) {
4416 if (!context()->IsEffect()) { 4452 if (!context()->IsEffect()) {
4417 // Save the result on the stack. If we have a named or keyed property 4453 // Save the result on the stack. If we have a named or keyed property
4418 // we store the result under the receiver that is currently on top 4454 // we store the result under the receiver that is currently on top
4419 // of the stack. 4455 // of the stack.
4420 switch (assign_type) { 4456 switch (assign_type) {
4421 case VARIABLE: 4457 case VARIABLE:
4422 __ push(eax); 4458 __ push(eax);
4423 break; 4459 break;
4424 case NAMED_PROPERTY: 4460 case NAMED_PROPERTY:
4425 __ mov(Operand(esp, kPointerSize), eax); 4461 __ mov(Operand(esp, kPointerSize), eax);
4426 break; 4462 break;
4427 case KEYED_PROPERTY: 4463 case KEYED_PROPERTY:
4428 __ mov(Operand(esp, 2 * kPointerSize), eax); 4464 __ mov(Operand(esp, 2 * kPointerSize), eax);
4429 break; 4465 break;
4430 } 4466 }
4431 } 4467 }
4432 } 4468 }
4433 4469
4434 // Inline smi case if we are in a loop.
4435 Label done, stub_call;
4436 JumpPatchSite patch_site(masm_);
4437
4438 if (ShouldInlineSmiCase(expr->op())) {
4439 if (expr->op() == Token::INC) {
4440 __ add(eax, Immediate(Smi::FromInt(1)));
4441 } else {
4442 __ sub(eax, Immediate(Smi::FromInt(1)));
4443 }
4444 __ j(overflow, &stub_call, Label::kNear);
4445 // We could eliminate this smi check if we split the code at
4446 // the first smi check before calling ToNumber.
4447 patch_site.EmitJumpIfSmi(eax, &done, Label::kNear);
4448
4449 __ bind(&stub_call);
4450 // Call stub. Undo operation first.
4451 if (expr->op() == Token::INC) {
4452 __ sub(eax, Immediate(Smi::FromInt(1)));
4453 } else {
4454 __ add(eax, Immediate(Smi::FromInt(1)));
4455 }
4456 }
4457
4458 // Record position before stub call. 4470 // Record position before stub call.
4459 SetSourcePosition(expr->position()); 4471 SetSourcePosition(expr->position());
4460 4472
4461 // Call stub for +1/-1. 4473 // Call stub for +1/-1.
4474 __ bind(&stub_call);
4462 __ mov(edx, eax); 4475 __ mov(edx, eax);
4463 __ mov(eax, Immediate(Smi::FromInt(1))); 4476 __ mov(eax, Immediate(Smi::FromInt(1)));
4464 BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE); 4477 BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE);
4465 CallIC(stub.GetCode(isolate()), 4478 CallIC(stub.GetCode(isolate()),
4466 RelocInfo::CODE_TARGET, 4479 RelocInfo::CODE_TARGET,
4467 expr->CountBinOpFeedbackId()); 4480 expr->CountBinOpFeedbackId());
4468 patch_site.EmitPatchInfo(); 4481 patch_site.EmitPatchInfo();
4469 __ bind(&done); 4482 __ bind(&done);
4470 4483
4471 // Store the value returned in eax. 4484 // Store the value returned in eax.
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
4960 4973
4961 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 4974 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
4962 Assembler::target_address_at(call_target_address)); 4975 Assembler::target_address_at(call_target_address));
4963 return OSR_AFTER_STACK_CHECK; 4976 return OSR_AFTER_STACK_CHECK;
4964 } 4977 }
4965 4978
4966 4979
4967 } } // namespace v8::internal 4980 } } // namespace v8::internal
4968 4981
4969 #endif // V8_TARGET_ARCH_IA32 4982 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698