reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/Reassociate.cpp
 1446     if (i+1 != Ops.size() && Ops[i+1].Op == TheOp) {
 1452       } while (i != Ops.size() && Ops[i].Op == TheOp);
 1454       LLVM_DEBUG(dbgs() << "\nFACTORING [" << NumFound << "]: " << *TheOp
 1459       Type *Ty = TheOp->getType();
 1462       Instruction *Mul = CreateMul(TheOp, C, "factor", I, I);
 1485     if (!match(TheOp, m_Neg(m_Value(X))) && !match(TheOp, m_Not(m_Value(X))) &&
 1485     if (!match(TheOp, m_Neg(m_Value(X))) && !match(TheOp, m_Not(m_Value(X))) &&
 1486         !match(TheOp, m_FNeg(m_Value(X))))
 1495         (match(TheOp, m_Neg(m_Value())) || match(TheOp, m_FNeg(m_Value()))))
 1495         (match(TheOp, m_Neg(m_Value())) || match(TheOp, m_FNeg(m_Value()))))
 1499     if (Ops.size() == 2 && match(TheOp, m_Not(m_Value())))
 1513     if (match(TheOp, m_Not(m_Value()))) {