Lines Matching refs:FnL
131 : FnL(F1), FnR(F2) {} in FunctionComparator()
353 const Function *FnL, *FnR; member in __anon7fe985500111::FunctionComparator
618 const DataLayout &DL = FnL->getParent()->getDataLayout(); in cmpTypes()
854 const DataLayout &DL = FnL->getParent()->getDataLayout(); in cmpGEPs()
882 if (L == FnL) { in cmpValues()
888 if (L == FnL) in cmpValues()
978 if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes())) in compare()
981 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC())) in compare()
984 if (FnL->hasGC()) { in compare()
985 if (int Res = cmpNumbers((uint64_t)FnL->getGC(), (uint64_t)FnR->getGC())) in compare()
989 if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection())) in compare()
992 if (FnL->hasSection()) { in compare()
993 if (int Res = cmpStrings(FnL->getSection(), FnR->getSection())) in compare()
997 if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg())) in compare()
1002 if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv())) in compare()
1005 if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType())) in compare()
1008 assert(FnL->arg_size() == FnR->arg_size() && in compare()
1013 for (Function::const_arg_iterator ArgLI = FnL->arg_begin(), in compare()
1015 ArgLE = FnL->arg_end(); in compare()
1028 FnLBBs.push_back(&FnL->getEntryBlock()); in compare()