Lines Matching refs:NotCond
3242 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local
3243 return SelectInst::Create(NotCond, FalseVal, Zero); in foldSelectOfBools()
3247 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in foldSelectOfBools() local
3248 return SelectInst::Create(NotCond, One, TrueVal); in foldSelectOfBools()
3641 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
3642 return new ZExtInst(NotCond, SelType); in visitSelectInst()
3647 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local
3648 return new SExtInst(NotCond, SelType); in visitSelectInst()
3932 Value *NotCond; in visitSelectInst() local
3933 if (match(CondVal, m_Not(m_Value(NotCond))) && in visitSelectInst()
3935 replaceOperand(SI, 0, NotCond); in visitSelectInst()