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

  /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)) {
  /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...]

Completed in 58 milliseconds