Searched defs:ValueLattice (Results 1 – 1 of 1) sorted by relevance
48 struct ValueLattice { struct51 enum class ValueState : bool {58 ValueState State;62 std::optional<int64_t> Value;64 constexpr ValueLattice() in ValueLattice() argument66 constexpr ValueLattice(int64_t V) : State(ValueState::Defined), Value(V) {} in ValueLattice() function67 constexpr ValueLattice(ValueState S) : State(S), Value(std::nullopt) {} in ValueLattice() argument69 static constexpr ValueLattice bottom() { in bottom()72 static constexpr ValueLattice top() { in top()83 LatticeJoinEffect join(const ValueLattice &Other) { in join()