Home | History | Annotate | Download | only in Analysis

Lines Matching refs:VO

1788   ScalarEvolution::ValueOffsetPair VO = FindValueInExprValueMap(S, InsertPt);
1789 Value *V = VO.first;
1793 else if (VO.second) {
1796 int64_t Offset = VO.second->getSExtValue();
1800 ConstantInt::getSigned(VO.second->getType(), -(Offset * 8) / ESize);
1804 ConstantInt::getSigned(VO.second->getType(), -Offset);
1812 V = Builder.CreateSub(V, VO.second);
1998 Optional<ScalarEvolution::ValueOffsetPair> VO =
2000 if (VO && VO.getValue().second == nullptr)
2001 return VO.getValue().first;
2033 ScalarEvolution::ValueOffsetPair VO = FindValueInExprValueMap(S, At);
2034 if (VO.first)
2035 return VO;