Lines Matching defs:IsNUW
5224 bool IsNUW = false;
5235 IsNUW = OBO->hasNoUnsignedWrap();
5240 bool IsNUW = false)
5241 : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW) {}
5274 /*IsNSW=*/true, /*IsNUW=*/true);
5326 /* IsNSW = */ Signed, /* IsNUW = */ !Signed);
5752 if (BO->IsNUW)
5858 if (BO->IsNUW)
7563 if (BO->Op && (BO->IsNSW || BO->IsNUW)) {
14990 bool IsNUW = Flags == SCEVWrapPredicate::IncrementNUSW;
14991 OpStart = IsNUW ? SE.getNoopOrZeroExtend(OpStart, WiderTy)
14993 Start = IsNUW ? SE.getNoopOrZeroExtend(Start, WiderTy)
14995 CmpInst::Predicate Pred = IsNUW ? CmpInst::ICMP_ULE : CmpInst::ICMP_SLE;