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

References

tools/llvm-objdump/MachODump.cpp
 8814   outs() << "        cmdsize " << dyst.cmdsize;
 8815   if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command))
 8819   outs() << "      ilocalsym " << dyst.ilocalsym;
 8820   if (dyst.ilocalsym > nsyms)
 8824   outs() << "      nlocalsym " << dyst.nlocalsym;
 8826   big_size = dyst.ilocalsym;
 8827   big_size += dyst.nlocalsym;
 8832   outs() << "     iextdefsym " << dyst.iextdefsym;
 8833   if (dyst.iextdefsym > nsyms)
 8837   outs() << "     nextdefsym " << dyst.nextdefsym;
 8838   big_size = dyst.iextdefsym;
 8839   big_size += dyst.nextdefsym;
 8844   outs() << "      iundefsym " << dyst.iundefsym;
 8845   if (dyst.iundefsym > nsyms)
 8849   outs() << "      nundefsym " << dyst.nundefsym;
 8850   big_size = dyst.iundefsym;
 8851   big_size += dyst.nundefsym;
 8856   outs() << "         tocoff " << dyst.tocoff;
 8857   if (dyst.tocoff > object_size)
 8861   outs() << "           ntoc " << dyst.ntoc;
 8862   big_size = dyst.ntoc;
 8864   big_size += dyst.tocoff;
 8869   outs() << "      modtaboff " << dyst.modtaboff;
 8870   if (dyst.modtaboff > object_size)
 8874   outs() << "        nmodtab " << dyst.nmodtab;
 8877     modtabend = dyst.nmodtab;
 8879     modtabend += dyst.modtaboff;
 8881     modtabend = dyst.nmodtab;
 8883     modtabend += dyst.modtaboff;
 8889   outs() << "   extrefsymoff " << dyst.extrefsymoff;
 8890   if (dyst.extrefsymoff > object_size)
 8894   outs() << "    nextrefsyms " << dyst.nextrefsyms;
 8895   big_size = dyst.nextrefsyms;
 8897   big_size += dyst.extrefsymoff;
 8902   outs() << " indirectsymoff " << dyst.indirectsymoff;
 8903   if (dyst.indirectsymoff > object_size)
 8907   outs() << "  nindirectsyms " << dyst.nindirectsyms;
 8908   big_size = dyst.nindirectsyms;
 8910   big_size += dyst.indirectsymoff;
 8915   outs() << "      extreloff " << dyst.extreloff;
 8916   if (dyst.extreloff > object_size)
 8920   outs() << "        nextrel " << dyst.nextrel;
 8921   big_size = dyst.nextrel;
 8923   big_size += dyst.extreloff;
 8928   outs() << "      locreloff " << dyst.locreloff;
 8929   if (dyst.locreloff > object_size)
 8933   outs() << "        nlocrel " << dyst.nlocrel;
 8934   big_size = dyst.nlocrel;
 8936   big_size += dyst.locreloff;