Lines Matching defs:ICI
6085 auto *ICI = Cond;
6087 Value *LHS = ICI->getOperand(0);
6088 Value *RHS = ICI->getOperand(1);
6090 switch (ICI->getPredicate()) {
6104 bool Signed = ICI->isSigned();
6258 if (auto *ICI = dyn_cast<ICmpInst>(Cond)) {
6260 createNodeForSelectOrPHIInstWithICmpInstCond(I->getType(), ICI,
7605 auto *ICI = dyn_cast<ICmpInst>(U->getOperand(0));
7606 if (!ICI)
7608 Value *LHS = ICI->getOperand(0);
7609 Value *RHS = ICI->getOperand(1);
7610 if (ICI->getPredicate() == CmpInst::ICMP_EQ ||
7611 ICI->getPredicate() == CmpInst::ICMP_NE) {
11655 const ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue);
11656 if (!ICI) return false;
11662 FoundPred = ICI->getInversePredicate();
11664 FoundPred = ICI->getPredicate();
11666 const SCEV *FoundLHS = getSCEV(ICI->getOperand(0));
11667 const SCEV *FoundRHS = getSCEV(ICI->getOperand(1));