Lines Matching refs:SRem
1756 case Instruction::SRem: in visitICmpInstWithInstAndIntCst()
3390 BinaryOperator *SRem = nullptr; in visitICmpInst() local
3392 if (BO0 && BO0->getOpcode() == Instruction::SRem && in visitICmpInst()
3394 SRem = BO0; in visitICmpInst()
3396 else if (BO1 && BO1->getOpcode() == Instruction::SRem && in visitICmpInst()
3398 SRem = BO1; in visitICmpInst()
3399 if (SRem) { in visitICmpInst()
3402 switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) { in visitICmpInst()
3410 return new ICmpInst(ICmpInst::ICMP_SGT, SRem->getOperand(1), in visitICmpInst()
3411 Constant::getAllOnesValue(SRem->getType())); in visitICmpInst()
3414 return new ICmpInst(ICmpInst::ICMP_SLT, SRem->getOperand(1), in visitICmpInst()
3415 Constant::getNullValue(SRem->getType())); in visitICmpInst()