Lines Matching defs:IsSigned
101 bool IsSigned);
367 bool IsSigned) {
374 if (!UsedAsNumerator && !IsSigned)
383 bool IsNumeratorNonNegative = !IsSigned || SE->isKnownNonNegative(N);
393 auto LT = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
409 if (!IsSigned || !SE->isKnownNonNegative(D))
1143 Value *createExtendInst(Value *NarrowOper, Type *WideType, bool IsSigned,
1235 ExtendKindMap[OrigPhi] = WI.IsSigned ? ExtendKind::Sign : ExtendKind::Zero;
1239 bool IsSigned, Instruction *Use) {
1248 return IsSigned ? Builder.CreateSExt(NarrowOper, WideType) :
1288 bool IsSigned = getExtendKind(NarrowDef) == ExtendKind::Sign;
1292 IsSigned, NarrowUse);
1296 IsSigned, NarrowUse);
1618 bool IsSigned = getExtendKind(DU.NarrowDef) == ExtendKind::Sign;
1619 if (!(DU.NeverNegative || IsSigned == Cmp->isSigned()))