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

  /external/llvm/lib/Analysis/
PHITransAddr.cpp 265 bool isNUW = cast<BinaryOperator>(Inst)->hasNoUnsignedWrap();
276 isNSW = isNUW = false;
286 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, TD, TLI, DT)) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 34 bool isNUW = false, isNSW = false, isExact = false;
37 isNUW = BO->hasNoUnsignedWrap();
58 if (isNUW)
59 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
123 if (isNUW) NewBinOp->setHasNoUnsignedWrap();
405 bool isNUW = false, isNSW = false, isExact = false;
425 isNUW = BO->hasNoUnsignedWrap();
446 if (isNUW)
447 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
492 if (isNUW) BinOp->setHasNoUnsignedWrap()
    [all...]

Completed in 61 milliseconds