Home
last modified time | relevance | path

Searched refs:new_array (Results 1 – 16 of 16) 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()
151 ObjPtr<Array> new_array = in CopyOf() local
153 if (LIKELY(new_array != nullptr)) { in CopyOf()
154 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.cc600 HInstruction* new_array = new (allocator) HNewArray( in BuildSSAGraph3() local
605 block->AddInstruction(new_array); in BuildSSAGraph3()
634 HNullCheck* null_check = new (allocator) HNullCheck(new_array, 0); in BuildSSAGraph3()
981 HInstruction* new_array = new (GetAllocator()) HNewArray( in TEST_F() local
986 block->AddInstruction(new_array); in TEST_F()
1015 new_array, bounds_check_i_mod_10, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1024 new_array, bounds_check_i_mod_1, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1034 new_array, bounds_check_i_mod_200, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1045 new_array, bounds_check_i_mod_minus_10, constant_10, DataType::Type::kInt32, 0); in TEST_F()
1051 HNullCheck* null_check = new (GetAllocator()) HNullCheck(new_array, 0); in TEST_F()
[all …]
Dinstruction_builder.cc2243 HNewArray* new_array = new (allocator_) HNewArray(cls, length, dex_pc, component_type_shift); in BuildNewArray() local
2244 AppendInstruction(new_array); in BuildNewArray()
2245 return new_array; in BuildNewArray()
2254 HNewArray* new_array = BuildNewArray(dex_pc, type_index, length); in BuildFilledNewArray() local
2267 HArraySet* aset = new (allocator_) HArraySet(new_array, index, value, type, dex_pc); in BuildFilledNewArray()
2271 latest_result_ = new_array; in BuildFilledNewArray()
2273 return new_array; in BuildFilledNewArray()
3331 HNewArray* new_array = BuildNewArray(dex_pc, type_index, length); in ProcessDexInstruction() local
3334 BuildConstructorFenceForAllocation(new_array); in ProcessDexInstruction()
3343 HNewArray* new_array = BuildFilledNewArray(dex_pc, type_index, operands); in ProcessDexInstruction() local
[all …]
Dbounds_check_elimination.cc1308 void VisitNewArray(HNewArray* new_array) override { in VisitNewArray() argument
1309 HInstruction* len = new_array->GetLength(); in VisitNewArray()
1320 ValueBound upper = ValueBound(new_array, -right_const); in VisitNewArray()
1322 ValueRange* existing_range = LookupValueRange(left, new_array->GetBlock()); in VisitNewArray()
1326 AssignRange(new_array->GetBlock(), left, range); in VisitNewArray()
Dinduction_var_range_test.cc704 HInstruction* new_array = new (GetAllocator()) HNewArray( in TEST_F() local
709 entry_block_->AddInstruction(new_array); in TEST_F()
710 HInstruction* array_length = new (GetAllocator()) HArrayLength(new_array, 0); in TEST_F()
Dload_store_elimination.cc1202 void VisitNewArray(HNewArray* new_array) override { in VisitNewArray() argument
1203 ReferenceInfo* ref_info = heap_location_collector_.FindReferenceInfoOf(new_array); in VisitNewArray()
1209 if (new_array->GetLength()->IsIntConstant() && in VisitNewArray()
1210 new_array->GetLength()->AsIntConstant()->GetValue() >= 0) { in VisitNewArray()
1212 singleton_new_instances_.push_back(new_array); in VisitNewArray()
1218 heap_values_for_[new_array->GetBlock()->GetBlockId()]; in VisitNewArray()
1222 if (ref == new_array && location->GetIndex() != nullptr) { in VisitNewArray()
Dcode_generator.h703 static QuickEntrypointEnum GetArrayAllocationEntrypoint(HNewArray* new_array);
Dcode_generator.cc1822 QuickEntrypointEnum CodeGenerator::GetArrayAllocationEntrypoint(HNewArray* new_array) { in GetArrayAllocationEntrypoint() argument
1823 switch (new_array->GetComponentSizeShift()) { in GetArrayAllocationEntrypoint()
/art/runtime/interpreter/mterp/
Dnterp.cc677 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc( in DoFilledNewArray() local
683 if (UNLIKELY(new_array == nullptr)) { in DoFilledNewArray()
697 new_array->AsIntArray()->SetWithoutChecks</* kTransactionActive= */ false>(i, regs[src_reg]); in DoFilledNewArray()
699 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks</* kTransactionActive= */ false>( in DoFilledNewArray()
703 return new_array.Ptr(); in DoFilledNewArray()
/art/runtime/dex/
Ddex_file_annotations.cc593 Handle<mirror::Array> new_array(hs.NewHandle(mirror::Array::Alloc( in ProcessAnnotationValue() local
596 if (new_array == nullptr) { in ProcessAnnotationValue()
611 new_array->AsObjectArray<mirror::Object>()-> in ProcessAnnotationValue()
616 new_array->AsByteArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
620 new_array->AsShortArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
624 new_array->AsCharArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
628 new_array->AsIntArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
632 new_array->AsLongArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
636 new_array->AsFloatArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
640 new_array->AsDoubleArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue()
[all …]
/art/runtime/interpreter/
Dinterpreter_common.cc1477 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc( in DoFilledNewArray() local
1483 if (UNLIKELY(new_array == nullptr)) { in DoFilledNewArray()
1497 new_array->AsIntArray()->SetWithoutChecks<transaction_active>( in DoFilledNewArray()
1500 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>( in DoFilledNewArray()
1505 result->SetL(new_array); in DoFilledNewArray()
Dunstarted_runtime.cc1877 ObjPtr<mirror::Array> new_array = mirror::ObjectArray<mirror::Object>::Alloc( in UnstartedJNIArrayCreateObjectArray() local
1879 result->SetL(new_array); in UnstartedJNIArrayCreateObjectArray()