Searched refs:type_h (Results 1 – 2 of 2) sorted by relevance
242 RegType& type_h = GetRegisterType(vsrc + 1); in CopyRegister2() local244 if (!type_l.CheckWidePair(type_h)) { in CopyRegister2()246 << " type=" << type_l << "/" << type_h; in CopyRegister2()248 SetRegisterTypeWide(vdst, type_l, type_h); in CopyRegister2()271 RegType& type_h = verifier_->GetRegTypeCache()->GetFromId(result_[1]); in CopyResultRegister2() local276 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case in CopyResultRegister2()277 SetRegisterTypeWide(vdst, type_l, type_h); // also sets the high in CopyResultRegister2()
111 inline bool CheckWidePair(RegType& type_h) const { in CheckWidePair() argument113 return ((IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()114 (IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()115 (IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) || in CheckWidePair()116 (IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) || in CheckWidePair()117 (IsDoubleLo() && type_h.IsDoubleHi()) || in CheckWidePair()118 (IsLongLo() && type_h.IsLongHi())); in CheckWidePair()