Home
last modified time | relevance | path

Searched refs:array_type (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dssa_builder.cc307 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); in GetPrimitiveArrayComponentType() local
308 DCHECK(array_type.IsPrimitiveArrayClass()); in GetPrimitiveArrayComponentType()
310 array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType()); in GetPrimitiveArrayComponentType()
337 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
338 DCHECK_EQ(DataType::Is64BitType(aget_int->GetType()), DataType::Is64BitType(array_type)); in FixAmbiguousArrayOps()
340 if (DataType::IsIntOrLongType(array_type)) { in FixAmbiguousArrayOps()
349 DCHECK(DataType::IsFloatingPointType(array_type)); in FixAmbiguousArrayOps()
380 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
381 DCHECK_EQ(DataType::Is64BitType(value_type), DataType::Is64BitType(array_type)); in FixAmbiguousArrayOps()
383 if (DataType::IsFloatingPointType(array_type)) { in FixAmbiguousArrayOps()
[all …]
/art/runtime/verifier/
Dmethod_verifier.cc2526 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); in CodeFlowVerifyInstruction() local
2528 if (!array_type.IsZeroOrNull()) { in CodeFlowVerifyInstruction()
2529 if (!array_type.IsArrayTypes()) { in CodeFlowVerifyInstruction()
2531 << array_type; in CodeFlowVerifyInstruction()
2532 } else if (array_type.IsUnresolvedTypes()) { in CodeFlowVerifyInstruction()
2535 << array_type; in CodeFlowVerifyInstruction()
2537 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader()); in CodeFlowVerifyInstruction()
4453 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); in VerifyAGet() local
4454 if (array_type.IsZeroOrNull()) { in VerifyAGet()
4474 } else if (!array_type.IsArrayTypes()) { in VerifyAGet()
[all …]
/art/runtime/
Dtransaction.cc630 Primitive::Type array_type, in UndoArrayWrite() argument
636 switch (array_type) { in UndoArrayWrite()
673 LOG(FATAL) << "Unsupported type " << array_type; in UndoArrayWrite()
Dtransaction.h216 Primitive::Type array_type,
/art/compiler/debug/
Delf_debug_info_writer.h559 size_t array_type = info_.StartTag(DW_TAG_array_type); in WriteTypeDeclaration() local
564 info_.WriteRef4(DW_AT_type, array_type); in WriteTypeDeclaration()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc91 ObjPtr<mirror::Class> array_type = in UNSTARTED_RUNTIME_JNI_LIST() local
93 CHECK(array_type != nullptr); in UNSTARTED_RUNTIME_JNI_LIST()
95 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3); in UNSTARTED_RUNTIME_JNI_LIST()
/art/dex2oat/linker/
Dimage_writer.h477 Bin array_type)
Dimage_writer.cc2178 Bin array_type) { in FixupPointerArray() argument
2196 CHECK_EQ(array_type, Bin::kArtField); in FixupPointerArray()
/art/libdexfile/dex/
Ddex_file_verifier.cc1031 EncodedArrayValueIterator::ValueType array_type = array_it.GetValueType(); in CheckStaticFieldTypes() local
1033 switch (array_type) { in CheckStaticFieldTypes()
1100 ErrorStringPrintf("unexpected static field initial value type: %x", array_type); in CheckStaticFieldTypes()