Searched defs:array_type (Results 1 - 7 of 7) sorted by relevance

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

Completed in 153 milliseconds