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

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp264 bool isNSW = cast<BinaryOperator>(Inst)->hasNoSignedWrap(); local
276 isNSW = isNUW = false;
286 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, DL, TLI, DT)) {
H A DInstructionSimplify.cpp520 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
576 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
579 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
657 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
770 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
773 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
1269 static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
1285 Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, argument
1288 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
2892 return SimplifyAddInst(LHS, RHS, /*isNSW*/fals
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp36 bool isNUW = false, isNSW = false, isExact = false; local
40 isNSW = BO->hasNoSignedWrap();
62 if (isNSW)
63 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
126 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 78 milliseconds