// Copyright 2017 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_BUILTINS_BUILTINS_ITERATOR_GEN_H_ #define V8_BUILTINS_BUILTINS_ITERATOR_GEN_H_ #include "src/codegen/code-stub-assembler.h" namespace v8 { namespace internal { class GrowableFixedArray; class IteratorBuiltinsAssembler : public CodeStubAssembler { public: explicit IteratorBuiltinsAssembler(compiler::CodeAssemblerState* state) : CodeStubAssembler(state) {} using IteratorRecord = TorqueStructIteratorRecord; // Returns object[Symbol.iterator]. TNode GetIteratorMethod(TNode context, TNode); // https://tc39.github.io/ecma262/#sec-getiterator --- never used for // @@asyncIterator. IteratorRecord GetIterator(TNode context, TNode object); IteratorRecord GetIterator(TNode context, TNode object, TNode method); // https://tc39.github.io/ecma262/#sec-iteratorstep // If the iterator is done, goto {if_done}, otherwise returns an iterator // result. // `fast_iterator_result_map` refers to the map for the JSIteratorResult // object, loaded from the native context. TNode IteratorStep( TNode context, const IteratorRecord& iterator, Label* if_done, base::Optional> fast_iterator_result_map = base::nullopt); TNode IteratorStep( TNode context, const IteratorRecord& iterator, base::Optional> fast_iterator_result_map, Label* if_done) { return IteratorStep(context, iterator, if_done, fast_iterator_result_map); } // https://tc39.github.io/ecma262/#sec-iteratorvalue // Return the `value` field from an iterator. // `fast_iterator_result_map` refers to the map for the JSIteratorResult // object, loaded from the native context. TNode IteratorValue( TNode context, TNode result, base::Optional> fast_iterator_result_map = base::nullopt); void Iterate(TNode context, TNode iterable, std::function)> func, std::initializer_list merged_variables = {}); void Iterate(TNode context, TNode iterable, TNode iterable_fn, std::function)> func, std::initializer_list merged_variables = {}); // #sec-iterabletolist // Build a JSArray by iterating over {iterable} using {iterator_fn}, // following the ECMAscript operation with the same name. TNode IterableToList(TNode context, TNode iterable, TNode iterator_fn); TNode IterableToFixedArray(TNode context, TNode iterable, TNode iterator_fn); void FillFixedArrayFromIterable(TNode context, TNode iterable, TNode iterator_fn, GrowableFixedArray* values); // Currently at https://tc39.github.io/proposal-intl-list-format/ // #sec-createstringlistfromiterable TNode StringListFromIterable(TNode context, TNode iterable); void FastIterableToList(TNode context, TNode iterable, TVariable* var_result, Label* slow); TNode FastIterableToList(TNode context, TNode iterable, Label* slow); }; } // namespace internal } // namespace v8 #endif // V8_BUILTINS_BUILTINS_ITERATOR_GEN_H_