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

Side by Side Diff: src/crankshaft/x64/lithium-codegen-x64.cc

Issue 2465253011: Fastpath some spread-call desugaring. (Closed)
Patch Set: Handles double arrays too Created 4 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
« no previous file with comments | « src/crankshaft/s390/lithium-codegen-s390.cc ('k') | src/crankshaft/x87/lithium-codegen-x87.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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/crankshaft/x64/lithium-codegen-x64.h" 7 #include "src/crankshaft/x64/lithium-codegen-x64.h"
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 2804 matching lines...) Expand 10 before | Expand all | Expand 10 after
2815 __ CompareRoot(result, Heap::kTheHoleValueRootIndex); 2815 __ CompareRoot(result, Heap::kTheHoleValueRootIndex);
2816 DeoptimizeIf(equal, instr, DeoptimizeReason::kHole); 2816 DeoptimizeIf(equal, instr, DeoptimizeReason::kHole);
2817 } 2817 }
2818 } else if (hinstr->hole_mode() == CONVERT_HOLE_TO_UNDEFINED) { 2818 } else if (hinstr->hole_mode() == CONVERT_HOLE_TO_UNDEFINED) {
2819 DCHECK(hinstr->elements_kind() == FAST_HOLEY_ELEMENTS); 2819 DCHECK(hinstr->elements_kind() == FAST_HOLEY_ELEMENTS);
2820 Label done; 2820 Label done;
2821 __ CompareRoot(result, Heap::kTheHoleValueRootIndex); 2821 __ CompareRoot(result, Heap::kTheHoleValueRootIndex);
2822 __ j(not_equal, &done); 2822 __ j(not_equal, &done);
2823 if (info()->IsStub()) { 2823 if (info()->IsStub()) {
2824 // A stub can safely convert the hole to undefined only if the array 2824 // A stub can safely convert the hole to undefined only if the array
2825 // protector cell contains (Smi) Isolate::kArrayProtectorValid. Otherwise 2825 // protector cell contains (Smi) Isolate::kProtectorValid. Otherwise
2826 // it needs to bail out. 2826 // it needs to bail out.
2827 __ LoadRoot(result, Heap::kArrayProtectorRootIndex); 2827 __ LoadRoot(result, Heap::kArrayProtectorRootIndex);
2828 __ Cmp(FieldOperand(result, Cell::kValueOffset), 2828 __ Cmp(FieldOperand(result, Cell::kValueOffset),
2829 Smi::FromInt(Isolate::kArrayProtectorValid)); 2829 Smi::FromInt(Isolate::kProtectorValid));
2830 DeoptimizeIf(not_equal, instr, DeoptimizeReason::kHole); 2830 DeoptimizeIf(not_equal, instr, DeoptimizeReason::kHole);
2831 } 2831 }
2832 __ Move(result, isolate()->factory()->undefined_value()); 2832 __ Move(result, isolate()->factory()->undefined_value());
2833 __ bind(&done); 2833 __ bind(&done);
2834 } 2834 }
2835 } 2835 }
2836 2836
2837 2837
2838 void LCodeGen::DoLoadKeyed(LLoadKeyed* instr) { 2838 void LCodeGen::DoLoadKeyed(LLoadKeyed* instr) {
2839 if (instr->is_fixed_typed_array()) { 2839 if (instr->is_fixed_typed_array()) {
(...skipping 2589 matching lines...) Expand 10 before | Expand all | Expand 10 after
5429 __ bind(deferred->exit()); 5429 __ bind(deferred->exit());
5430 __ bind(&done); 5430 __ bind(&done);
5431 } 5431 }
5432 5432
5433 #undef __ 5433 #undef __
5434 5434
5435 } // namespace internal 5435 } // namespace internal
5436 } // namespace v8 5436 } // namespace v8
5437 5437
5438 #endif // V8_TARGET_ARCH_X64 5438 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/crankshaft/s390/lithium-codegen-s390.cc ('k') | src/crankshaft/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698