Lines Matching refs:NotCond
3043 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()
3715 replaceOperand(SI, 0, NotCond); in visitSelectInst()