Searched refs:isNUW (Results 1 – 4 of 4) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| HD | InstructionSimplify.h | 126 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 130 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 176 Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | PHITransAddr.cpp | 258 bool isNUW = cast<BinaryOperator>(Inst)->hasNoUnsignedWrap(); in PHITranslateSubExpr() local 269 isNSW = isNUW = false; in PHITranslateSubExpr() 279 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, {DL, TLI, DT, AC})) { in PHITranslateSubExpr()
|
| HD | InstructionSimplify.cpp | 737 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifySubInst() argument 758 if (isNUW) in SimplifySubInst() 865 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifySubInst() argument 867 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit); in SimplifySubInst() 1313 static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifyShlInst() argument 1321 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType()); in SimplifyShlInst() 1330 if (isNUW && match(Op0, m_Negative())) in SimplifyShlInst() 1338 Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifyShlInst() argument 1340 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit); in SimplifyShlInst() 1669 bool isNUW = IIQ.hasNoUnsignedWrap(AddInst); in simplifyAndOfICmpsWithAdd() local [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineInternal.h | 373 Value *LHS, Value *RHS, Type *Ty, bool isNUW);
|