Lines Matching defs:new_target
1647 // allocation_site parameter value and sets new_target if necessary.
1650 auto new_target = Parameter<Object>(Descriptor::kNewTarget);
1653 // If new_target is undefined, then this is the 'Call' case, so set new_target
1655 new_target =
1656 SelectConstant<Object>(IsUndefined(new_target), function, new_target);
1660 TailCallBuiltin(Builtin::kArrayConstructorImpl, context, function, new_target,
1816 auto new_target = Parameter<Object>(Descriptor::kNewTarget);
1834 GotoIf(TaggedNotEqual(target, new_target), &runtime);
1850 GenerateArrayNArgumentsConstructor(context, target, new_target, argc,
1945 TNode<Context> context, TNode<JSFunction> target, TNode<Object> new_target,
1954 // +2 for new_target and maybe_allocation_site.
1957 TailCallRuntime(Runtime::kNewArray, argc, context, new_target,