Chromium Code Reviews

Side by Side Diff: src/runtime/runtime-array.cc

Issue 2465253011: Fastpath some spread-call desugaring. (Closed)
Patch Set: Move helper to a runtime function Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 #include "src/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include "src/arguments.h" 7 #include "src/arguments.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/conversions-inl.h" 9 #include "src/conversions-inl.h"
10 #include "src/elements.h" 10 #include "src/elements.h"
(...skipping 610 matching lines...)
621 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, element_k, 621 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, element_k,
622 Object::GetProperty(&it)); 622 Object::GetProperty(&it));
623 if (search_element->StrictEquals(*element_k)) { 623 if (search_element->StrictEquals(*element_k)) {
624 return *index_obj; 624 return *index_obj;
625 } 625 }
626 } 626 }
627 } 627 }
628 return Smi::FromInt(-1); 628 return Smi::FromInt(-1);
629 } 629 }
630 630
631 RUNTIME_FUNCTION(Runtime_SpreadIterablePrepare) {
632 HandleScope scope(isolate);
633 DCHECK_EQ(1, args.length());
634 CONVERT_ARG_HANDLE_CHECKED(Object, spread, 0);
635
636 if (spread->IsJSArray()) {
637 // Check that the spread arg has fast elements
638 Handle<JSArray> spread_array = Handle<JSArray>::cast(spread);
639 ElementsKind array_kind = spread_array->GetElementsKind();
640
641 if (IsFastElementsKind(array_kind)) {
642 // Check that the iterator acts as expected.
643 if (isolate->IsArrayIteratorLookupChainIntact()) {
644 return *spread;
645 }
646 }
647 }
648
649 Handle<JSFunction> spread_iterable_function = isolate->spread_iterable();
650
651 Handle<Object> spreaded;
652 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
653 isolate, spreaded,
654 Execution::Call(isolate, spread_iterable_function,
655 isolate->factory()->undefined_value(), 1, &spread));
656
657 return *spreaded;
658 }
659
631 } // namespace internal 660 } // namespace internal
632 } // namespace v8 661 } // namespace v8
OLDNEW

Powered by Google App Engine