Home
last modified time | relevance | path

Searched refs:RightVal (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp375 Value *LeftVal, *RightVal; in countToEliminateCompares() local
376 if (match(Condition, m_And(m_Value(LeftVal), m_Value(RightVal))) || in countToEliminateCompares()
377 match(Condition, m_Or(m_Value(LeftVal), m_Value(RightVal)))) { in countToEliminateCompares()
379 ComputePeelCount(RightVal, Depth + 1); in countToEliminateCompares()
384 if (!match(Condition, m_ICmp(Pred, m_Value(LeftVal), m_Value(RightVal)))) in countToEliminateCompares()
388 const SCEV *RightSCEV = SE.getSCEV(RightVal); in countToEliminateCompares()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2305 SVal RightVal = state->getSVal(Right.Expression, LCtx); in evalStrcmpCommon() local
2306 state = checkNonNull(C, state, Right, RightVal); in evalStrcmpCommon()
2316 SVal RightLength = getCStringLength(C, state, Right.Expression, RightVal); in evalStrcmpCommon()
2324 DefinedOrUnknownSVal RV = RightVal.castAs<DefinedOrUnknownSVal>(); in evalStrcmpCommon()
2355 getCStringLiteral(C, state, Right.Expression, RightVal); in evalStrcmpCommon()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp221 const ExplodedNode *RightNode, SVal RightVal) { in hasVisibleUpdate() argument
222 if (LeftVal == RightVal) in hasVisibleUpdate()
229 const auto RLCV = RightVal.getAs<nonloc::LazyCompoundVal>(); in hasVisibleUpdate()