Searched refs:TermCond (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ReachableCode.cpp | 708 const Stmt *TermCond = in reportDeadCode() local 710 isConfigurationValue(TermCond, PP, &SilenceableCondVal); in reportDeadCode()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 1295 const Stmt *TermCond = getTerminatorCondition(BSrc); in generatePathDiagnosticsForNode() local 1297 PM, getStmtBeforeCond(PM, TermCond, C.getCurrentNode()), Term); in generatePathDiagnosticsForNode() 1316 PathDiagnosticLocation L(TermCond ? TermCond : Term, SM, in generatePathDiagnosticsForNode()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 7087 auto *TermCond = dyn_cast<ICmpInst>(BI->getCondition()); in canFoldTermCondOfLoop() local 7088 if (!TermCond) { in canFoldTermCondOfLoop() 7093 if (!TermCond->hasOneUse()) { in canFoldTermCondOfLoop() 7100 BinaryOperator *LHS = dyn_cast<BinaryOperator>(TermCond->getOperand(0)); in canFoldTermCondOfLoop() 7101 Value *RHS = TermCond->getOperand(1); in canFoldTermCondOfLoop() 7119 if (!isAlmostDeadIV(ToFold, LoopLatch, TermCond)) in canFoldTermCondOfLoop() 7235 << " TermCond: " << *TermCond << "\n" in canFoldTermCondOfLoop()
|