Home
last modified time | relevance | path

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

/llvm-project/clang/unittests/Analysis/FlowSensitive/
H A DMultiVarConstantPropagationTest.cpp48 struct ValueLattice { struct
51 enum class ValueState : bool {
58 ValueState State;
62 std::optional<int64_t> Value;
64 constexpr ValueLattice() in ValueLattice() argument
66 constexpr ValueLattice(int64_t V) : State(ValueState::Defined), Value(V) {} in ValueLattice() function
67 constexpr ValueLattice(ValueState S) : State(S), Value(std::nullopt) {} in ValueLattice() argument
69 static constexpr ValueLattice bottom() { in bottom()
72 static constexpr ValueLattice top() { in top()
83 LatticeJoinEffect join(const ValueLattice &Other) { in join()