Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp434 Value *LeftVal, *RightVal; in countToEliminateCompares() local
435 if (match(Condition, m_And(m_Value(LeftVal), m_Value(RightVal))) || in countToEliminateCompares()
436 match(Condition, m_Or(m_Value(LeftVal), m_Value(RightVal)))) { in countToEliminateCompares()
437 ComputePeelCount(LeftVal, Depth + 1); in countToEliminateCompares()
443 if (!match(Condition, m_ICmp(Pred, m_Value(LeftVal), m_Value(RightVal)))) in countToEliminateCompares()
446 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2341 SVal LeftVal = state->getSVal(Left.Expression, LCtx); in evalStrcmpCommon() local
2342 state = checkNonNull(C, state, Left, LeftVal); in evalStrcmpCommon()
2354 SVal LeftLength = getCStringLength(C, state, Left.Expression, LeftVal); in evalStrcmpCommon()
2366 DefinedOrUnknownSVal LV = LeftVal.castAs<DefinedOrUnknownSVal>(); in evalStrcmpCommon()
2396 getCStringLiteral(C, state, Left.Expression, LeftVal); in evalStrcmpCommon()
/freebsd/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()