Home
last modified time | relevance | path

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

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