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

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

Issue 2125933002: PPC: [fullcode][mips][mips64][ppc][s390] Avoid trashing of a home object when doing a keyed store t… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_PPC 5 #if V8_TARGET_ARCH_PPC
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 break; 1658 break;
1659 case KEYED_SUPER_PROPERTY: { 1659 case KEYED_SUPER_PROPERTY: {
1660 VisitForStackValue( 1660 VisitForStackValue(
1661 property->obj()->AsSuperPropertyReference()->this_var()); 1661 property->obj()->AsSuperPropertyReference()->this_var());
1662 VisitForStackValue( 1662 VisitForStackValue(
1663 property->obj()->AsSuperPropertyReference()->home_object()); 1663 property->obj()->AsSuperPropertyReference()->home_object());
1664 VisitForAccumulatorValue(property->key()); 1664 VisitForAccumulatorValue(property->key());
1665 PushOperand(result_register()); 1665 PushOperand(result_register());
1666 if (expr->is_compound()) { 1666 if (expr->is_compound()) {
1667 const Register scratch1 = r5; 1667 const Register scratch1 = r5;
1668 const Register scratch = r4; 1668 const Register scratch2 = r4;
1669 __ LoadP(scratch1, MemOperand(sp, 2 * kPointerSize)); 1669 __ LoadP(scratch1, MemOperand(sp, 2 * kPointerSize));
1670 __ LoadP(scratch2, MemOperand(sp, 1 * kPointerSize)); 1670 __ LoadP(scratch2, MemOperand(sp, 1 * kPointerSize));
1671 PushOperands(scratch1, scratch2, result_register()); 1671 PushOperands(scratch1, scratch2, result_register());
1672 } 1672 }
1673 break; 1673 break;
1674 } 1674 }
1675 case KEYED_PROPERTY: 1675 case KEYED_PROPERTY:
1676 if (expr->is_compound()) { 1676 if (expr->is_compound()) {
1677 VisitForStackValue(property->obj()); 1677 VisitForStackValue(property->obj());
1678 VisitForStackValue(property->key()); 1678 VisitForStackValue(property->key());
(...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after
3760 3760
3761 DCHECK(Assembler::IsCrSet(Assembler::instr_at(cmp_address))); 3761 DCHECK(Assembler::IsCrSet(Assembler::instr_at(cmp_address)));
3762 3762
3763 DCHECK(interrupt_address == 3763 DCHECK(interrupt_address ==
3764 isolate->builtins()->OnStackReplacement()->entry()); 3764 isolate->builtins()->OnStackReplacement()->entry());
3765 return ON_STACK_REPLACEMENT; 3765 return ON_STACK_REPLACEMENT;
3766 } 3766 }
3767 } // namespace internal 3767 } // namespace internal
3768 } // namespace v8 3768 } // namespace v8
3769 #endif // V8_TARGET_ARCH_PPC 3769 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698