Home
last modified time | relevance | path

Searched refs:bound_arguments (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/objects/
Djs-function.tq18 bound_arguments: FixedArray;
Djs-function.cc339 int nof_bound_arguments = function->bound_arguments().length(); in GetLength()
346 int length = function->bound_arguments().length(); in GetLength()
/third_party/node/deps/v8/src/builtins/
Dfunction.tq98 bound_arguments: argumentsArray
/third_party/node/deps/v8/src/compiler/
Djs-create-lowering.cc893 Node* bound_arguments = jsgraph()->EmptyFixedArrayConstant(); in ReduceJSCreateBoundFunction() local
903 bound_arguments = effect = ab.Finish(); in ReduceJSCreateBoundFunction()
918 a.Store(AccessBuilder::ForJSBoundFunctionBoundArguments(), bound_arguments); in ReduceJSCreateBoundFunction()
Dheap-refs.h443 FixedArrayRef bound_arguments() const;
Dheap-refs.cc1452 FixedArrayRef JSBoundFunctionRef::bound_arguments() const { in bound_arguments() function in v8::internal::compiler::JSBoundFunctionRef
1454 return MakeRefAssumeMemoryFence(broker(), object()->bound_arguments()); in bound_arguments()
Djs-call-reducer.cc4372 FixedArrayRef bound_arguments = function.bound_arguments(); in ReduceJSCall() local
4373 const int bound_arguments_length = bound_arguments.length(); in ReduceJSCall()
4377 base::Optional<ObjectRef> maybe_arg = bound_arguments.TryGet(i); in ReduceJSCall()
5158 FixedArrayRef bound_arguments = function.bound_arguments(); in ReduceJSConstruct() local
5159 const int bound_arguments_length = bound_arguments.length(); in ReduceJSConstruct()
5166 base::Optional<ObjectRef> maybe_arg = bound_arguments.TryGet(i); in ReduceJSConstruct()
Dwasm-compiler.cc7840 if (bound_target->bound_arguments().length() == 0 && in ResolveWasmImportCall()
/third_party/node/deps/v8/src/heap/
Dfactory.cc3046 Handle<FixedArray> bound_arguments; in NewJSBoundFunction() local
3048 bound_arguments = empty_fixed_array(); in NewJSBoundFunction()
3050 bound_arguments = NewFixedArray(bound_args.length()); in NewJSBoundFunction()
3052 bound_arguments->set(i, *bound_args[i]); in NewJSBoundFunction()
3072 raw.set_bound_arguments(*bound_arguments, SKIP_WRITE_BARRIER); in NewJSBoundFunction()
/third_party/node/deps/v8/src/runtime/
Druntime-debug.cc232 handle(function->bound_arguments(), isolate)))); in GetInternalProperties()
/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc1157 TagObject(js_fun.bound_arguments(), "(bound arguments)"); in ExtractJSObjectReferences()
1158 SetInternalReference(entry, "bindings", js_fun.bound_arguments(), in ExtractJSObjectReferences()
1165 FixedArray bindings = js_fun.bound_arguments(); in ExtractJSObjectReferences()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-printer.cc1522 os << "\n - bound_arguments: " << Brief(bound_arguments()); in JSBoundFunctionPrint()