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

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 307 Value *MinLHS, *MinRHS;
310 matchSelectPattern(MinInst, MinLHS, MinRHS).Flavor;
312 PatternMatch::match(MinRHS, PatternMatch::m_ConstantInt(MinC)) &&
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 3205 SDValue MinRHS = Op1.getOperand(1);
3207 return getTruncatedUSUBSAT(DstVT, SubVT, Op0, MinRHS, DAG, SDLoc(N));
3208 if (MinRHS == Op0)
3216 SDValue MinRHS = Op1.getOperand(0).getOperand(1);
3218 return getTruncatedUSUBSAT(DstVT, MinLHS.getValueType(), MinLHS, MinRHS,
3220 if (MinRHS.getOpcode() == ISD::ZERO_EXTEND && MinRHS.getOperand(0) == Op0)
3221 return getTruncatedUSUBSAT(DstVT, MinLHS.getValueType(), MinRHS, MinLHS,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 11220 APInt MinRHS = getSignedRangeMin(RHS);
11225 return (std::move(MinValue) + MaxStrideMinusOne).sgt(MinRHS);
11228 APInt MinRHS = getUnsignedRangeMin(RHS);
11233 return (std::move(MinValue) + MaxStrideMinusOne).ugt(MinRHS);

Completed in 57 milliseconds