Searched refs:NotCond (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2383 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); local
2384 return BinaryOperator::CreateAnd(NotCond, FalseVal);
2392 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); local
2393 return BinaryOperator::CreateOr(NotCond, TrueVal);
2429 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); local
2430 return new ZExtInst(NotCond, SelType);
2435 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); local
2436 return new SExtInst(NotCond, SelType);
2747 Value *NotCond; local
2748 if (match(CondVal, m_Not(m_Value(NotCond)))) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2834 Instruction *NotCond = cast<Instruction>( local
2837 Builder.CreateBinOp(Instruction::And, NotCond, CondInPred,
2849 Instruction *NotCond = cast<Instruction>( local
2852 Instruction::Or, NotCond, MergedCond, "or.cond"));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8426 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); local
8428 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond);
8429 return NotCond;
8433 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); local
8435 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond);
8436 return NotCond;
8501 SDValue NotCond = local
8504 return NotCond;
[all...]
H A DSelectionDAGBuilder.cpp2111 Value *NotCond; local
2112 if (match(Cond, m_OneUse(m_Not(m_Value(NotCond)))) &&
2113 InBlock(NotCond, CurBB->getBasicBlock())) {
2114 FindMergedConditions(NotCond, TBB, FBB, CurBB, SwitchBB, Opc, TProb, FProb,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp7765 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get());
7766 if (NotCond.isInvalid())
7776 S.ActOnCondition(nullptr, Loc, NotCond.get(),

Completed in 261 milliseconds