reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 2923         Value *NewRem = Builder.CreateURem(BOp0, BOp1, BO->getName());
 2935         return new ICmpInst(Pred, BOp0, SubC);
 2941         return new ICmpInst(Pred, BOp0, NegVal);
 2942       if (Value *NegVal = dyn_castNegVal(BOp0))
 2947         return new ICmpInst(Pred, BOp0, Neg);
 2957         return new ICmpInst(Pred, BOp0, ConstantExpr::getXor(RHS, BOC));
 2960         return new ICmpInst(Pred, BOp0, BOp1);
 2967       if (match(BOp0, m_APInt(BOC))) {
 2969         Constant *SubC = ConstantExpr::getSub(cast<Constant>(BOp0), RHS);
 2973         return new ICmpInst(Pred, BOp0, BOp1);
 2984       Value *And = Builder.CreateAnd(BOp0, NotBOC);
 3006         return new ICmpInst(Pred, BOp0, Constant::getNullValue(RHS->getType()));
 3014       return new ICmpInst(NewPred, BOp1, BOp0);