Searched defs:isNUW (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp267 bool isNUW = cast<BinaryOperator>(Inst)->hasNoUnsignedWrap(); local
278 isNSW = isNUW = false;
288 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, TD, TLI, DT)) {
H A DInstructionSimplify.cpp592 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
653 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
656 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
757 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
882 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
885 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
1234 static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
1250 Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
1253 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
2681 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/fals
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp34 bool isNUW = false, isNSW = false, isExact = false; local
37 isNUW = BO->hasNoUnsignedWrap();
58 if (isNUW)
59 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
123 if (isNUW) NewBinOp->setHasNoUnsignedWrap();
405 bool isNUW = false, isNSW = false, isExact = false; local
425 isNUW = BO->hasNoUnsignedWrap();
446 if (isNUW)
447 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
492 if (isNUW) BinO
[all...]

Completed in 104 milliseconds