Lines Matching refs:NotCond
2684 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2685 return SelectInst::Create(NotCond, FalseVal, Zero); in visitSelectInst()
2689 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2690 return SelectInst::Create(NotCond, One, TrueVal); in visitSelectInst()
2829 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2830 return new ZExtInst(NotCond, SelType); in visitSelectInst()
2835 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2836 return new SExtInst(NotCond, SelType); in visitSelectInst()
3171 Value *NotCond; in visitSelectInst() local
3172 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
3174 replaceOperand(SI, 0, NotCond); in visitSelectInst()