Home
last modified time | relevance | path

Searched refs:new_type (Results 1 – 7 of 7) sorted by relevance

/art/runtime/verifier/
Dregister_line-inl.h42 const RegType& new_type) { in SetRegisterType() argument
44 if (new_type.IsLowHalf() || new_type.IsHighHalf()) { in SetRegisterType()
46 << new_type << "'"; in SetRegisterType()
51 line_[vdst] = new_type.GetId(); in SetRegisterType()
60 DCHECK(new_type.IsReferenceTypes()); in SetRegisterType()
89 inline void RegisterLine::SetResultRegisterType(MethodVerifier* verifier, const RegType& new_type) { in SetResultRegisterType() argument
90 DCHECK(!new_type.IsLowHalf()); in SetResultRegisterType()
91 DCHECK(!new_type.IsHighHalf()); in SetResultRegisterType()
92 result_[0] = new_type.GetId(); in SetResultRegisterType()
Dregister_line.h117 const RegType& new_type)
127 void SetResultRegisterType(MethodVerifier* verifier, const RegType& new_type)
Dregister_line.cc437 const RegType& new_type = cur_type.Merge( in MergeRegisters() local
439 changed = changed || !cur_type.Equals(new_type); in MergeRegisters()
440 line_[idx] = new_type.GetId(); in MergeRegisters()
/art/compiler/optimizing/
Dinstruction_simplifier.cc1186 static inline bool TryReplaceFieldOrArrayGetType(HInstruction* maybe_get, DataType::Type new_type) { in TryReplaceFieldOrArrayGetType() argument
1188 maybe_get->AsInstanceFieldGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType()
1191 maybe_get->AsPredicatedInstanceFieldGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType()
1194 maybe_get->AsStaticFieldGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType()
1197 maybe_get->AsArrayGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType()
1531 DataType::Type new_type = (value == 0xff) ? DataType::Type::kUint8 : DataType::Type::kUint16; in VisitAnd() local
1535 TryReplaceFieldOrArrayGetType(input_other, new_type)) { in VisitAnd()
1538 } else if (DataType::IsTypeConversionImplicit(input_other->GetType(), new_type)) { in VisitAnd()
1543 new_type, input_other, instruction->GetDexPc()); in VisitAnd()
Dnodes.h3060 void SetType(DataType::Type new_type) {
3064 DCHECK(GetType() == new_type ||
3065 (GetType() == DataType::Type::kInt32 && new_type == DataType::Type::kFloat32) ||
3066 (GetType() == DataType::Type::kInt32 && new_type == DataType::Type::kReference) ||
3067 (GetType() == DataType::Type::kInt64 && new_type == DataType::Type::kFloat64));
3068 SetPackedField<TypeField>(new_type);
6196 void SetType(DataType::Type new_type) {
6198 DCHECK(DataType::IsIntegralType(new_type));
6199 DCHECK_EQ(DataType::Size(GetType()), DataType::Size(new_type));
6200 SetPackedField<TypeField>(new_type);
[all …]
/art/openjdkjvmti/
Dti_redefine.cc1777 auto [_, new_type] = *it; in CollectAndCreateNewInstances()
1789 new_type->Alloc</*kIsInstrumented=*/true, in CollectAndCreateNewInstances()
1974 art::ObjPtr<art::mirror::Class> new_type; in FinishNewClassAllocations() local
1978 new_type = in FinishNewClassAllocations()
1985 new_type = setup_single_redefinition(&new_redef, superclass); in FinishNewClassAllocations()
1987 if (new_type == nullptr) { in FinishNewClassAllocations()
1992 new_classes_arr->Set(i, new_type); in FinishNewClassAllocations()
/art/runtime/mirror/
Dclass.h417 void SetPrimitiveType(Primitive::Type new_type) REQUIRES_SHARED(Locks::mutator_lock_) { in SetPrimitiveType() argument
419 uint32_t v32 = static_cast<uint32_t>(new_type); in SetPrimitiveType()
422 v32 |= Primitive::ComponentSizeShift(new_type) << kPrimitiveTypeSizeShiftShift; in SetPrimitiveType()