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

  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 35 bool isNUW = false, isNSW = false, isExact = false;
38 isNUW = BO->hasNoUnsignedWrap();
59 if (isNUW)
60 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
124 if (isNUW) NewBinOp->setHasNoUnsignedWrap();
497 bool isNUW = false, isNSW = false, isExact = false;
517 isNUW = BO->hasNoUnsignedWrap();
538 if (isNUW)
539 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
584 if (isNUW) BinOp->setHasNoUnsignedWrap()
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 51 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
60 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
154 Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 260 bool isNUW = cast<BinaryOperator>(Inst)->hasNoUnsignedWrap();
271 isNSW = isNUW = false;
282 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, DL, TLI, DT, AC)) {
InstructionSimplify.cpp 529 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
585 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
589 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
661 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
684 if (isNUW && match(Op0, m_Zero()))
778 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
782 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
    [all...]

Completed in 107 milliseconds