HomeSort by relevance Sort by last modified time
    Searched refs:isNSW (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 50 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
57 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
134 Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 36 bool isNUW = false, isNSW = false, isExact = false;
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;
426 isNSW = BO->hasNoSignedWrap();
448 if (isNSW)
449 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
493 if (isNSW) BinOp->setHasNoSignedWrap()
    [all...]
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 264 bool isNSW = cast<BinaryOperator>(Inst)->hasNoSignedWrap();
276 isNSW = isNUW = false;
286 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, DL, TLI, DT)) {
InstructionSimplify.cpp 520 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
576 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
579 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
657 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
770 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
773 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
    [all...]

Completed in 94 milliseconds