• Home
  • Raw
  • Download

Lines Matching refs:new_target

40   SloppyTNode<Object> new_target = CAST(Parameter(Descriptor::kNewTarget));  in TF_BUILTIN()  local
43 CallOrConstructWithArrayLike(target, new_target, arguments_list, context); in TF_BUILTIN()
48 SloppyTNode<Object> new_target = CAST(Parameter(Descriptor::kNewTarget)); in TF_BUILTIN() local
53 CallOrConstructWithSpread(target, new_target, spread, args_count, context); in TF_BUILTIN()
151 Node* new_target = Parameter(Descriptor::kNewTarget); in TF_BUILTIN() local
155 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime); in TF_BUILTIN()
159 TailCallRuntime(Runtime::kNewObject, context, target, new_target); in TF_BUILTIN()
164 Node* new_target) { in EmitFastNewObject() argument
168 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime); in EmitFastNewObject()
173 var_obj.Bind(CallRuntime(Runtime::kNewObject, context, target, new_target)); in EmitFastNewObject()
182 Node* new_target, in EmitFastNewObject() argument
185 CSA_ASSERT(this, IsJSReceiver(new_target)); in EmitFastNewObject()
189 GotoIf(HasInstanceType(new_target, JS_FUNCTION_TYPE), &fast); in EmitFastNewObject()
196 LoadObjectField(new_target, JSFunction::kPrototypeOrInitialMapOffset); in EmitFastNewObject()
638 Node* new_target = Parameter(Descriptor::kJSNewTarget); in TF_BUILTIN() local
643 GotoIf(IsUndefined(new_target), &if_notsubclass); in TF_BUILTIN()
645 Branch(WordEqual(new_target, target), &if_notsubclass, &if_subclass); in TF_BUILTIN()
650 CallBuiltin(Builtins::kFastNewObject, context, target, new_target); in TF_BUILTIN()
708 Node* new_target = Parameter(Descriptor::kJSNewTarget); in TF_BUILTIN() local
710 Branch(IsUndefined(new_target), &return_n, &constructnumber); in TF_BUILTIN()
727 CallBuiltin(Builtins::kFastNewObject, context, target, new_target); in TF_BUILTIN()
747 TNode<Object> new_target = CAST(Parameter(Descriptor::kJSNewTarget)); in TF_BUILTIN() local
758 GotoIfNot(IsUndefined(new_target), &if_tostring); in TF_BUILTIN()
781 Branch(IsUndefined(new_target), &return_s, &constructstring); in TF_BUILTIN()
794 CallBuiltin(Builtins::kFastNewObject, context, target, new_target); in TF_BUILTIN()