Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2684 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2685 return SelectInst::Create(NotCond, FalseVal, Zero); in visitSelectInst()
2689 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2690 return SelectInst::Create(NotCond, One, TrueVal); in visitSelectInst()
2829 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2830 return new ZExtInst(NotCond, SelType); in visitSelectInst()
2835 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2836 return new SExtInst(NotCond, SelType); in visitSelectInst()
3171 Value *NotCond; in visitSelectInst() local
3172 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp414 Value *NotCond; in findMergedConditions() local
415 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in findMergedConditions()
416 isValInBlock(NotCond, CurBB->getBasicBlock())) { in findMergedConditions()
417 findMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in findMergedConditions()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9362 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
9364 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond); in foldSelectOfConstants()
9365 return NotCond; in foldSelectOfConstants()
9369 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
9371 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond); in foldSelectOfConstants()
9372 return NotCond; in foldSelectOfConstants()
9437 SDValue NotCond = in foldSelectOfConstants() local
9440 return NotCond; in foldSelectOfConstants()
9441 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
9468 SDValue NotCond = DAG.getNOT(SDLoc(N), Cond, VT); in foldBoolSelectToLogic() local
[all …]
H A DSelectionDAGBuilder.cpp2192 Value *NotCond; in FindMergedConditions() local
2193 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in FindMergedConditions()
2194 InBlock(NotCond, CurBB->getBasicBlock())) { in FindMergedConditions()
2195 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in FindMergedConditions()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp8150 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get()); in buildIfNotCondReturnFalse() local
8151 if (NotCond.isInvalid()) in buildIfNotCondReturnFalse()
8161 S.ActOnCondition(nullptr, Loc, NotCond.get(), in buildIfNotCondReturnFalse()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp42198 SDValue NotCond = in combineSelect() local
42200 return DAG.getSelect(DL, VT, NotCond, RHS, LHS); in combineSelect()