Searched refs:type_h (Results 1 – 3 of 3) sorted by relevance
122 const RegType& type_h = GetRegisterType(verifier, vsrc + 1); in CopyRegister2() local124 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()
111 inline bool CheckWidePair(const RegType& type_h) const { in CheckWidePair() argument113 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()
186 const RegType& type_h = verifier->GetRegTypeCache()->GetFromId(result_[1]); in CopyResultRegister2() local191 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()