Lines Matching refs:target
332 TNode<JSFunction> target = LoadTargetFromFrame();
333 TailCallBuiltin(Builtin::kArrayPop, context, target, UndefinedConstant(),
457 TNode<JSFunction> target = LoadTargetFromFrame();
458 TailCallBuiltin(Builtin::kArrayPush, context, target, UndefinedConstant(),
1397 TNode<Context> context, TNode<JSReceiver> target,
1471 // 2. Set targetIndex to ? FlattenIntoArray(target, element,
1475 CallBuiltin(Builtin::kFlattenIntoArray, context, target, element,
1488 // 2. Set targetIndex to ? FlattenIntoArray(target, element,
1492 CallBuiltin(Builtin::kFlattenIntoArray, context, target, element,
1504 // 2. Perform ? CreateDataPropertyOrThrow(target,
1507 CallRuntime(Runtime::kCreateDataProperty, context, target,
1534 auto target = Parameter<JSReceiver>(Descriptor::kTarget);
1545 FlattenIntoArray(context, target, source, source_length, start, depth));
1551 auto target = Parameter<JSReceiver>(Descriptor::kTarget);
1559 Return(FlattenIntoArray(context, target, source, source_length, start, depth,
1665 const Callable& callable, TNode<Context> context, TNode<JSFunction> target,
1681 // expression stack so that the target builtin can still find them where it
1683 TailCallStub(ArrayNArgumentsConstructorDescriptor{}, code, context, target,
1688 TNode<Context> context, TNode<JSFunction> target, TNode<Int32T> argc,
1695 TailCallArrayConstructorStub(callable, context, target, UndefinedConstant(),
1714 TailCallArrayConstructorStub(callable, context, target, *allocation_site,
1726 TNode<Context> context, TNode<JSFunction> target, TNode<Int32T> argc,
1735 TailCallArrayConstructorStub(callable, context, target, UndefinedConstant(),
1784 TailCallArrayConstructorStub(callable, context, target, *allocation_site,
1796 TNode<Context> context, TNode<JSFunction> target, TNode<Int32T> argc,
1803 CreateArrayDispatchNoArgument(context, target, argc, mode, allocation_site);
1808 CreateArrayDispatchSingleArgument(context, target, argc, mode,
1815 auto target = Parameter<JSFunction>(Descriptor::kTarget);
1823 target, JSFunction::kPrototypeOrInitialMapOffset))));
1831 CAST(LoadObjectField(target, JSFunction::kContextOffset));
1834 GotoIf(TaggedNotEqual(target, new_target), &runtime);
1841 GenerateDispatchToArrayStub(context, target, argc, DONT_OVERRIDE,
1846 GenerateDispatchToArrayStub(context, target, argc, DISABLE_ALLOCATION_SITES);
1850 GenerateArrayNArgumentsConstructor(context, target, new_target, argc,
1945 TNode<Context> context, TNode<JSFunction> target, TNode<Object> new_target,
1947 // Replace incoming JS receiver argument with the target.
1948 // TODO(ishell): Avoid replacing the target on the stack and just add it
1951 args.SetReceiver(target);
1963 auto target = Parameter<JSFunction>(Descriptor::kFunction);
1968 GenerateArrayNArgumentsConstructor(context, target, target, argc,