Lines Matching full:lv
96 virtual void PrintLatticeVal(LatticeVal LV, raw_ostream &OS);
105 virtual Value *GetValueFromLatticeVal(LatticeVal LV, Type *Ty = nullptr) {
185 void UpdateState(LatticeKey Key, LatticeVal LV);
237 LatticeVal LV = LatticeFunc->ComputeLatticeVal(Key); in getValueState() local
240 if (LV == LatticeFunc->getUntrackedVal()) in getValueState()
241 return LV; in getValueState()
242 return ValueState[Key] = std::move(LV); in getValueState()
247 LatticeVal LV) { in UpdateState() argument
249 if (I != ValueState.end() && I->second == LV) in UpdateState()
254 ValueState[Key] = std::move(LV); in UpdateState()
508 LatticeVal LV; in Print() local
512 std::tie(Key, LV) = Entry; in Print()
513 if (LV == LatticeFunc->getUntrackedVal()) in Print()
516 LatticeFunc->PrintLatticeVal(LV, OS); in Print()