Searched refs:new_type (Results 1 – 6 of 6) sorted by relevance
/art/runtime/verifier/ |
D | register_line-inl.h | 42 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()
|
D | register_line.h | 117 const RegType& new_type) 127 void SetResultRegisterType(MethodVerifier* verifier, const RegType& new_type)
|
D | register_line.cc | 437 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/ |
D | instruction_simplifier.cc | 1091 static inline bool TryReplaceFieldOrArrayGetType(HInstruction* maybe_get, DataType::Type new_type) { in TryReplaceFieldOrArrayGetType() argument 1093 maybe_get->AsInstanceFieldGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType() 1096 maybe_get->AsStaticFieldGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType() 1099 maybe_get->AsArrayGet()->SetType(new_type); in TryReplaceFieldOrArrayGetType() 1433 DataType::Type new_type = (value == 0xff) ? DataType::Type::kUint8 : DataType::Type::kUint16; in VisitAnd() local 1437 TryReplaceFieldOrArrayGetType(input_other, new_type)) { in VisitAnd() 1440 } else if (DataType::IsTypeConversionImplicit(input_other->GetType(), new_type)) { in VisitAnd() 1445 new_type, input_other, instruction->GetDexPc()); in VisitAnd()
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 1778 auto [_, new_type] = *it; in CollectAndCreateNewInstances() 1790 new_type->Alloc</*kIsInstrumented=*/true, in CollectAndCreateNewInstances() 1975 art::ObjPtr<art::mirror::Class> new_type; in FinishNewClassAllocations() local 1979 new_type = in FinishNewClassAllocations() 1986 new_type = setup_single_redefinition(&new_redef, superclass); in FinishNewClassAllocations() 1988 if (new_type == nullptr) { in FinishNewClassAllocations() 1993 new_classes_arr->Set(i, new_type); in FinishNewClassAllocations()
|
/art/runtime/mirror/ |
D | class.h | 415 void SetPrimitiveType(Primitive::Type new_type) REQUIRES_SHARED(Locks::mutator_lock_) { in SetPrimitiveType() argument 417 uint32_t v32 = static_cast<uint32_t>(new_type); in SetPrimitiveType() 420 v32 |= Primitive::ComponentSizeShift(new_type) << kPrimitiveTypeSizeShiftShift; in SetPrimitiveType()
|