Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-debug.cc196 Handle<FixedArray> bound_arguments = in GetInternalProperties() local
197 factory->CopyFixedArray(handle(function->bound_arguments(), isolate)); in GetInternalProperties()
199 factory->NewJSArrayWithElements(bound_arguments); in GetInternalProperties()
/external/v8/src/compiler/
Djs-create-lowering.cc931 Node* bound_arguments = jsgraph()->EmptyFixedArrayConstant(); in ReduceJSCreateBoundFunction() local
939 bound_arguments = effect = a.Finish(); in ReduceJSCreateBoundFunction()
953 a.Store(AccessBuilder::ForJSBoundFunctionBoundArguments(), bound_arguments); in ReduceJSCreateBoundFunction()
Djs-call-reducer.cc3248 Handle<FixedArray> bound_arguments(function->bound_arguments(), in ReduceJSCall() local
3260 for (int i = 0; i < bound_arguments->length(); ++i) { in ReduceJSCall()
3263 jsgraph()->Constant(handle(bound_arguments->get(i), isolate()))); in ReduceJSCall()
3889 Handle<FixedArray> bound_arguments(function->bound_arguments(), in ReduceJSConstruct() local
3908 for (int i = 0; i < bound_arguments->length(); ++i) { in ReduceJSConstruct()
3911 jsgraph()->Constant(handle(bound_arguments->get(i), isolate()))); in ReduceJSConstruct()
/external/v8/src/heap/
Dfactory.cc3324 Handle<FixedArray> bound_arguments; in NewJSBoundFunction() local
3326 bound_arguments = empty_fixed_array(); in NewJSBoundFunction()
3328 bound_arguments = NewFixedArray(bound_args.length()); in NewJSBoundFunction()
3330 bound_arguments->set(i, *bound_args[i]); in NewJSBoundFunction()
3348 result->set_bound_arguments(*bound_arguments); in NewJSBoundFunction()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc958 TagObject(js_fun->bound_arguments(), "(bound arguments)"); in ExtractJSObjectReferences()
959 SetInternalReference(js_fun, entry, "bindings", js_fun->bound_arguments(), in ExtractJSObjectReferences()
966 FixedArray* bindings = js_fun->bound_arguments(); in ExtractJSObjectReferences()
/external/v8/src/
Dobjects-printer.cc1322 os << "\n - bound_arguments: " << Brief(bound_arguments()); in JSBoundFunctionPrint()
Dobjects-inl.h2199 ACCESSORS(JSBoundFunction, bound_arguments, FixedArray, kBoundArgumentsOffset) in ACCESSORS()
Dobjects.h3144 DECL_ACCESSORS(bound_arguments, FixedArray)
Dobjects.cc6014 int nof_bound_arguments = function->bound_arguments()->length(); in GetLength()
6021 int length = function->bound_arguments()->length(); in GetLength()