Home
last modified time | relevance | path

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

/llvm-project/clang/unittests/Analysis/FlowSensitive/
H A DSingleVarConstantPropagationTest.cpp49 struct ConstantPropagationLattice { struct
54 struct VarValue {
58 friend bool operator==(VarValue Lhs, VarValue Rhs) { in operator ==()
63 std::optional<VarValue> Data;
65 static constexpr ConstantPropagationLattice bottom() { in bottom()
68 static constexpr ConstantPropagationLattice top() { in top()
77 LatticeJoinEffect join(const ConstantPropagationLattice &Other) { in join()
H A DMultiVarConstantPropagationTest.cpp109 using ConstantPropagationLattice = VarMapLattice<ValueLattice>; typedef