Lines Matching defs:MME
3548 const auto *MME = dyn_cast<SCEVSMaxExpr>(AE->getOperand(1));
3549 if (MME && MME->getNumOperands() == 2 &&
3550 isa<SCEVConstant>(MME->getOperand(0)) &&
3551 cast<SCEVConstant>(MME->getOperand(0))->getAPInt() == -NegC &&
3552 MME->getOperand(1) == RHS)
4604 if (const SCEVMinMaxExpr *MME = dyn_cast<SCEVMinMaxExpr>(V)) {
4605 auto MatchMinMaxNegation = [&](const SCEVMinMaxExpr *MME) {
4607 for (const SCEV *Operand : MME->operands()) {
4613 return getMinMaxExpr(SCEVMinMaxExpr::negate(MME->getSCEVType()),
4616 if (const SCEV *Replaced = MatchMinMaxNegation(MME))