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

References

lib/Transforms/Scalar/GVN.cpp
 1875       Value *Op0 = Cmp->getOperand(0), *Op1 = Cmp->getOperand(1);
 1875       Value *Op0 = Cmp->getOperand(0), *Op1 = Cmp->getOperand(1);
 1879       if ((isKnownTrue && Cmp->getPredicate() == CmpInst::ICMP_EQ) ||
 1880           (isKnownFalse && Cmp->getPredicate() == CmpInst::ICMP_NE))
 1884       if ((isKnownTrue && Cmp->getPredicate() == CmpInst::FCMP_OEQ) ||
 1885           (isKnownFalse && Cmp->getPredicate() == CmpInst::FCMP_UNE)) {
 1900       CmpInst::Predicate NotPred = Cmp->getInversePredicate();
 1901       Constant *NotVal = ConstantInt::get(Cmp->getType(), isKnownFalse);
 1906       uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1);