Home
last modified time | relevance | path

Searched refs:CondIsTrue (Results 1 – 11 of 11) sorted by relevance

/external/clang/include/clang/AST/
DExpr.h3551 bool CondIsTrue; variable
3564 BuiltinLoc(BLoc), RParenLoc(RP), CondIsTrue(condIsTrue) { in ChooseExpr()
3578 return CondIsTrue; in isConditionTrue()
3580 void setIsConditionTrue(bool isTrue) { CondIsTrue = isTrue; } in setIsConditionTrue()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DJumpThreading.cpp1220 bool CondIsTrue = PBI->getSuccessor(0) == CurrentBB; in ProcessImpliedCondition() local
1222 isImpliedCondition(PBI->getCondition(), Cond, DL, CondIsTrue); in ProcessImpliedCondition()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp3287 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
3289 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue)); in SimplifyCondBranchToCondBranch()
3309 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
3311 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue), in SimplifyCondBranchToCondBranch()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2775 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
2777 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue)); in SimplifyCondBranchToCondBranch()
2797 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
2799 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue), in SimplifyCondBranchToCondBranch()
/external/llvm-project/clang/include/clang/AST/
DExpr.h4448 bool CondIsTrue; variable
4454 CondIsTrue(condIsTrue) { in ChooseExpr()
4470 return CondIsTrue; in isConditionTrue()
4472 void setIsConditionTrue(bool isTrue) { CondIsTrue = isTrue; } in setIsConditionTrue()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DJumpThreading.cpp1259 bool CondIsTrue = PBI->getSuccessor(0) == CurrentBB; in processImpliedCondition() local
1261 isImpliedCondition(PBI->getCondition(), Cond, DL, CondIsTrue); in processImpliedCondition()
/external/llvm-project/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp3437 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
3439 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue)); in SimplifyCondBranchToCondBranch()
3459 bool CondIsTrue = PBI->getSuccessor(0) == BB; in SimplifyCondBranchToCondBranch() local
3461 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue), in SimplifyCondBranchToCondBranch()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp5591 bool CondIsTrue = TrueBB == ContextBB; in isImpliedByDomCondition() local
5592 return isImpliedCondition(PredCond, Cond, DL, CondIsTrue); in isImpliedByDomCondition()
/external/clang/lib/Sema/
DSemaExpr.cpp11898 bool CondIsTrue = false; in ActOnChooseExpr() local
11911 CondIsTrue = condEval.getZExtValue(); in ActOnChooseExpr()
11914 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; in ActOnChooseExpr()
11924 CondIsTrue, resType->isDependentType(), ValueDependent); in ActOnChooseExpr()
/external/llvm-project/clang/lib/Sema/
DSemaExpr.cpp15124 bool CondIsTrue = false; in ActOnChooseExpr() local
15135 CondIsTrue = condEval.getZExtValue(); in ActOnChooseExpr()
15138 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; in ActOnChooseExpr()
15146 resType, VK, OK, RPLoc, CondIsTrue); in ActOnChooseExpr()
/external/llvm-project/clang/lib/AST/
DASTImporter.cpp6485 bool CondIsTrue = !E->isConditionDependent() && E->isConditionTrue(); in VisitChooseExpr() local
6489 ToRParenLoc, CondIsTrue); in VisitChooseExpr()