Searched defs:BitValue (Results 1 – 1 of 1) sorted by relevance
154 struct BitTracker::BitValue { struct155 enum ValueType {193 BitValue(ValueType T = Top) : Type(T) {} in Type() argument194 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue() function195 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {} in BitValue() argument228 bool meet(const BitValue &V, const BitRef &Self) { in meet() argument265 friend raw_ostream &operator<<(raw_ostream &OS, const BitValue &BV); argument