Home
last modified time | relevance | path

Searched refs:AtomicBoolValue (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DArena.h71 AtomicBoolValue &makeAtomValue() { in makeAtomValue()
72 return cast<AtomicBoolValue>(makeBoolValue(makeAtomRef(makeAtom()))); in makeAtomValue()
H A DValue.h135 class AtomicBoolValue final : public BoolValue {
137 explicit AtomicBoolValue(const Formula &F) : BoolValue(Kind::AtomicBool, F) { in AtomicBoolValue() function
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DValue.cpp54 return OS << "AtomicBool(" << cast<AtomicBoolValue>(Val).getAtom() << ")"; in operator <<()
H A DArena.cpp116 ? (BoolValue *)&create<AtomicBoolValue>(F) in makeBoolValue()