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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 708 if (match(I.getOperand(0), m_OneUse(m_Shl(m_Constant(C1), m_Value(A)))) &&
709 match(I.getOperand(1), m_Constant(C2)))
InstCombineMulDivRem.cpp 135 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
136 m_Constant(C1))) &&
141 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
    [all...]
InstCombineVectorOps.cpp 99 if (match(V, m_Add(m_Value(Val), m_Constant(Con)))) {
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/llvm/include/llvm/Support/
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 73 milliseconds