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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  530     if (sectIndex > normalizedFile.sections.size())
  535       sect = findSectionCoveringAddress(normalizedFile, addr);
  540       sect = &normalizedFile.sections[sectIndex-1];
  554     uint32_t numStabs  = normalizedFile.stabsSymbols.size();
  555     uint32_t numLocal  = normalizedFile.localSymbols.size();
  556     uint32_t numGlobal = normalizedFile.globalSymbols.size();
  557     uint32_t numUndef  = normalizedFile.undefinedSymbols.size();
  560       sym = &normalizedFile.localSymbols[symbolIndex-numStabs];
  562       sym = &normalizedFile.globalSymbols[symbolIndex-numStabs-numLocal];
  564       sym = &normalizedFile.undefinedSymbols[symbolIndex-numStabs-numLocal-
  573       if (sym->sect > normalizedFile.sections.size())
  576       const Section &symSection = normalizedFile.sections[sym->sect-1];
  598   const bool isBig = MachOLinkingContext::isBigEndian(normalizedFile.arch);