Lines Matching refs:NotCond
1664 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
1665 return BinaryOperator::CreateAnd(NotCond, FalseVal); in visitSelectInst()
1673 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
1674 return BinaryOperator::CreateOr(NotCond, TrueVal); in visitSelectInst()
1710 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
1711 return new ZExtInst(NotCond, SelType); in visitSelectInst()
1716 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
1717 return new SExtInst(NotCond, SelType); in visitSelectInst()
2005 Value *NotCond; in visitSelectInst() local
2006 if (match(CondVal, m_Not(m_Value(NotCond)))) { in visitSelectInst()
2007 SI.setOperand(0, NotCond); in visitSelectInst()