Home
last modified time | relevance | path

Searched refs:bound_target_function (Results 1 – 20 of 20) sorted by relevance

/third_party/node/deps/v8/src/objects/
Djs-function.cc311 while (function->bound_target_function().IsJSBoundFunction()) { in GetName()
315 function = handle(JSBoundFunction::cast(function->bound_target_function()), in GetName()
318 if (function->bound_target_function().IsJSWrappedFunction()) { in GetName()
320 JSWrappedFunction::cast(function->bound_target_function()), isolate); in GetName()
326 if (function->bound_target_function().IsJSFunction()) { in GetName()
328 JSFunction::cast(function->bound_target_function()), isolate); in GetName()
340 while (function->bound_target_function().IsJSBoundFunction()) { in GetLength()
341 function = handle(JSBoundFunction::cast(function->bound_target_function()), in GetLength()
353 if (function->bound_target_function().IsJSWrappedFunction()) { in GetLength()
355 JSWrappedFunction::cast(function->bound_target_function()), isolate); in GetLength()
[all …]
Djs-function.tq12 bound_target_function: Callable;
Djs-objects.cc685 current = function.bound_target_function(); in GetFunctionRealm()
706 Handle<JSBoundFunction>::cast(receiver)->bound_target_function(), in GetContextForMicrotask()
2745 bound_function.bound_target_function().ptr())); in JSObjectShortPrint()
Dobjects.cc929 Handle<JSBoundFunction>::cast(callable)->bound_target_function(), in OrdinaryHasInstance()
/third_party/node/deps/v8/src/builtins/
Dfunction.tq96 bound_target_function: fn,
Dic-callable.tq38 UnsafeCast<JSBoundFunction>(unwrappedTarget).bound_target_function;
Dpromise-misc.tq396 foundExecutor = b.bound_target_function;
Dpromise-abstract-operations.tq56 iter = b.bound_target_function;
/third_party/node/deps/v8/src/compiler/
Djs-call-reducer.cc4387 node, jsgraph()->Constant(function.bound_target_function()), in ReduceJSCall()
4437 Node* bound_target_function = NodeProperties::GetValueInput(target, 0); in ReduceJSCall() local
4443 NodeProperties::ReplaceValueInput(node, bound_target_function, in ReduceJSCall()
5157 JSReceiverRef bound_target_function = function.bound_target_function(); in ReduceJSConstruct() local
5176 jsgraph()->Constant(bound_target_function)); in ReduceJSConstruct()
5182 jsgraph()->Constant(bound_target_function)); in ReduceJSConstruct()
5189 jsgraph()->Constant(bound_target_function), in ReduceJSConstruct()
5215 Node* bound_target_function = NodeProperties::GetValueInput(target, 0); in ReduceJSConstruct() local
5220 node->ReplaceInput(n.TargetIndex(), bound_target_function); in ReduceJSConstruct()
5225 node->ReplaceInput(n.NewTargetIndex(), bound_target_function); in ReduceJSConstruct()
[all …]
Dheap-refs.h441 JSReceiverRef bound_target_function() const;
Dheap-refs.cc1442 JSReceiverRef JSBoundFunctionRef::bound_target_function() const { in bound_target_function() function in v8::internal::compiler::JSBoundFunctionRef
1444 return MakeRefAssumeMemoryFence(broker(), object()->bound_target_function()); in bound_target_function()
Djs-create-lowering.cc887 Node* bound_target_function = NodeProperties::GetValueInput(node, 0); in ReduceJSCreateBoundFunction() local
916 bound_target_function); in ReduceJSCreateBoundFunction()
Dwasm-compiler.cc7841 !bound_target->bound_target_function().IsJSBoundFunction()) { in ResolveWasmImportCall()
7842 Handle<JSReceiver> bound_target_function = handle( in ResolveWasmImportCall() local
7843 bound_target->bound_target_function(), callable->GetIsolate()); in ResolveWasmImportCall()
7844 if (bound_target_function->IsJSFunction()) { in ResolveWasmImportCall()
7845 target = Handle<JSFunction>::cast(bound_target_function); in ResolveWasmImportCall()
Djs-native-context-specialization.cc626 node, jsgraph()->Constant(function.bound_target_function()), in ReduceJSOrdinaryHasInstance()
/third_party/node/deps/v8/src/runtime/
Druntime-debug.cc222 handle(function->bound_target_function(), isolate)); in GetInternalProperties()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc869 CHECK_EQ(IsConstructor(), bound_target_function().IsConstructor()); in USE_TORQUE_VERIFIER()
Dobjects-printer.cc1520 os << "\n - bound_target_function: " << Brief(bound_target_function()); in JSBoundFunctionPrint()
/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc1162 js_fun.bound_target_function(), in ExtractJSObjectReferences()
/third_party/node/deps/v8/src/api/
Dapi.cc5381 auto bound_target_function = i::handle( in GetBoundFunction() local
5382 bound_function->bound_target_function(), bound_function->GetIsolate()); in GetBoundFunction()
5383 return Utils::CallableToLocal(bound_target_function); in GetBoundFunction()
/third_party/node/deps/v8/src/d8/
Dd8.cc2114 auto bound_target = bound_function->bound_target_function(); in TestVerifySourcePositions()