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

Declarations

include/llvm/Transforms/Utils/FunctionComparator.h
  320   int cmpTypes(Type *TyL, Type *TyR) const;

References

lib/Transforms/Utils/FunctionComparator.cpp
  123           return cmpTypes(TyL, TyR);
  208   int TypesRes = cmpTypes(TyL, TyR);
  454       if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i)))
  469     if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType()))
  473       if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i)))
  485     return cmpTypes(STyL->getElementType(), STyR->getElementType());
  520   if (int Res = cmpTypes(L->getType(), R->getType()))
  531             cmpTypes(L->getOperand(i)->getType(), R->getOperand(i)->getType()))
  537     if (int Res = cmpTypes(AI->getAllocatedType(),
  678   if (int Res = cmpTypes(GEPL->getSourceElementType(),
  699   if (int Res = cmpTypes(L->getFunctionType(), R->getFunctionType()))
  780         assert(cmpTypes(OpL->getType(), OpR->getType()) == 0);
  823   if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType()))
unittests/Transforms/Utils/FunctionComparatorTest.cpp
   94     return cmpTypes(TyL, TyR);