Lines Matching defs:NW
836 Type *ResultTy, GEPNoWrapFlags NW,
866 ConstantExpr::getGetElementPtr(SrcElemTy, Ops[0], NewIdxs, NW, InRange);
906 GEPNoWrapFlags NW = GEP->getNoWrapFlags();
909 NW &= GEP->getNoWrapFlags();
941 if (NW.hasNoUnsignedSignedWrap() && !NW.isInBounds() && Overflow)
942 NW = NW.withoutNoUnsignedSignedWrap();
962 if (!NW.isInBounds() && Offset.isNonNegative()) {
967 NW |= GEPNoWrapFlags::inBounds();
971 if (NW.hasNoUnsignedSignedWrap() && Offset.isNonNegative())
972 NW |= GEPNoWrapFlags::noUnsignedWrap();
977 ConstantInt::get(Ctx, Offset), NW,