Home | History | Annotate | Download | only in builtins

Lines Matching defs:new_target

185   Node* new_target = Parameter(Descriptor::kNewTarget);
189 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime);
193 TailCallRuntime(Runtime::kNewObject, context, target, new_target);
198 Node* new_target) {
202 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime);
207 var_obj.Bind(CallRuntime(Runtime::kNewObject, context, target, new_target));
215 Node* context, Node* target, Node* new_target,
218 CSA_ASSERT(this, IsJSReceiver(new_target));
222 GotoIf(HasInstanceType(new_target, JS_FUNCTION_TYPE), &fast);
229 LoadObjectField(new_target, JSFunction::kPrototypeOrInitialMapOffset);