Searched refs:type_h (Results 1 – 3 of 3) sorted by relevance
107 const RegType& type_h = GetRegisterType(verifier, vsrc + 1); in CopyRegister2() local109 if (!type_l.CheckWidePair(type_h)) { in CopyRegister2()111 << " type=" << type_l << "/" << type_h; in CopyRegister2()113 SetRegisterTypeWide(verifier, vdst, type_l, type_h); in CopyRegister2()
103 inline bool CheckWidePair(const RegType& type_h) const { in CheckWidePair() argument105 return ((IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()106 (IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()107 (IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()108 (IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()109 (IsDoubleLo() && type_h.IsDoubleHi()) || in CheckWidePair()110 (IsLongLo() && type_h.IsLongHi())); in CheckWidePair()
189 const RegType& type_h = verifier->GetRegTypeCache()->GetFromId(result_[1]); in CopyResultRegister2() local194 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case in CopyResultRegister2()195 SetRegisterTypeWide(verifier, vdst, type_l, type_h); // also sets the high in CopyResultRegister2()