Searched defs:BitValue (Results 1 – 5 of 5) sorted by relevance
152 struct BitTracker::BitValue { struct153 enum ValueType {191 BitValue(ValueType T = Top) : Type(T) {} in Type() argument192 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue() function193 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {} in BitValue() function226 bool meet(const BitValue &V, const BitRef &Self) { in meet() argument263 friend raw_ostream &operator<<(raw_ostream &OS, const BitValue &BV); argument
23 bool BitValue = bitof(In, Bits(It)); in pushData() local52 bool BitValue = bitof(Data.get(), BitIndex); in copyBits() local
254 struct BitValue { struct255 enum bit_value_t : uint8_t {262 BitValue(bit_value_t V) : V(V) {} in BitValue() function263 explicit BitValue(const Init *Init) { in BitValue() argument269 BitValue(const BitsInit &Bits, unsigned Idx) : BitValue(Bits.getBit(Idx)) {} in BitValue() function271 bool isSet() const { return V == BIT_TRUE || V == BIT_FALSE; } in isSet()272 bool isUnset() const { return V == BIT_UNSET; } in isUnset()273 std::optional<uint64_t> getValue() const { in getValue()280 operator StringRef() const { in operator StringRef()294 bool operator==(bit_value_t Other) const { return Other == V; } in operator ==()[all …]
1343 void setBitVal(unsigned BitPosition, bool BitValue) { in setBitVal()
3986 bool BitValue = !V.isUndef() && V->getAsZExtVal(); in lowerBuildVectorOfConstants() local