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

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

Issue 1405503002: VectorICs: use a vector slot to aid in array literal processing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix mips issues. Created 5 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/code-factory.h" 7 #include "src/code-factory.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/debug/debug.h" 10 #include "src/debug/debug.h"
(...skipping 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1746 // is already set in the cloned array. 1746 // is already set in the cloned array.
1747 if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue; 1747 if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue;
1748 1748
1749 if (!result_saved) { 1749 if (!result_saved) {
1750 __ Push(rax); // array literal 1750 __ Push(rax); // array literal
1751 __ Push(Smi::FromInt(expr->literal_index())); 1751 __ Push(Smi::FromInt(expr->literal_index()));
1752 result_saved = true; 1752 result_saved = true;
1753 } 1753 }
1754 VisitForAccumulatorValue(subexpr); 1754 VisitForAccumulatorValue(subexpr);
1755 1755
1756 if (has_constant_fast_elements) { 1756 if (FLAG_vector_stores) {
1757 __ Move(StoreDescriptor::NameRegister(), Smi::FromInt(array_index));
1758 __ movp(StoreDescriptor::ReceiverRegister(), Operand(rsp, kPointerSize));
1759 EmitLoadStoreICSlot(expr->LiteralFeedbackSlot());
1760 Handle<Code> ic =
1761 CodeFactory::KeyedStoreIC(isolate(), language_mode()).code();
1762 CallIC(ic);
1763 } else if (has_constant_fast_elements) {
1757 // Fast-case array literal with ElementsKind of FAST_*_ELEMENTS, they 1764 // Fast-case array literal with ElementsKind of FAST_*_ELEMENTS, they
1758 // cannot transition and don't need to call the runtime stub. 1765 // cannot transition and don't need to call the runtime stub.
1759 int offset = FixedArray::kHeaderSize + (array_index * kPointerSize); 1766 int offset = FixedArray::kHeaderSize + (array_index * kPointerSize);
1760 __ movp(rbx, Operand(rsp, kPointerSize)); // Copy of array literal. 1767 __ movp(rbx, Operand(rsp, kPointerSize)); // Copy of array literal.
1761 __ movp(rbx, FieldOperand(rbx, JSObject::kElementsOffset)); 1768 __ movp(rbx, FieldOperand(rbx, JSObject::kElementsOffset));
1762 // Store the subexpression value in the array's elements. 1769 // Store the subexpression value in the array's elements.
1763 __ movp(FieldOperand(rbx, offset), result_register()); 1770 __ movp(FieldOperand(rbx, offset), result_register());
1764 // Update the write barrier for the array store. 1771 // Update the write barrier for the array store.
1765 __ RecordWriteField(rbx, offset, result_register(), rcx, 1772 __ RecordWriteField(rbx, offset, result_register(), rcx,
1766 kDontSaveFPRegs, 1773 kDontSaveFPRegs,
(...skipping 3400 matching lines...) Expand 10 before | Expand all | Expand 10 after
5167 Assembler::target_address_at(call_target_address, 5174 Assembler::target_address_at(call_target_address,
5168 unoptimized_code)); 5175 unoptimized_code));
5169 return OSR_AFTER_STACK_CHECK; 5176 return OSR_AFTER_STACK_CHECK;
5170 } 5177 }
5171 5178
5172 5179
5173 } // namespace internal 5180 } // namespace internal
5174 } // namespace v8 5181 } // namespace v8
5175 5182
5176 #endif // V8_TARGET_ARCH_X64 5183 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698