Searched refs:NotCond (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 1664 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1665 return BinaryOperator::CreateAnd(NotCond, FalseVal); in visitSelectInst() 1673 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1674 return BinaryOperator::CreateOr(NotCond, TrueVal); in visitSelectInst() 1710 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1711 return new ZExtInst(NotCond, SelType); in visitSelectInst() 1716 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1717 return new SExtInst(NotCond, SelType); in visitSelectInst() 2005 Value *NotCond; in visitSelectInst() local 2006 if (match(CondVal, m_Not(m_Value(NotCond)))) { in visitSelectInst() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 2791 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2794 Builder.CreateBinOp(Instruction::And, NotCond, CondInPred, in FoldBranchToCommonDest() 2806 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2809 Instruction::Or, NotCond, MergedCond, "or.cond")); in FoldBranchToCommonDest()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 7289 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 7291 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond); in foldSelectOfConstants() 7292 return NotCond; in foldSelectOfConstants() 7296 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 7298 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond); in foldSelectOfConstants() 7299 return NotCond; in foldSelectOfConstants() 7350 SDValue NotCond = in foldSelectOfConstants() local 7353 return NotCond; in foldSelectOfConstants() 7354 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
|
| H A D | SelectionDAGBuilder.cpp | 1851 Value *NotCond; in FindMergedConditions() local 1852 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in FindMergedConditions() 1853 InBlock(NotCond, CurBB->getBasicBlock())) { in FindMergedConditions() 1854 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in FindMergedConditions()
|