Searched refs:IsNUW (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp352 bool IsNUW = hasNoUnsignedWrap(I) && hasNoUnsignedWrap(*Op0); local
362 if (IsNUW)
450 bool IsNUW = hasNoUnsignedWrap(I) && local
453 BinaryOperator *NewBO = (IsNUW && Opcode == Instruction::Add) ?
470 if (IsNUW)
H A DInstCombineAddSub.cpp1604 Type *Ty, bool IsNUW) {
1676 if (IsNUW && !GEP2 && !Swapped && GEP1->isInBounds() &&
2021 /* IsNUW */ false))
1603 OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty, bool IsNUW) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp617 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, argument
651 if ((IsNSW || IsNUW) && match(Op1, m_SignMask()) &&
656 if (IsNUW && match(Op1, m_AllOnes()))
681 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, argument
683 return ::SimplifyAddInst(Op0, Op1, IsNSW, IsNUW, Query, RecursionLimit);
H A DScalarEvolution.cpp4270 bool IsNUW = false;
4281 IsNUW = OBO->hasNoUnsignedWrap();
4286 bool IsNUW = false)
4287 : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW) {}
4359 /* IsNSW = */ Signed, /* IsNUW = */ !Signed);
4784 if (BO->IsNUW)
4882 if (BO->IsNUW)

Completed in 208 milliseconds