Home
last modified time | relevance | path

Searched refs:cmpTypes (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp196 int TypesRes = cmpTypes(TyL, TyR); in cmpConstants()
394 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const { in cmpTypes() function in FunctionComparator
446 if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i))) in cmpTypes()
461 if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType())) in cmpTypes()
465 if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i))) in cmpTypes()
477 return cmpTypes(STyL->getElementType(), STyR->getElementType()); in cmpTypes()
512 if (int Res = cmpTypes(L->getType(), R->getType())) in cmpOperations()
523 cmpTypes(L->getOperand(i)->getType(), R->getOperand(i)->getType())) in cmpOperations()
529 if (int Res = cmpTypes(AI->getAllocatedType(), in cmpOperations()
681 if (int Res = cmpTypes(GEPL->getSourceElementType(), in cmpGEPs()
[all …]
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp401 int cmpTypes(Type *TyL, Type *TyR) const;
615 int TypesRes = cmpTypes(TyL, TyR); in cmpConstants()
811 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const { in cmpTypes() function in FunctionComparator
838 return cmpTypes(VTyL->getElementType(), VTyR->getElementType()); in cmpTypes()
867 if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i))) in cmpTypes()
882 if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType())) in cmpTypes()
886 if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i))) in cmpTypes()
897 return cmpTypes(ATyL->getElementType(), ATyR->getElementType()); in cmpTypes()
918 if (int Res = cmpTypes(L->getType(), R->getType())) in cmpOperations()
929 cmpTypes(L->getOperand(i)->getType(), R->getOperand(i)->getType())) in cmpOperations()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DFunctionComparator.h321 int cmpTypes(Type *TyL, Type *TyR) const;
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
DFunctionComparator.cpp95 return cmpTypes(TyL, TyR); in testCmpTypes()