Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp360 Value *LeftVal, *RightVal; in countToEliminateCompares() local
361 if (match(Condition, m_And(m_Value(LeftVal), m_Value(RightVal))) || in countToEliminateCompares()
362 match(Condition, m_Or(m_Value(LeftVal), m_Value(RightVal)))) { in countToEliminateCompares()
363 ComputePeelCount(LeftVal, Depth + 1); in countToEliminateCompares()
369 if (!match(Condition, m_ICmp(Pred, m_Value(LeftVal), m_Value(RightVal)))) in countToEliminateCompares()
372 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2150 SVal LeftVal = state->getSVal(Left.Expression, LCtx); in evalStrcmpCommon() local
2151 state = checkNonNull(C, state, Left, LeftVal); in evalStrcmpCommon()
2163 SVal LeftLength = getCStringLength(C, state, Left.Expression, LeftVal); in evalStrcmpCommon()
2175 DefinedOrUnknownSVal LV = LeftVal.castAs<DefinedOrUnknownSVal>(); in evalStrcmpCommon()
2205 getCStringLiteral(C, state, Left.Expression, LeftVal); in evalStrcmpCommon()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp216 static bool hasVisibleUpdate(const ExplodedNode *LeftNode, SVal LeftVal, in hasVisibleUpdate() argument
218 if (LeftVal == RightVal) in hasVisibleUpdate()
221 const auto LLCV = LeftVal.getAs<nonloc::LazyCompoundVal>(); in hasVisibleUpdate()