Lines Matching refs:CondValue
1170 typedef PointerIntPair<Value *, 1, bool> CondValue; typedef
1173 Value *Val, CondValue CondVal, bool isRevisit, in getValueFromConditionImpl()
1174 SmallDenseMap<CondValue, ValueLatticeElement> &Visited, in getValueFromConditionImpl() argument
1175 SmallVectorImpl<CondValue> &Worklist) { in getValueFromConditionImpl()
1191 CondValue NKey(N, !isTrueDest); in getValueFromConditionImpl()
1209 auto LV = Visited.find(CondValue(L, isTrueDest)); in getValueFromConditionImpl()
1210 auto RV = Visited.find(CondValue(R, isTrueDest)); in getValueFromConditionImpl()
1229 Worklist.push_back(CondValue(L, isTrueDest)); in getValueFromConditionImpl()
1231 Worklist.push_back(CondValue(R, isTrueDest)); in getValueFromConditionImpl()
1241 SmallDenseMap<CondValue, ValueLatticeElement> Visited; in getValueFromCondition()
1242 SmallVector<CondValue> Worklist; in getValueFromCondition()
1244 CondValue CondKey(Cond, isTrueDest); in getValueFromCondition()
1247 CondValue CurrentCond = Worklist.back(); in getValueFromCondition()