Lines Matching refs:NotCond
2694 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2695 return SelectInst::Create(NotCond, FalseVal, Zero); in visitSelectInst()
2699 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2700 return SelectInst::Create(NotCond, One, TrueVal); in visitSelectInst()
2853 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2854 return new ZExtInst(NotCond, SelType); in visitSelectInst()
2859 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
2860 return new SExtInst(NotCond, SelType); in visitSelectInst()
3114 Value *NotCond; in visitSelectInst() local
3115 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
3117 replaceOperand(SI, 0, NotCond); in visitSelectInst()