OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |