Searched refs:LeftVal (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopPeel.cpp | 375 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() 378 ComputePeelCount(LeftVal, Depth + 1); in countToEliminateCompares() 384 if (!match(Condition, m_ICmp(Pred, m_Value(LeftVal), m_Value(RightVal)))) in countToEliminateCompares() 387 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CStringChecker.cpp | 2298 SVal LeftVal = state->getSVal(Left.Expression, LCtx); in evalStrcmpCommon() local 2299 state = checkNonNull(C, state, Left, LeftVal); in evalStrcmpCommon() 2311 SVal LeftLength = getCStringLength(C, state, Left.Expression, LeftVal); in evalStrcmpCommon() 2323 DefinedOrUnknownSVal LV = LeftVal.castAs<DefinedOrUnknownSVal>(); in evalStrcmpCommon() 2353 getCStringLiteral(C, state, Left.Expression, LeftVal); in evalStrcmpCommon()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporterVisitors.cpp | 220 static bool hasVisibleUpdate(const ExplodedNode *LeftNode, SVal LeftVal, in hasVisibleUpdate() argument 222 if (LeftVal == RightVal) in hasVisibleUpdate() 225 const auto LLCV = LeftVal.getAs<nonloc::LazyCompoundVal>(); in hasVisibleUpdate()
|