Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_builder.cc310 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); in GetPrimitiveArrayComponentType() local
311 DCHECK(array_type.IsPrimitiveArrayClass()); in GetPrimitiveArrayComponentType()
313 array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType()); in GetPrimitiveArrayComponentType()
340 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
341 DCHECK_EQ(DataType::Is64BitType(aget_int->GetType()), DataType::Is64BitType(array_type)); in FixAmbiguousArrayOps()
343 if (DataType::IsIntOrLongType(array_type)) { in FixAmbiguousArrayOps()
352 DCHECK(DataType::IsFloatingPointType(array_type)); in FixAmbiguousArrayOps()
383 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
384 DCHECK_EQ(DataType::Is64BitType(value_type), DataType::Is64BitType(array_type)); in FixAmbiguousArrayOps()
386 if (DataType::IsFloatingPointType(array_type)) { in FixAmbiguousArrayOps()
[all …]
/art/runtime/verifier/
Dmethod_verifier.cc2596 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); in CodeFlowVerifyInstruction() local
2598 if (!array_type.IsZeroOrNull()) { in CodeFlowVerifyInstruction()
2599 if (!array_type.IsArrayTypes()) { in CodeFlowVerifyInstruction()
2601 << array_type; in CodeFlowVerifyInstruction()
2602 } else if (array_type.IsUnresolvedTypes()) { in CodeFlowVerifyInstruction()
2605 << array_type; in CodeFlowVerifyInstruction()
2607 const RegType& component_type = reg_types_.GetComponentType(array_type, in CodeFlowVerifyInstruction()
4412 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); in VerifyAGet() local
4413 if (array_type.IsZeroOrNull()) { in VerifyAGet()
4433 } else if (!array_type.IsArrayTypes()) { in VerifyAGet()
[all …]
/art/runtime/
Dtransaction.cc665 Primitive::Type array_type, in UndoArrayWrite() argument
671 switch (array_type) { in UndoArrayWrite()
708 LOG(FATAL) << "Unsupported type " << array_type; in UndoArrayWrite()
Dtransaction.h224 Primitive::Type array_type,
/art/runtime/interpreter/
Dinterpreter_common.cc758 ObjPtr<mirror::Class> array_type, in PackCollectorArrayForBootstrapMethod() argument
791 array_type, \ in PackCollectorArrayForBootstrapMethod()
819 ObjPtr<mirror::Class> component_type = array_type->GetComponentType(); in PackCollectorArrayForBootstrapMethod()
1040 ObjPtr<mirror::Class> array_type = call_site_type->GetPTypes()->Get(argument_index); in InvokeBootstrapMethod() local
1043 array_type, in InvokeBootstrapMethod()
Dunstarted_runtime_test.cc111 ObjPtr<mirror::Class> array_type = in CreateObjectArray() local
113 CHECK(array_type != nullptr); in CreateObjectArray()
115 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3); in CreateObjectArray()
/art/compiler/debug/
Delf_debug_info_writer.h540 size_t array_type = info_.StartTag(DW_TAG_array_type); in WriteTypeDeclaration() local
545 info_.WriteRef4(DW_AT_type, array_type); in WriteTypeDeclaration()
/art/libdexfile/dex/
Ddex_file_verifier.cc1145 EncodedArrayValueIterator::ValueType array_type = array_it.GetValueType(); in CheckStaticFieldTypes() local
1147 switch (array_type) { in CheckStaticFieldTypes()
1214 ErrorStringPrintf("unexpected static field initial value type: %x", array_type); in CheckStaticFieldTypes()