HomeSort by: relevance | last modified time | path
    Searched refs:isNSW (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
InstructionSimplify.h 152 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
156 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
202 Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
PHITransAddr.cpp 257 bool isNSW = cast<BinaryOperator>(Inst)->hasNoSignedWrap();
269 isNSW = isNUW = false;
279 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, {DL, TLI, DT, AC})) {
InstructionSimplify.cpp 612 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW,
646 if ((IsNSW || IsNUW) && match(Op1, m_SignMask()) &&
676 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW,
678 return ::SimplifyAddInst(Op0, Op1, IsNSW, IsNUW, Query, RecursionLimit);
731 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
759 if (isNSW)
859 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
861 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit);
1234 Value *Op1, bool IsNSW, const SimplifyQuery &Q,
1280 if (IsNSW) {
    [all...]

Completed in 55 milliseconds