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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  560       sym = &normalizedFile.localSymbols[symbolIndex-numStabs];
  562       sym = &normalizedFile.globalSymbols[symbolIndex-numStabs-numLocal];
  564       sym = &normalizedFile.undefinedSymbols[symbolIndex-numStabs-numLocal-
  572     if ((sym->type & N_TYPE) == N_SECT) {
  573       if (sym->sect > normalizedFile.sections.size())
  575                                         + Twine(sym->sect) + ") out of range ");
  576       const Section &symSection = normalizedFile.sections[sym->sect-1];
  577       uint64_t targetOffsetInSect = sym->value - symSection.address;
  585     } else if ((sym->type & N_TYPE) == N_UNDF) {
  586       const lld::Atom *target = file.findUndefAtom(sym->name);