Home
last modified time | relevance | path

Searched defs:BitValue (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.h152 struct BitTracker::BitValue { struct
153 enum ValueType {
191 BitValue(ValueType T = Top) : Type(T) {} in Type() argument
192 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue() function
193 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {} in BitValue() function
226 bool meet(const BitValue &V, const BitRef &Self) { in meet() argument
263 friend raw_ostream &operator<<(raw_ostream &OS, const BitValue &BV); argument
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DBitcastBuffer.cpp23 bool BitValue = bitof(In, Bits(It)); in pushData() local
52 bool BitValue = bitof(Data.get(), BitIndex); in copyBits() local
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDecoderEmitter.cpp254 struct BitValue { struct
255 enum bit_value_t : uint8_t {
262 BitValue(bit_value_t V) : V(V) {} in BitValue() function
263 explicit BitValue(const Init *Init) { in BitValue() argument
269 BitValue(const BitsInit &Bits, unsigned Idx) : BitValue(Bits.getBit(Idx)) {} in BitValue() function
271 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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1343 void setBitVal(unsigned BitPosition, bool BitValue) { in setBitVal()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3986 bool BitValue = !V.isUndef() && V->getAsZExtVal(); in lowerBuildVectorOfConstants() local