Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2681 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2682 return SelectInst::Create(NotCond, FalseVal, Zero); in visitSelectInst()
2686 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2687 return SelectInst::Create(NotCond, One, TrueVal); in visitSelectInst()
2809 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2810 return new ZExtInst(NotCond, SelType); in visitSelectInst()
2815 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2816 return new SExtInst(NotCond, SelType); in visitSelectInst()
3128 Value *NotCond; in visitSelectInst() local
3129 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp410 Value *NotCond; in findMergedConditions() local
411 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in findMergedConditions()
412 isValInBlock(NotCond, CurBB->getBasicBlock())) { in findMergedConditions()
413 findMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in findMergedConditions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9281 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
9283 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond); in foldSelectOfConstants()
9284 return NotCond; in foldSelectOfConstants()
9288 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
9290 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond); in foldSelectOfConstants()
9291 return NotCond; in foldSelectOfConstants()
9356 SDValue NotCond = in foldSelectOfConstants() local
9359 return NotCond; in foldSelectOfConstants()
9360 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
9387 SDValue NotCond = DAG.getNOT(SDLoc(N), Cond, VT); in foldBoolSelectToLogic() local
[all …]
H A DSelectionDAGBuilder.cpp2191 Value *NotCond; in FindMergedConditions() local
2192 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in FindMergedConditions()
2193 InBlock(NotCond, CurBB->getBasicBlock())) { in FindMergedConditions()
2194 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in FindMergedConditions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp8143 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get()); in buildIfNotCondReturnFalse() local
8144 if (NotCond.isInvalid()) in buildIfNotCondReturnFalse()
8154 S.ActOnCondition(nullptr, Loc, NotCond.get(), in buildIfNotCondReturnFalse()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp41908 SDValue NotCond = in combineSelect() local
41910 return DAG.getSelect(DL, VT, NotCond, RHS, LHS); in combineSelect()