Home
last modified time | relevance | path

Searched refs:new_array (Results 1 – 17 of 17) sorted by relevance

/art/runtime/mirror/
Darray.cc57 Handle<Array> new_array(hs.NewHandle( in RecursiveCreateMultiArray() local
59 if (UNLIKELY(new_array == nullptr)) { in RecursiveCreateMultiArray()
73 new_array->AsObjectArray<Array>()->Set<false, false>(i, sub_array); in RecursiveCreateMultiArray()
76 return new_array.Get(); in RecursiveCreateMultiArray()
115 ObjPtr<Array> new_array = RecursiveCreateMultiArray(self, array_class, 0, dimensions); in CreateMultiArray() local
116 if (UNLIKELY(new_array == nullptr)) { in CreateMultiArray()
119 return new_array.Ptr(); in CreateMultiArray()
152 ObjPtr<Array> new_array = in CopyOf() local
154 if (LIKELY(new_array != nullptr)) { in CopyOf()
155 memcpy(new_array->GetRawData(component_size, 0), in CopyOf()
[all …]
Dobject_array-alloc-inl.h72 ObjPtr<ObjectArray<T>> new_array = Alloc(self, h_this->GetClass(), new_length, allocator_type); in CopyOf() local
73 if (LIKELY(new_array != nullptr)) { in CopyOf()
74 new_array->AssignableMemcpy(0, h_this.Get(), 0, std::min(h_this->GetLength(), new_length)); in CopyOf()
76 return new_array; in CopyOf()
/art/runtime/native/
Djava_lang_reflect_Array.cc48 ObjPtr<mirror::Array> new_array = in Array_createMultiArray() local
50 return soa.AddLocalReference<jobject>(new_array); in Array_createMultiArray()
69 ObjPtr<mirror::Array> new_array = mirror::ObjectArray<mirror::Object>::Alloc( in Array_createObjectArray() local
74 return soa.AddLocalReference<jobject>(new_array); in Array_createObjectArray()
/art/test/573-checker-checkcast-regression/src/
DMain.java42 static public int test(Object new_array, int index1, int index2) { in test() argument
43 Object[] objectArray = (Object[]) new_array; in test()
/art/test/527-checker-array-access-split/src/
DMain.java311 int[] new_array = new int[1]; in accrossGC() local
313 return new_array; in accrossGC()
/art/compiler/optimizing/
Dbounds_check_elimination_test.cc601 HInstruction* new_array = new (allocator) HNewArray( in BuildSSAGraph3() local
606 block->AddInstruction(new_array); in BuildSSAGraph3()
635 HNullCheck* null_check = new (allocator) HNullCheck(new_array, 0); in BuildSSAGraph3()
982 HInstruction* new_array = new (GetAllocator()) HNewArray( in TEST_F() local
987 block->AddInstruction(new_array); in TEST_F()
1016 new_array, bounds_check_i_mod_10, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1025 new_array, bounds_check_i_mod_1, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1035 new_array, bounds_check_i_mod_200, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1046 new_array, bounds_check_i_mod_minus_10, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1052 HNullCheck* null_check = new (GetAllocator()) HNullCheck(new_array, 0); in TEST_F()
[all …]
Dinstruction_builder.cc2429 HNewArray* new_array = new (allocator_) HNewArray(cls, length, dex_pc, component_type_shift); in BuildNewArray() local
2430 AppendInstruction(new_array); in BuildNewArray()
2431 return new_array; in BuildNewArray()
2440 HNewArray* new_array = BuildNewArray(dex_pc, type_index, length); in BuildFilledNewArray() local
2453 HArraySet* aset = new (allocator_) HArraySet(new_array, index, value, type, dex_pc); in BuildFilledNewArray()
2457 latest_result_ = new_array; in BuildFilledNewArray()
2459 return new_array; in BuildFilledNewArray()
3521 HNewArray* new_array = BuildNewArray(dex_pc, type_index, length); in ProcessDexInstruction() local
3524 BuildConstructorFenceForAllocation(new_array); in ProcessDexInstruction()
3533 HNewArray* new_array = BuildFilledNewArray(dex_pc, type_index, operands); in ProcessDexInstruction() local
[all …]
Dload_store_elimination.cc1177 void VisitNewArray(HNewArray* new_array) override { in VisitNewArray() argument
1179 const bool inside_a_try = new_array->GetBlock()->IsTryBlock(); in VisitNewArray()
1180 ReferenceInfo* ref_info = heap_location_collector_.FindReferenceInfoOf(new_array); in VisitNewArray()
1186 if (new_array->GetLength()->IsIntConstant() && in VisitNewArray()
1187 new_array->GetLength()->AsIntConstant()->GetValue() >= 0) { in VisitNewArray()
1189 singleton_new_instances_.push_back(new_array); in VisitNewArray()
1194 HBasicBlock* block = new_array->GetBlock(); in VisitNewArray()
1200 if (ref == new_array && location->GetIndex() != nullptr) { in VisitNewArray()
Dbounds_check_elimination.cc1321 void VisitNewArray(HNewArray* new_array) override { in VisitNewArray() argument
1322 HInstruction* len = new_array->GetLength(); in VisitNewArray()
1333 ValueBound upper = ValueBound(new_array, -right_const); in VisitNewArray()
1335 ValueRange* existing_range = LookupValueRange(left, new_array->GetBlock()); in VisitNewArray()
1339 AssignRange(new_array->GetBlock(), left, range); in VisitNewArray()
Dinduction_var_range_test.cc925 HInstruction* new_array = new (GetAllocator()) HNewArray( in TEST_F() local
930 entry_block_->AddInstruction(new_array); in TEST_F()
931 HInstruction* array_length = new (GetAllocator()) HArrayLength(new_array, 0); in TEST_F()
Dcode_generator.cc1829 QuickEntrypointEnum CodeGenerator::GetArrayAllocationEntrypoint(HNewArray* new_array) { in GetArrayAllocationEntrypoint() argument
1830 switch (new_array->GetComponentSizeShift()) { in GetArrayAllocationEntrypoint()
Dcode_generator.h729 static QuickEntrypointEnum GetArrayAllocationEntrypoint(HNewArray* new_array);
/art/runtime/interpreter/mterp/
Dnterp.cc641 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc( in DoFilledNewArray() local
647 if (UNLIKELY(new_array == nullptr)) { in DoFilledNewArray()
661 new_array->AsIntArray()->SetWithoutChecks</* kTransactionActive= */ false>(i, regs[src_reg]); in DoFilledNewArray()
663 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks</* kTransactionActive= */ false>( in DoFilledNewArray()
667 return new_array.Ptr(); in DoFilledNewArray()
/art/runtime/dex/
Ddex_file_annotations.cc591 Handle<mirror::Array> new_array(hs.NewHandle(mirror::Array::Alloc( in ProcessAnnotationValue() local
594 if (new_array == nullptr) { in ProcessAnnotationValue()
609 new_array->AsObjectArray<mirror::Object>()-> in ProcessAnnotationValue()
614 new_array->AsByteArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
618 new_array->AsShortArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
622 new_array->AsCharArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
626 new_array->AsIntArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
630 new_array->AsLongArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
634 new_array->AsFloatArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
638 new_array->AsDoubleArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
[all …]
/art/runtime/interpreter/
Dinterpreter_switch_impl0.cc63 ALWAYS_INLINE static void RecordNewArray([[maybe_unused]] ObjPtr<mirror::Array> new_array) in RecordNewArray() argument
Dinterpreter_common.cc1492 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc( in DoFilledNewArray() local
1498 if (UNLIKELY(new_array == nullptr)) { in DoFilledNewArray()
1512 ObjPtr<mirror::IntArray> int_array = new_array->AsIntArray(); in DoFilledNewArray()
1520 new_array->AsObjectArray<mirror::Object>(); in DoFilledNewArray()
1528 result->SetL(new_array); in DoFilledNewArray()
Dunstarted_runtime.cc2090 ObjPtr<mirror::Array> new_array = mirror::ObjectArray<mirror::Object>::Alloc( in UnstartedJNIArrayCreateObjectArray() local
2092 result->SetL(new_array); in UnstartedJNIArrayCreateObjectArray()