Home
last modified time | relevance | path

Searched refs:array_function (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/init/
Dbootstrapper.cc1714 Handle<JSFunction> array_function = InstallFunction( in InitializeGlobal() local
1717 array_function->shared().DontAdaptArguments(); in InitializeGlobal()
1721 array_function->shared().set_length(1); in InitializeGlobal()
1723 Handle<Map> initial_map(array_function->initial_map(), isolate()); in InitializeGlobal()
1740 InstallWithIntrinsicDefaultProto(isolate_, array_function, in InitializeGlobal()
1742 InstallSpeciesGetter(isolate_, array_function); in InitializeGlobal()
1755 JSFunction::SetPrototype(array_function, proto); in InitializeGlobal()
1760 handle(array_function->initial_map(), isolate_)); in InitializeGlobal()
1762 SimpleInstallFunction(isolate_, array_function, "isArray", in InitializeGlobal()
1764 SimpleInstallFunction(isolate_, array_function, "from", Builtin::kArrayFrom, in InitializeGlobal()
[all …]
/third_party/node/deps/v8/src/builtins/
Dbuiltins-array-gen.h91 TNode<HeapObject> array_function,
Dbuiltins-array-gen.cc1855 TNode<Context> context, TNode<HeapObject> array_function, in GenerateConstructor() argument
1897 TailCallRuntimeNewArray(context, array_function, array_size, array_function, in GenerateConstructor()
Dbuiltins-array.cc1261 bool is_array_species = *species == isolate->context().array_function(); in Slow_ArrayConcat()
1537 if (*species == *isolate->array_function()) { in BUILTIN()
/third_party/node/deps/v8/src/objects/
Dcontexts.h91 V(ARRAY_FUNCTION_INDEX, JSFunction, array_function) \
Djs-function.cc646 *function != function->native_context().array_function()); in SetInstancePrototype()
Dobjects.cc1677 Handle<Object> default_species = isolate->array_function(); in ArraySpeciesConstructor()
1700 *constructor == constructor_context->array_function()) { in ArraySpeciesConstructor()
/third_party/node/deps/v8/src/compiler/
Dheap-refs.h518 V(JSFunction, array_function) \
Djs-call-reducer.cc5037 Node* array_function = in ReduceJSConstruct() local
5038 jsgraph()->Constant(native_context().array_function()); in ReduceJSConstruct()
5042 array_function); in ReduceJSConstruct()
5050 node->ReplaceInput(n.NewTargetIndex(), array_function); in ReduceJSConstruct()
/third_party/node/deps/v8/src/heap/
Dfactory.cc2645 JSFunction array_function = native_context.array_function(); in NewJSArrayWithUnverifiedElements() local
2646 map = array_function.initial_map(); in NewJSArrayWithUnverifiedElements()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc15031 TNode<JSFunction> array_function = in ArrayCreate() local
15033 array = CAST(CallRuntimeNewArray(context, array_function, length, in ArrayCreate()
15034 array_function, UndefinedConstant())); in ArrayCreate()