Lines Matching refs:spread
313 TNode<Object> spread, TNode<Int32T> args_count, TNode<Context> context) { in CallOrConstructWithSpread() argument
321 GotoIf(TaggedIsSmi(spread), &if_generic); in CallOrConstructWithSpread()
322 TNode<Map> spread_map = LoadMap(CAST(spread)); in CallOrConstructWithSpread()
324 TNode<JSArray> spread_array = CAST(spread); in CallOrConstructWithSpread()
363 GotoIf(IsNullOrUndefined(spread), &if_iterator_is_null_or_undefined); in CallOrConstructWithSpread()
366 GetProperty(context, spread, IteratorSymbolConstant()); in CallOrConstructWithSpread()
370 spread, iterator_fn)); in CallOrConstructWithSpread()
391 spread); in CallOrConstructWithSpread()
448 auto spread = Parameter<Object>(Descriptor::kSpread); in TF_BUILTIN() local
451 CallOrConstructWithSpread(target, new_target, spread, args_count, context); in TF_BUILTIN()
457 auto spread = Parameter<Object>(Descriptor::kSpread); in TF_BUILTIN() local
465 CallOrConstructWithSpread(target, new_target, spread, args_count, context); in TF_BUILTIN()