Lines Matching defs:ICI
9739 static bool calculateICmpInst(const ICmpInst *ICI, const APInt &LHS,
9741 return ICmpInst::compare(LHS, RHS, ICI->getPredicate());
9833 ChangeStatus updateWithICmpInst(Attributor &A, ICmpInst *ICI) {
9835 Value *LHS = ICI->getOperand(0);
9836 Value *RHS = ICI->getOperand(1);
9855 bool CmpResult = calculateICmpInst(ICI, Zero, R);
9863 bool CmpResult = calculateICmpInst(ICI, L, Zero);
9872 bool CmpResult = calculateICmpInst(ICI, L, R);
10030 if (auto *ICI = dyn_cast<ICmpInst>(I))
10031 return updateWithICmpInst(A, ICI);