Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DValue.cpp36 if (isa<TopBoolValue>(&Val1)) in areEquivalentValues()
48 return OS << "TopBool(" << cast<TopBoolValue>(Val).getAtom() << ")"; in operator <<()
H A DTransfer.cpp88 if (auto *Top = llvm::dyn_cast<TopBoolValue>(&V)) { in unpackValue()
H A DDataflowEnvironment.cpp171 if (isa<TopBoolValue>(Prev)) in widenDistinctValues()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h116 class TopBoolValue final : public BoolValue {
118 TopBoolValue(const Formula &F) : BoolValue(Kind::TopBool, F) { in TopBoolValue() function