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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 140 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
141 m_Constant(C1))) &&
146 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
205 if (match(Op0, m_OneUse(m_Add(m_Value(X), m_Constant(C1))))) {
923 if (match(Op0, m_LShr(m_Value(X), m_Constant(C1))))
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineShifts.cpp 722 if (match(I.getOperand(0), m_OneUse(m_Shl(m_Constant(C1), m_Value(A)))) &&
723 match(I.getOperand(1), m_Constant(C2)))
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineVectorOps.cpp 103 if (match(V, m_Add(m_Value(Val), m_Constant(Con)))) {
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 78 inline class_match<Constant> m_Constant() { return class_match<Constant>(); }
305 /// m_Constant - Match a Constant, capturing the value if we match.
306 inline bind_ty<Constant> m_Constant(Constant *&C) { return C; }
    [all...]

Completed in 56 milliseconds