Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-call-reducer.cc548 Handle<FixedArray> bound_arguments(function->bound_arguments(), in ReduceJSCall() local
563 for (int i = 0; i < bound_arguments->length(); ++i) { in ReduceJSCall()
566 jsgraph()->Constant(handle(bound_arguments->get(i), isolate()))); in ReduceJSCall()
/external/v8/src/
Dfactory.cc2255 Handle<FixedArray> bound_arguments; in NewJSBoundFunction() local
2257 bound_arguments = empty_fixed_array(); in NewJSBoundFunction()
2259 bound_arguments = NewFixedArray(bound_args.length()); in NewJSBoundFunction()
2261 bound_arguments->set(i, *bound_args[i]); in NewJSBoundFunction()
2279 result->set_bound_arguments(*bound_arguments); in NewJSBoundFunction()
Daccessors.cc1094 int bound_length = function->bound_arguments()->length(); in BoundFunctionLengthGetter()
Dobjects-printer.cc983 os << "\n - bound_arguments = " << Brief(bound_arguments()); in JSBoundFunctionPrint()
Dobjects-inl.h5524 ACCESSORS(JSBoundFunction, bound_arguments, FixedArray, kBoundArgumentsOffset)
Dobjects.h7880 DECL_ACCESSORS(bound_arguments, FixedArray)
/external/v8/src/runtime/
Druntime-debug.cc205 Handle<FixedArray> bound_arguments = in GetInternalProperties() local
206 factory->CopyFixedArray(handle(function->bound_arguments(), isolate)); in GetInternalProperties()
208 factory->NewJSArrayWithElements(bound_arguments); in GetInternalProperties()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1082 TagObject(js_fun->bound_arguments(), "(bound arguments)"); in ExtractJSObjectReferences()
1083 SetInternalReference(js_fun, entry, "bindings", js_fun->bound_arguments(), in ExtractJSObjectReferences()
1090 FixedArray* bindings = js_fun->bound_arguments(); in ExtractJSObjectReferences()