Home
last modified time | relevance | path

Searched refs:type_h (Results 1 – 3 of 3) sorted by relevance

/art/runtime/verifier/
Dregister_line-inl.h120 const RegType& type_h = GetRegisterType(verifier, vsrc + 1); in CopyRegister2() local
122 if (!type_l.CheckWidePair(type_h)) { in CopyRegister2()
124 << " type=" << type_l << "/" << type_h; in CopyRegister2()
126 SetRegisterTypeWide(verifier, vdst, type_l, type_h); in CopyRegister2()
Dreg_type.h112 inline bool CheckWidePair(const RegType& type_h) const { in CheckWidePair() argument
114 return ((IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()
115 (IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()
116 (IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()
117 (IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()
118 (IsDoubleLo() && type_h.IsDoubleHi()) || in CheckWidePair()
119 (IsLongLo() && type_h.IsLongHi())); in CheckWidePair()
Dregister_line.cc184 const RegType& type_h = verifier->GetRegTypeCache()->GetFromId(result_[1]); in CopyResultRegister2() local
189 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case in CopyResultRegister2()
190 SetRegisterTypeWide(verifier, vdst, type_l, type_h); // also sets the high in CopyResultRegister2()