Home
last modified time | relevance | path

Searched refs:NotCond (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1664 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 DSimplifyCFG.cpp2791 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 DDAGCombiner.cpp7289 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 DSelectionDAGBuilder.cpp1851 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()