Lines Matching defs:ICI
6109 auto *ICI = Cond;
6111 Value *LHS = ICI->getOperand(0);
6112 Value *RHS = ICI->getOperand(1);
6114 switch (ICI->getPredicate()) {
6128 bool Signed = ICI->isSigned();
6282 if (auto *ICI = dyn_cast<ICmpInst>(Cond)) {
6284 createNodeForSelectOrPHIInstWithICmpInstCond(I->getType(), ICI,
7642 auto *ICI = dyn_cast<ICmpInst>(U->getOperand(0));
7643 if (!ICI)
7645 Value *LHS = ICI->getOperand(0);
7646 Value *RHS = ICI->getOperand(1);
7647 if (ICI->getPredicate() == CmpInst::ICMP_EQ ||
7648 ICI->getPredicate() == CmpInst::ICMP_NE) {
11766 const ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue);
11767 if (!ICI) return false;
11773 FoundPred = ICI->getInverseCmpPredicate();
11775 FoundPred = ICI->getCmpPredicate();
11777 const SCEV *FoundLHS = getSCEV(ICI->getOperand(0));
11778 const SCEV *FoundRHS = getSCEV(ICI->getOperand(1));