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

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

Issue 22935005: Refine CountOperation of FullCodeGen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Tweak SmiAddConstant for X64 Created 7 years, 1 month 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
« no previous file with comments | « no previous file | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4387 matching lines...) Expand 10 before | Expand all | Expand 10 after
4398 } 4398 }
4399 4399
4400 // We need a second deoptimization point after loading the value 4400 // We need a second deoptimization point after loading the value
4401 // in case evaluating the property load my have a side effect. 4401 // in case evaluating the property load my have a side effect.
4402 if (assign_type == VARIABLE) { 4402 if (assign_type == VARIABLE) {
4403 PrepareForBailout(expr->expression(), TOS_REG); 4403 PrepareForBailout(expr->expression(), TOS_REG);
4404 } else { 4404 } else {
4405 PrepareForBailoutForId(prop->LoadId(), TOS_REG); 4405 PrepareForBailoutForId(prop->LoadId(), TOS_REG);
4406 } 4406 }
4407 4407
4408 // Call ToNumber only if operand is not a smi. 4408 // Inline smi case if we are in a loop.
4409 Label no_conversion; 4409 Label stub_call, done;
4410 JumpPatchSite patch_site(masm_);
4411
4412 int count_value = expr->op() == Token::INC ? 1 : -1;
4410 if (ShouldInlineSmiCase(expr->op())) { 4413 if (ShouldInlineSmiCase(expr->op())) {
4411 __ JumpIfSmi(r0, &no_conversion); 4414 Label slow;
4415 patch_site.EmitJumpIfNotSmi(r0, &slow);
4416
4417 // Save result for postfix expressions.
4418 if (expr->is_postfix()) {
4419 if (!context()->IsEffect()) {
4420 // Save the result on the stack. If we have a named or keyed property
4421 // we store the result under the receiver that is currently on top
4422 // of the stack.
4423 switch (assign_type) {
4424 case VARIABLE:
4425 __ push(r0);
4426 break;
4427 case NAMED_PROPERTY:
4428 __ str(r0, MemOperand(sp, kPointerSize));
4429 break;
4430 case KEYED_PROPERTY:
4431 __ str(r0, MemOperand(sp, 2 * kPointerSize));
4432 break;
4433 }
4434 }
4435 }
4436
4437 __ add(r0, r0, Operand(Smi::FromInt(count_value)), SetCC);
4438 __ b(vc, &done);
4439 // Call stub. Undo operation first.
4440 __ sub(r0, r0, Operand(Smi::FromInt(count_value)));
4441 __ jmp(&stub_call);
4442 __ bind(&slow);
4412 } 4443 }
4413 ToNumberStub convert_stub; 4444 ToNumberStub convert_stub;
4414 __ CallStub(&convert_stub); 4445 __ CallStub(&convert_stub);
4415 __ bind(&no_conversion);
4416 4446
4417 // Save result for postfix expressions. 4447 // Save result for postfix expressions.
4418 if (expr->is_postfix()) { 4448 if (expr->is_postfix()) {
4419 if (!context()->IsEffect()) { 4449 if (!context()->IsEffect()) {
4420 // Save the result on the stack. If we have a named or keyed property 4450 // Save the result on the stack. If we have a named or keyed property
4421 // we store the result under the receiver that is currently on top 4451 // we store the result under the receiver that is currently on top
4422 // of the stack. 4452 // of the stack.
4423 switch (assign_type) { 4453 switch (assign_type) {
4424 case VARIABLE: 4454 case VARIABLE:
4425 __ push(r0); 4455 __ push(r0);
4426 break; 4456 break;
4427 case NAMED_PROPERTY: 4457 case NAMED_PROPERTY:
4428 __ str(r0, MemOperand(sp, kPointerSize)); 4458 __ str(r0, MemOperand(sp, kPointerSize));
4429 break; 4459 break;
4430 case KEYED_PROPERTY: 4460 case KEYED_PROPERTY:
4431 __ str(r0, MemOperand(sp, 2 * kPointerSize)); 4461 __ str(r0, MemOperand(sp, 2 * kPointerSize));
4432 break; 4462 break;
4433 } 4463 }
4434 } 4464 }
4435 } 4465 }
4436 4466
4437 4467
4438 // Inline smi case if we are in a loop. 4468 __ bind(&stub_call);
4439 Label stub_call, done;
4440 JumpPatchSite patch_site(masm_);
4441
4442 int count_value = expr->op() == Token::INC ? 1 : -1;
4443 if (ShouldInlineSmiCase(expr->op())) {
4444 __ add(r0, r0, Operand(Smi::FromInt(count_value)), SetCC);
4445 __ b(vs, &stub_call);
4446 // We could eliminate this smi check if we split the code at
4447 // the first smi check before calling ToNumber.
4448 patch_site.EmitJumpIfSmi(r0, &done);
4449
4450 __ bind(&stub_call);
4451 // Call stub. Undo operation first.
4452 __ sub(r0, r0, Operand(Smi::FromInt(count_value)));
4453 }
4454 __ mov(r1, r0); 4469 __ mov(r1, r0);
4455 __ mov(r0, Operand(Smi::FromInt(count_value))); 4470 __ mov(r0, Operand(Smi::FromInt(count_value)));
4456 4471
4457 // Record position before stub call. 4472 // Record position before stub call.
4458 SetSourcePosition(expr->position()); 4473 SetSourcePosition(expr->position());
4459 4474
4460 BinaryOpStub stub(Token::ADD, NO_OVERWRITE); 4475 BinaryOpStub stub(Token::ADD, NO_OVERWRITE);
4461 CallIC(stub.GetCode(isolate()), 4476 CallIC(stub.GetCode(isolate()),
4462 RelocInfo::CODE_TARGET, 4477 RelocInfo::CODE_TARGET,
4463 expr->CountBinOpFeedbackId()); 4478 expr->CountBinOpFeedbackId());
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
4971 ASSERT(Memory::uint32_at(interrupt_address_pointer) == 4986 ASSERT(Memory::uint32_at(interrupt_address_pointer) ==
4972 reinterpret_cast<uint32_t>( 4987 reinterpret_cast<uint32_t>(
4973 isolate->builtins()->OsrAfterStackCheck()->entry())); 4988 isolate->builtins()->OsrAfterStackCheck()->entry()));
4974 return OSR_AFTER_STACK_CHECK; 4989 return OSR_AFTER_STACK_CHECK;
4975 } 4990 }
4976 4991
4977 4992
4978 } } // namespace v8::internal 4993 } } // namespace v8::internal
4979 4994
4980 #endif // V8_TARGET_ARCH_ARM 4995 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698