Lines Matching defs:ICI
9791 static bool calculateICmpInst(const ICmpInst *ICI, const APInt &LHS,
9793 return ICmpInst::compare(LHS, RHS, ICI->getPredicate());
9885 ChangeStatus updateWithICmpInst(Attributor &A, ICmpInst *ICI) {
9887 Value *LHS = ICI->getOperand(0);
9888 Value *RHS = ICI->getOperand(1);
9907 bool CmpResult = calculateICmpInst(ICI, Zero, R);
9915 bool CmpResult = calculateICmpInst(ICI, L, Zero);
9924 bool CmpResult = calculateICmpInst(ICI, L, R);
10082 if (auto *ICI = dyn_cast<ICmpInst>(I))
10083 return updateWithICmpInst(A, ICI);