Searched refs:CondIsTrue (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | JumpThreading.cpp | 1176 bool CondIsTrue = PBI->getSuccessor(0) == CurrentBB; in processImpliedCondition() local 1178 isImpliedCondition(PBI->getCondition(), Cond, DL, CondIsTrue); in processImpliedCondition() 1185 Implication = CondIsTrue; in processImpliedCondition()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Expr.h | 4586 bool CondIsTrue; variable 4592 CondIsTrue(condIsTrue) { in ChooseExpr() 4608 return CondIsTrue; in isConditionTrue() 4610 void setIsConditionTrue(bool isTrue) { CondIsTrue = isTrue; } in setIsConditionTrue()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 938 bool CondIsTrue = CondIsConstInt && (!ControllingExpression || in checkIfLoopMustProgress() local 953 if (HasEmptyBody && CondIsTrue) { in checkIfLoopMustProgress()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 2797 bool CondIsTrue, in simplifyNestedSelectsUsingImpliedCond() argument 2804 if (auto Implied = isImpliedCondition(CondVal, InnerCondVal, DL, CondIsTrue)) in simplifyNestedSelectsUsingImpliedCond()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 4766 bool CondIsTrue, in computeKnownFPClassFromCond() argument 4778 KnownFromContext.knownNot(~(CondIsTrue ? MaskIfTrue : MaskIfFalse)); in computeKnownFPClassFromCond() 4782 KnownFromContext.knownNot(CondIsTrue ? ~Mask : Mask); in computeKnownFPClassFromCond() 4788 if (TrueIfSigned == CondIsTrue) in computeKnownFPClassFromCond()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 4406 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local 4408 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue)); in SimplifyCondBranchToCondBranch()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 15903 bool CondIsTrue = false; in ActOnChooseExpr() local 15914 CondIsTrue = condEval.getZExtValue(); in ActOnChooseExpr() 15917 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; in ActOnChooseExpr() 15925 resType, VK, OK, RPLoc, CondIsTrue); in ActOnChooseExpr()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTImporter.cpp | 7305 bool CondIsTrue = !E->isConditionDependent() && E->isConditionTrue(); in VisitChooseExpr() local 7309 ToRParenLoc, CondIsTrue); in VisitChooseExpr()
|