Home
last modified time | relevance | path

Searched refs:TopBoolValue (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DValue.cpp38 if (isa<TopBoolValue>(&Val1)) in areEquivalentValues()
50 return OS << "TopBool(" << cast<TopBoolValue>(Val).getAtom() << ")"; in operator <<()
H A DTransfer.cpp83 if (auto *Top = llvm::dyn_cast<TopBoolValue>(&V)) { in unpackValue()
H A DDataflowEnvironment.cpp173 if (isa<TopBoolValue>(Prev)) in widenDistinctValues()
/src/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DArena.h76 TopBoolValue &makeTopValue() { in makeTopValue()
78 return create<TopBoolValue>(makeAtomRef(makeAtom())); in makeTopValue()
H A DValue.h116 class TopBoolValue final : public BoolValue {
118 TopBoolValue(const Formula &F) : BoolValue(Kind::TopBool, F) { in TopBoolValue() function