Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3043 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local
3044 return SelectInst::Create(NotCond, FalseVal, Zero); in foldSelectOfBools()
3048 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local
3049 return SelectInst::Create(NotCond, One, TrueVal); in foldSelectOfBools()
3420 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
3421 return new ZExtInst(NotCond, SelType); in visitSelectInst()
3426 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
3427 return new SExtInst(NotCond, SelType); in visitSelectInst()
3712 Value *NotCond; in visitSelectInst() local
3713 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp429 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 DDAGCombiner.cpp11348 SDValue NotCond = in foldSelectOfConstants() local
11351 return NotCond; in foldSelectOfConstants()
11352 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
11374 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
11375 NotCond = DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
11376 return NotCond; in foldSelectOfConstants()
11381 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
11382 NotCond = DAG.getSExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
11383 return NotCond; in foldSelectOfConstants()
11424 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local
[all …]
H A DSelectionDAGBuilder.cpp2446 Value *NotCond; in FindMergedConditions() local
2447 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) && in FindMergedConditions()
2448 InBlock(NotCond, CurBB->getBasicBlock())) { in FindMergedConditions()
2449 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb, in FindMergedConditions()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp8578 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get()); in buildIfNotCondReturnFalse() local
8579 if (NotCond.isInvalid()) in buildIfNotCondReturnFalse()
8589 S.ActOnCondition(nullptr, Loc, NotCond.get(), in buildIfNotCondReturnFalse()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp45300 SDValue NotCond = in combineSelect() local
45302 return DAG.getSelect(DL, VT, NotCond, RHS, LHS); in combineSelect()
49429 SDValue NotCond = getSETCC(CCode, Cond.getOperand(1), SDLoc(Cond), DAG); in combineOr() local
49431 SDValue R = DAG.getZExtOrTrunc(NotCond, dl, VT); in combineOr()