Home | History | Annotate | Download | only in Analysis

Lines Matching defs:LV

95   virtual void PrintLatticeVal(LatticeVal LV, raw_ostream &OS);
104 virtual Value *GetValueFromLatticeVal(LatticeVal LV, Type *Ty = nullptr) {
184 void UpdateState(LatticeKey Key, LatticeVal LV);
236 LatticeVal LV = LatticeFunc->ComputeLatticeVal(Key);
239 if (LV == LatticeFunc->getUntrackedVal())
240 return LV;
241 return ValueState[Key] = LV;
246 LatticeVal LV) {
248 if (I != ValueState.end() && I->second == LV)
253 ValueState[Key] = LV;
512 LatticeVal LV;
516 std::tie(Key, LV) = Entry;
517 if (LV == LatticeFunc->getUntrackedVal())
520 LatticeFunc->PrintLatticeVal(LV, OS);