/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 3242 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local 3243 return SelectInst::Create(NotCond, FalseVal, Zero); in foldSelectOfBools() 3247 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local 3248 return SelectInst::Create(NotCond, One, TrueVal); in foldSelectOfBools() 3641 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 3642 return new ZExtInst(NotCond, SelType); in visitSelectInst() 3647 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 3648 return new SExtInst(NotCond, SelType); in visitSelectInst() 3932 Value *NotCond; in visitSelectInst() local 3933 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 429 Value *NotCond; in findMergedConditions() local 430 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in findMergedConditions() 431 isValInBlock(NotCond, CurBB->getBasicBlock())) { in findMergedConditions() 432 findMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in findMergedConditions()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 11409 SDValue NotCond = in foldSelectOfConstants() local 11412 return NotCond; in foldSelectOfConstants() 11413 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants() 11435 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 11436 NotCond = DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants() 11437 return NotCond; in foldSelectOfConstants() 11442 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 11443 NotCond = DAG.getSExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants() 11444 return NotCond; in foldSelectOfConstants() 11485 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local [all …]
|
H A D | SelectionDAGBuilder.cpp | 2633 Value *NotCond; in FindMergedConditions() local 2634 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in FindMergedConditions() 2635 InBlock(NotCond, CurBB->getBasicBlock())) { in FindMergedConditions() 2636 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in FindMergedConditions()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 8475 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get()); in buildIfNotCondReturnFalse() local 8476 if (NotCond.isInvalid()) in buildIfNotCondReturnFalse() 8486 S.ActOnCondition(nullptr, Loc, NotCond.get(), in buildIfNotCondReturnFalse()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 46368 SDValue NotCond = in combineSelect() local 46370 return DAG.getSelect(DL, VT, NotCond, RHS, LHS); in combineSelect() 50763 SDValue NotCond = getSETCC(CCode, Cond.getOperand(1), SDLoc(Cond), DAG); in combineOr() local 50765 SDValue R = DAG.getZExtOrTrunc(NotCond, dl, VT); in combineOr()
|