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

References

lib/Transforms/Scalar/GVN.cpp
 1465       if (isa<Constant>(CmpLHS) && !isa<Constant>(CmpRHS))
 1466         std::swap(CmpLHS, CmpRHS);
 1467       if (!isa<Instruction>(CmpLHS) && isa<Instruction>(CmpRHS))
 1468         std::swap(CmpLHS, CmpRHS);
 1469       if ((isa<Argument>(CmpLHS) && isa<Argument>(CmpRHS)) ||
 1470           (isa<Instruction>(CmpLHS) && isa<Instruction>(CmpRHS))) {
 1473         uint32_t LVN = VN.lookupOrAdd(CmpLHS);
 1476           std::swap(CmpLHS, CmpRHS);
 1481       if (isa<Constant>(CmpLHS) && isa<Constant>(CmpRHS))
 1491                  << *CmpLHS << " with "
 1497       if (hasUsersIn(CmpLHS, IntrinsicI->getParent()))
 1498         ReplaceOperandsWithMap[CmpLHS] = CmpRHS;