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

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp266 bool isNSW = cast<BinaryOperator>(Inst)->hasNoSignedWrap(); 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*/fals
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp34 bool isNUW = false, isNSW = false, isExact = false; local
38 isNSW = BO->hasNoSignedWrap();
60 if (isNSW)
61 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
124 if (isNSW) NewBinOp->setHasNoSignedWrap();
405 bool isNUW = false, isNSW = false, isExact = false; local
426 isNSW = BO->hasNoSignedWrap();
448 if (isNSW)
449 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
493 if (isNSW) BinO
[all...]

Completed in 104 milliseconds