Lines Matching refs:SRem
2207 case Instruction::SRem: in visitICmpInstWithInstAndIntCst()
3972 BinaryOperator *SRem = nullptr; in visitICmpInst() local
3974 if (BO0 && BO0->getOpcode() == Instruction::SRem && in visitICmpInst()
3976 SRem = BO0; in visitICmpInst()
3978 else if (BO1 && BO1->getOpcode() == Instruction::SRem && in visitICmpInst()
3980 SRem = BO1; in visitICmpInst()
3981 if (SRem) { in visitICmpInst()
3984 switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) { in visitICmpInst()
3992 return new ICmpInst(ICmpInst::ICMP_SGT, SRem->getOperand(1), in visitICmpInst()
3993 Constant::getAllOnesValue(SRem->getType())); in visitICmpInst()
3996 return new ICmpInst(ICmpInst::ICMP_SLT, SRem->getOperand(1), in visitICmpInst()
3997 Constant::getNullValue(SRem->getType())); in visitICmpInst()