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

/art/compiler/optimizing/
H A Dssa_builder.cc308 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); local
309 DCHECK(array_type.IsPrimitiveArrayClass());
310 return array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType();
335 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
336 DCHECK_EQ(Primitive::Is64BitType(aget_int->GetType()), Primitive::Is64BitType(array_type));
338 if (Primitive::IsIntOrLongType(array_type)) {
347 DCHECK(Primitive::IsFloatingPointType(array_type));
376 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
377 DCHECK_EQ(Primitive::Is64BitType(value_type), Primitive::Is64BitType(array_type));
379 if (Primitive::IsFloatingPointType(array_type)) {
[all...]
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc87 mirror::Class* array_type = runtime->GetClassLinker()->FindArrayClass(self, &component_type); local
88 CHECK(array_type != nullptr);
90 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3);
/art/runtime/
H A Dtransaction.cc500 void Transaction::ArrayLog::UndoArrayWrite(mirror::Array* array, Primitive::Type array_type, argument
504 switch (array_type) {
533 LOG(FATAL) << "Unsupported type " << array_type;
/art/compiler/debug/
H A Delf_debug_info_writer.h533 size_t array_type = info_.StartTag(DW_TAG_array_type); local
538 info_.WriteRef4(DW_AT_type, array_type);
/art/compiler/
H A Dimage_writer.cc1855 mirror::Class* klass, Bin array_type) {
1873 CHECK_EQ(array_type, kBinArtField);
1854 FixupPointerArray(mirror::Object* dst, mirror::PointerArray* arr, mirror::Class* klass, Bin array_type) argument
/art/runtime/verifier/
H A Dmethod_verifier.cc2500 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); local
2501 /* array_type can be null if the reg type is Zero */
2502 if (!array_type.IsZero()) {
2503 if (!array_type.IsArrayTypes()) {
2505 << array_type;
2506 } else if (array_type.IsUnresolvedTypes()) {
2509 << array_type;
2511 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
4326 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4327 if (array_type
4441 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4469 << "' but unresolved type '" << array_type << "'"; local
[all...]

Completed in 22 milliseconds