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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  885       dst->cmd            = LC_DYSYMTAB;
  886       dst->cmdsize        = sizeof(dysymtab_command);
  887       dst->ilocalsym      = _symbolTableLocalsStartIndex;
  888       dst->nlocalsym      = _file.stabsSymbols.size() +
  890       dst->iextdefsym     = _symbolTableGlobalsStartIndex;
  891       dst->nextdefsym     = _file.globalSymbols.size();
  892       dst->iundefsym      = _symbolTableUndefinesStartIndex;
  893       dst->nundefsym      = _file.undefinedSymbols.size();
  894       dst->tocoff         = 0;
  895       dst->ntoc           = 0;
  896       dst->modtaboff      = 0;
  897       dst->nmodtab        = 0;
  898       dst->extrefsymoff   = 0;
  899       dst->nextrefsyms    = 0;
  900       dst->indirectsymoff = _startOfIndirectSymbols;
  901       dst->nindirectsyms  = _indirectSymbolTableCount;
  902       dst->extreloff      = 0;
  903       dst->nextrel        = 0;
  904       dst->locreloff      = 0;
  905       dst->nlocrel        = 0;
  907         swapStruct(*dst);