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

References

lib/Transforms/Utils/FunctionComparator.cpp
  384       assert(LBA->getFunction() == FnL && RBA->getFunction() == FnR);
  410   const DataLayout &DL = FnL->getParent()->getDataLayout();
  672   const DataLayout &DL = FnL->getParent()->getDataLayout();
  721   if (L == FnL) {
  727     if (L == FnL)
  796   if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes()))
  799   if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC()))
  802   if (FnL->hasGC()) {
  803     if (int Res = cmpMem(FnL->getGC(), FnR->getGC()))
  807   if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection()))
  810   if (FnL->hasSection()) {
  811     if (int Res = cmpMem(FnL->getSection(), FnR->getSection()))
  815   if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg()))
  820   if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv()))
  823   if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType()))
  826   assert(FnL->arg_size() == FnR->arg_size() &&
  831   for (Function::const_arg_iterator ArgLI = FnL->arg_begin(),
  833        ArgLE = FnL->arg_end();
  855   FnLBBs.push_back(&FnL->getEntryBlock());
unittests/Transforms/Utils/FunctionComparatorTest.cpp
   54     return F1 == FnL && F2 == FnR;