Home
last modified time | relevance | path

Searched refs:OldCond (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DHardwareLoops.cpp478 Value *OldCond = ExitBranch->getCondition(); in InsertLoopDec() local
487 RecursivelyDeleteTriviallyDeadInstructions(OldCond); in InsertLoopDec()
521 Value *OldCond = ExitBranch->getCondition(); in UpdateBranch() local
530 RecursivelyDeleteTriviallyDeadInstructions(OldCond); in UpdateBranch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp810 auto *OldCond = Guard->getOperand(0); in widenGuardConditions() local
812 RecursivelyDeleteTriviallyDeadInstructions(OldCond); in widenGuardConditions()
836 auto *OldCond = BI->getCondition(); in widenWidenableBranchGuardConditions() local
838 RecursivelyDeleteTriviallyDeadInstructions(OldCond); in widenWidenableBranchGuardConditions()
1173 Value *OldCond = BI->getCondition(); in predicateLoopExits() local
1174 BI->setCondition(ConstantInt::get(OldCond->getType(), !ExitIfTrue)); in predicateLoopExits()
H A DIndVarSimplify.cpp1296 auto *OldCond = BI->getCondition(); in replaceExitCond() local
1298 if (OldCond->use_empty()) in replaceExitCond()
1299 DeadInsts.emplace_back(OldCond); in replaceExitCond()
1306 auto *OldCond = BI->getCondition(); in foldExit() local
1308 ConstantInt::get(OldCond->getType(), IsTaken ? ExitIfTrue : !ExitIfTrue); in foldExit()
1710 Value *OldCond = BI->getCondition(); in predicateLoopExits() local
1712 if (OldCond->use_empty()) in predicateLoopExits()
1713 DeadInsts.emplace_back(OldCond); in predicateLoopExits()
H A DLoopStrengthReduce.cpp2517 ICmpInst *OldCond = Cond; in OptimizeLoopTermCond() local
2524 TermBr->replaceUsesOfWith(OldCond, Cond); in OptimizeLoopTermCond()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp204 const Attr *A, Expr *OldCond, const Decl *Tmpl, FunctionDecl *New) { in instantiateDependentFunctionAttrCondition() argument
210 ExprResult Result = S.SubstExpr(OldCond, TemplateArgs); in instantiateDependentFunctionAttrCondition()
223 if (OldCond->isValueDependent() && !Cond->isValueDependent() && in instantiateDependentFunctionAttrCondition()
513 Expr *OldCond = ES.getExpr(); in instantiateExplicitSpecifier() local
518 ExprResult SubstResult = S.SubstExpr(OldCond, TemplateArgs); in instantiateExplicitSpecifier()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp6394 auto *OldCond = BI->getCondition(); in simplifyCondBranch() local
6398 RecursivelyDeleteTriviallyDeadInstructions(OldCond); in simplifyCondBranch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.td3333 class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond,
3335 : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp15753 auto OldCond = static_cast<AArch64CC::CondCode>(OpCC->getZExtValue()); in performSETCCCombine() local
15754 auto NewCond = getInvertedCondCode(OldCond); in performSETCCCombine()