Home | History | Annotate | Download | only in Analysis

Lines Matching defs:NSW

46 static void ComputeMaskedBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW,
112 if (NSW) {
132 static void ComputeMaskedBitsMul(Value *Op0, Value *Op1, bool NSW,
145 if (NSW) {
374 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
375 ComputeMaskedBitsMul(I->getOperand(0), I->getOperand(1), NSW,
521 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
522 ComputeMaskedBitsAddSub(false, I->getOperand(0), I->getOperand(1), NSW,
528 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
529 ComputeMaskedBitsAddSub(true, I->getOperand(0), I->getOperand(1), NSW,