| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | handle_leak_test.cpp | 97 static void HeandleLeakTestCommon(const EcmaVM *instance, JSHandle<TaggedArray>& newArray) in HeandleLeakTestCommon() 117 …JSHandle<TaggedArray> newArray(thread, const_cast<Heap *>(instance->GetHeap())->AllocateNonMovable… in HWTEST_F_L0() local 137 …JSHandle<TaggedArray> newArray(thread, const_cast<Heap *>(instance->GetHeap())->AllocateNonMovable… in HWTEST_F_L0() local
|
| D | js_verification_test.cpp | 72 …auto newArray = objectFactory->NewTaggedArray(1, JSTaggedValue::Undefined(), MemSpaceType::SEMI_SP… in HWTEST_F_L0() local 94 …auto newArray = objectFactory->NewTaggedArray(5, JSTaggedValue::Undefined(), MemSpaceType::SEMI_SP… in HWTEST_F_L0() local
|
| D | mem_controller_test.cpp | 83 [[maybe_unused]] auto newArray = in HWTEST_F_L0() local 163 [[maybe_unused]] auto newArray = in HWTEST_F_L0() local
|
| D | tagged_array_test.cpp | 32 JSHandle<JSObject> newArray = in JSArrayTestCreate() local
|
| D | js_api_plain_array_test.cpp | 147 JSHandle<JSAPIPlainArray> newArray(thread, CreatePlainArray()); in HWTEST_F_L0() local
|
| D | js_api_lightweightset_test.cpp | 297 JSHandle<TaggedArray> newArray(thread, lws->GetValues()); in HWTEST_F_L0() local
|
| /arkcompiler/ets_runtime/ecmascript/ic/ |
| D | proto_change_details.cpp | 45 …JSHandle<WeakVector> newArray = WeakVector::Grow(thread, JSHandle<WeakVector>(array), array->GetCa… in Add() local
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_array.cpp | 117 auto newArray = JSArray::CreateArrayFromList(thread, newTarget, elements); in ArrayConstructor() local 127 …JSTaggedValue newArray = JSArray::ArrayCreate(thread, JSTaggedNumber(argc), newTarget).GetTaggedVa… in ArrayConstructor() local 219 JSTaggedValue newArray; in From() local 338 JSTaggedValue newArray; in From() local 425 JSHandle<JSTaggedValue> newArray; in Of() local 492 …JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, JSTaggedNumber(arrayLe… in Concat() local 973 …JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, JSTaggedNumber(arrayLe… in Filter() local 1538 JSTaggedValue newArray = in Map() local 2245 JSTaggedValue newArray = in Slice() local 2479 JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, in Splice() local [all …]
|
| D | builtins_shared_array.cpp | 61 …JSTaggedValue newArray = JSSharedArray::ArrayCreate(thread, JSTaggedNumber(argc), newTarget).GetTa… in ArrayConstructor() local 278 JSTaggedValue newArray; in From() local 390 JSTaggedValue newArray; in From() local 484 JSTaggedValue newArray; in Create() local 644 …JSTaggedValue newArray = JSSharedArray::ArraySpeciesCreate(thread, thisObjHandle, JSTaggedNumber(0… in Concat() local 933 …JSTaggedValue newArray = JSSharedArray::ArraySpeciesCreate(thread, thisObjHandle, JSTaggedNumber(0… in Filter() local 1337 JSTaggedValue newArray = in Map() local 1724 JSTaggedValue newArray = in Slice() local 1853 JSTaggedValue newArray = JSSharedArray::ArraySpeciesCreate( in Splice() local 2633 JSHandle<JSTaggedValue> newArray; in Of() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | tagged_array.cpp | 143 JSHandle<TaggedArray> newArray = factory->CopyArray(array, oldLength, capa); in SetCapacity() local 152 JSHandle<TaggedArray> newArray = in SetCapacityInOldSpace() local
|
| D | js_map_iterator.cpp | 124 JSTaggedValue newArray = JSArray::ArrayCreate(thread, JSTaggedNumber(0)).GetTaggedValue(); in MapIteratorToList() local
|
| D | property_accessor.cpp | 126 … JSHandle<TaggedArray> newArray = thread_->GetEcmaVM()->GetFactory()->NewTaggedArray(arraySize); in InitSimplePropertiesEnumCache() local
|
| D | js_function.cpp | 1032 …JSHandle<TaggedArray> newArray = vm->GetFactory()->NewTaggedArray(nativeFieldCount + RESOLVED_MAX_… in SetFunctionExtraInfo() local 1042 JSHandle<TaggedArray> newArray = vm->GetFactory()->NewTaggedArray(RESOLVED_MAX_SIZE); in SetFunctionExtraInfo() local 1074 JSHandle<TaggedArray> newArray = in SetSFunctionExtraInfo() local 1085 … JSHandle<TaggedArray> newArray = vm->GetFactory()->NewSTaggedArrayWithoutInit(RESOLVED_MAX_SIZE); in SetSFunctionExtraInfo() local
|
| D | shared_object_factory.cpp | 372 JSHandle<TaggedArray> newArray(thread_, header); in CopySArray() local 395 JSHandle<TaggedArray> newArray(thread_, header); in ExtendSArray() local
|
| D | js_array.cpp | 110 JSHandle<JSArray> newArray(obj); in ArrayCreate() local 953 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray() local
|
| D | object_factory.cpp | 500 JSHandle<TaggedArray> newArray(thread_, header); in CloneProperties() local 604 JSHandle<TaggedArray> newArray(thread_, header); in CloneProperties() local 3142 JSHandle<TaggedArray> newArray(thread_, header); in ExtendArray() local 3184 JSHandle<TaggedArray> newArray(thread_, header); in CopyPartArray() local 3229 JSHandle<TaggedArray> newArray(thread_, header); in CopyArray() local 3249 JSHandle<TaggedArray> newArray(thread_, header); in CopyFromEnumCache() local 3277 auto newArray = NewTaggedArrayWithoutInit(arrayLength, MemSpaceType::SEMI_SPACE); in ExtendLayoutInfo() local 4617 JSHandle<TaggedArray> newArray(thread_, header); in CopyDeque() local 4655 JSHandle<TaggedArray> newArray(thread_, header); in CopyQueue() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | optimize_string_concat.cpp | 155 Inst *CreateLenArray(Graph *graph, Inst *newArray) in CreateLenArray() 269 bool OptimizeStringConcat::HasStoreArrayUsersOnly(Inst *newArray, Inst *removable) in HasStoreArrayUsersOnly()
|
| D | string_builder_utils.cpp | 426 Inst *GetArrayLengthConstant(Inst *newArray) in GetArrayLengthConstant() 441 bool CollectArrayElements(Inst *newArray, InstVector &arrayElements) in CollectArrayElements()
|
| D | reserve_string_builder_buffer.cpp | 161 auto newArray = storeObject->GetInput(1).GetInst()->CastToNewArray(); in ReplaceInitialBufferSizeConstantInlined() local
|
| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | js_shared_module.cpp | 156 JSHandle<TaggedArray> newArray = thread->GetEcmaVM()->GetFactory()->NewSTaggedArray(newLength); in GenerateSharedExports() local
|
| /arkcompiler/ets_runtime/ecmascript/shared_objects/ |
| D | js_shared_array.cpp | 209 JSHandle<TaggedArray> newArray = factory->CopySArray(array, oldLength, capa); in SetCapacity() local 536 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray() local
|
| /arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
| D | builtins_array_stub_builder_next_optimization.cpp | 964 void BuiltinsArrayStubBuilder::FastToSpliced(GateRef glue, GateRef thisValue, GateRef newArray, Gat… in FastToSpliced() 1132 GateRef newArray = NewArrayWithHClass(glue, newHClass, *newLen); in ToSplicedOptimised() local 1139 GateRef newArray = NewArray(glue, Int32(0)); in ToSplicedOptimised() local 1988 GateRef newArray = NewArray(glue, *count); in SliceOptimised() local 2161 void BuiltinsArrayStubBuilder::FastArrayWith(GateRef glue, GateRef thisValue, GateRef newArray, in FastArrayWith() 2264 … GateRef newArray = NewArrayWithHClass(glue, newHClass, TruncInt64ToInt32(thisLen)); in WithOptimised() local 2271 GateRef newArray = NewArray(glue, Int32(0)); in WithOptimised() local 2428 GateRef newArray = newBuilder.NewJSArrayWithSize(intialHClass, sumArrayLen); in DoConcat() local
|
| D | builtins_typedarray_stub_builder.cpp | 1478 …GateRef newArray = newBuilder.NewTypedArray(glue, thisValue, arrayType, TruncInt64ToInt32(*newArra… in Filter() local 1584 …GateRef newArray = newBuilder.NewTypedArray(glue, thisValue, arrayType, TruncInt64ToInt32(*newArra… in Slice() local 1650 Label newArray(env); in SubArray() local 1720 …GateRef newArray = newBuilder.NewTypedArraySameType(glue, thisValue, jsType, TruncInt64ToInt32(thi… in With() local 2469 …GateRef newArray = newBuilder.NewTypedArraySameType(glue, thisValue, jsType, TruncInt64ToInt32(thi… in ToSorted() local 2647 … GateRef newArray = newBuilder.NewTypedArray(glue, thisValue, jsType, TruncInt64ToInt32(thisLen)); in Map() local 2705 …GateRef newArray = newBuilder.NewTypedArraySameType(glue, thisValue, arrayType, TruncInt64ToInt32(… in ToReversed() local
|
| /arkcompiler/ets_runtime/ecmascript/js_api/ |
| D | js_api_lightweightmap.cpp | 51 JSHandle<TaggedArray> newArray = GrowCapacity(thread, array, len + 1); in InsertValue() local 415 JSHandle<TaggedArray> newArray = factory->CopyArray(oldArray, oldLength, newCapacity); in GrowCapacity() local
|
| /arkcompiler/ets_runtime/ecmascript/ic/tests/ |
| D | profile_type_info_test.cpp | 77 JSHandle<JSTaggedValue> newArray(factory->NewTaggedArray(2)); // 2 : test case in HWTEST_F_L0() local
|