Home
last modified time | relevance | path

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

/external/v8/src/objects/
Djs-function.cc180 handle(function->bound_target_function(), function->GetIsolate())); in GetFunctionRealm()
190 while (function->bound_target_function().IsJSBoundFunction()) { in GetName()
194 function = handle(JSBoundFunction::cast(function->bound_target_function()), in GetName()
197 if (function->bound_target_function().IsJSFunction()) { in GetName()
199 JSFunction::cast(function->bound_target_function()), isolate); in GetName()
212 while (function->bound_target_function().IsJSBoundFunction()) { in GetLength()
213 function = handle(JSBoundFunction::cast(function->bound_target_function()), in GetLength()
227 Handle<JSFunction> target(JSFunction::cast(function->bound_target_function()), in GetLength()
Djs-function.tq14 bound_target_function: Callable;
Djs-objects.cc561 Handle<JSBoundFunction>::cast(receiver)->bound_target_function(), in GetContextForMicrotask()
2466 bound_function.bound_target_function().ptr())); in JSObjectShortPrint()
Dobjects.cc873 Handle<JSBoundFunction>::cast(callable)->bound_target_function(), in OrdinaryHasInstance()
/external/v8/src/builtins/
Dfunction.tq93 bound_target_function: fn,
Dic-callable.tq34 UnsafeCast<JSBoundFunction>(unwrappedTarget).bound_target_function;
Dpromise-misc.tq259 foundExecutor = b.bound_target_function;
Dpromise-abstract-operations.tq56 iter = b.bound_target_function;
/external/v8/src/compiler/
Dheap-refs.h326 JSReceiverRef bound_target_function() const;
Djs-call-reducer.cc4058 node, jsgraph()->Constant(function.bound_target_function()), in ReduceJSCall()
4104 Node* bound_target_function = NodeProperties::GetValueInput(target, 0); in ReduceJSCall() local
4110 NodeProperties::ReplaceValueInput(node, bound_target_function, in ReduceJSCall()
4735 ObjectRef bound_target_function = function.bound_target_function(); in ReduceJSConstruct() local
4740 jsgraph()->Constant(bound_target_function)); in ReduceJSConstruct()
4749 jsgraph()->Constant(bound_target_function), in ReduceJSConstruct()
4775 Node* bound_target_function = NodeProperties::GetValueInput(target, 0); in ReduceJSConstruct() local
4780 node->ReplaceInput(n.TargetIndex(), bound_target_function); in ReduceJSConstruct()
4789 bound_target_function, new_target)); in ReduceJSConstruct()
Djs-create-lowering.cc900 Node* bound_target_function = NodeProperties::GetValueInput(node, 0); in ReduceJSCreateBoundFunction() local
927 bound_target_function); in ReduceJSCreateBoundFunction()
Dserializer-for-background-compilation.cc2063 target = target.AsJSBoundFunction().bound_target_function()) { in UnrollBoundFunction()
2207 Handle<JSBoundFunction>::cast(target)->bound_target_function(), in ProcessNewTargetForConstruct()
3390 constructor.AsJSBoundFunction().bound_target_function(), in ProcessConstantForOrdinaryHasInstance()
Djs-native-context-specialization.cc632 JSReceiverRef bound_target_function = function.bound_target_function(); in ReduceJSOrdinaryHasInstance() local
638 node, jsgraph()->Constant(bound_target_function), in ReduceJSOrdinaryHasInstance()
Djs-heap-broker.cc634 ObjectData* bound_target_function() const { return bound_target_function_; } in bound_target_function() function in v8::internal::compiler::JSBoundFunctionData
1533 broker->GetOrCreateData(function->bound_target_function()); in Serialize()
3418 BIMODAL_ACCESSOR(JSBoundFunction, JSReceiver, bound_target_function) in BIMODAL_ACCESSOR()
/external/v8/src/runtime/
Druntime-debug.cc207 result->set(1, function->bound_target_function()); in GetInternalProperties()
/external/v8/src/diagnostics/
Dobjects-debug.cc792 CHECK_EQ(IsConstructor(), bound_target_function().IsConstructor()); in USE_TORQUE_VERIFIER()
Dobjects-printer.cc1207 os << "\n - bound_target_function: " << Brief(bound_target_function()); in JSBoundFunctionPrint()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc849 js_fun.bound_target_function(), in ExtractJSObjectReferences()
/external/v8/src/api/
Dapi.cc5124 auto bound_target_function = i::handle( in GetBoundFunction() local
5125 bound_function->bound_target_function(), bound_function->GetIsolate()); in GetBoundFunction()
5126 return Utils::CallableToLocal(bound_target_function); in GetBoundFunction()