HomeSort by relevance Sort by last modified time
    Searched refs:type_h (Results 1 - 2 of 2) sorted by null

  /art/runtime/verifier/
register_line.cc 241 const RegType& type_h = GetRegisterType(vsrc + 1); local
243 if (!type_l.CheckWidePair(type_h)) {
245 << " type=" << type_l << "/" << type_h; local
247 SetRegisterTypeWide(vdst, type_l, type_h);
270 const RegType& type_h = verifier_->GetRegTypeCache()->GetFromId(result_[1]); local
275 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case
276 SetRegisterTypeWide(vdst, type_l, type_h); // also sets the high
reg_type.h 108 // Check this is the low half, and that type_h is its matching high-half.
109 inline bool CheckWidePair(const RegType& type_h) const {
111 return ((IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
112 (IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
113 (IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
114 (IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
115 (IsDoubleLo() && type_h.IsDoubleHi()) ||
116 (IsLongLo() && type_h.IsLongHi()));

Completed in 84 milliseconds