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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 255 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) ==
513 OverflowResult computeOverflowForSignedAdd(const Value *LHS,
516 return llvm::computeOverflowForSignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
InstCombiner.h 499 OverflowResult computeOverflowForSignedAdd(const Value *LHS, const Value *RHS,
501 return llvm::computeOverflowForSignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 4728 static OverflowResult computeOverflowForSignedAdd(const Value *LHS,
5206 OverflowResult llvm::computeOverflowForSignedAdd(const AddOperator *Add,
5211 return ::computeOverflowForSignedAdd(Add->getOperand(0), Add->getOperand(1),
5215 OverflowResult llvm::computeOverflowForSignedAdd(const Value *LHS,
5221 return ::computeOverflowForSignedAdd(LHS, RHS, nullptr, DL, AC, CxtI, DT);

Completed in 26 milliseconds