Lines Matching refs:ValueState
120 DenseMap<LatticeKey, LatticeVal> ValueState; variable
153 auto I = ValueState.find(Key); in getExistingValueState()
154 return I != ValueState.end() ? I->second : LatticeFunc->getUntrackedVal(); in getExistingValueState()
231 auto I = ValueState.find(Key); in getValueState()
232 if (I != ValueState.end()) in getValueState()
242 return ValueState[Key] = std::move(LV); in getValueState()
248 auto I = ValueState.find(Key); in UpdateState()
249 if (I != ValueState.end() && I->second == LV) in UpdateState()
254 ValueState[Key] = std::move(LV); in UpdateState()
504 if (ValueState.empty()) in Print()
511 for (auto &Entry : ValueState) { in Print()