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

/art/compiler/optimizing/
H A Dssa_builder.cc301 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); local
302 DCHECK(array_type.IsPrimitiveArrayClass());
303 return array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType();
328 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
329 DCHECK_EQ(Primitive::Is64BitType(aget_int->GetType()), Primitive::Is64BitType(array_type));
331 if (Primitive::IsIntOrLongType(array_type)) {
340 DCHECK(Primitive::IsFloatingPointType(array_type));
369 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
370 DCHECK_EQ(Primitive::Is64BitType(value_type), Primitive::Is64BitType(array_type));
372 if (Primitive::IsFloatingPointType(array_type)) {
[all...]
/art/compiler/debug/
H A Delf_debug_info_writer.h534 size_t array_type = info_.StartTag(DW_TAG_array_type); local
539 info_.WriteRef4(DW_AT_type, array_type);
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc90 ObjPtr<mirror::Class> array_type = local
92 CHECK(array_type != nullptr);
94 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3);
/art/runtime/
H A Dtransaction.cc586 Primitive::Type array_type,
591 switch (array_type) {
620 LOG(FATAL) << "Unsupported type " << array_type;
585 UndoArrayWrite(mirror::Array* array, Primitive::Type array_type, size_t index, uint64_t value) const argument
H A Ddex_file_verifier.cc1011 EncodedArrayValueIterator::ValueType array_type = array_it.GetValueType(); local
1013 switch (array_type) {
1080 ErrorStringPrintf("unexpected static field initial value type: %x", array_type);
/art/compiler/
H A Dimage_writer.cc2047 Bin array_type) {
2065 CHECK_EQ(array_type, kBinArtField);
2044 FixupPointerArray(mirror::Object* dst, mirror::PointerArray* arr, mirror::Class* klass, Bin array_type) argument
/art/runtime/verifier/
H A Dmethod_verifier.cc2559 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); local
2560 /* array_type can be null if the reg type is Zero */
2561 if (!array_type.IsZero()) {
2562 if (!array_type.IsArrayTypes()) {
2564 << array_type;
2565 } else if (array_type.IsUnresolvedTypes()) {
2568 << array_type;
2570 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
4635 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4636 if (array_type
4750 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4778 << "' but unresolved type '" << array_type << "'"; local
[all...]

Completed in 473 milliseconds