Home | History | Annotate | Download | only in macho-dump

Lines Matching refs:DLC

267   InMemoryStruct<macho::DysymtabLoadCommand> DLC;
268 Obj.ReadDysymtabLoadCommand(LCI, DLC);
269 if (!DLC)
272 outs() << " ('ilocalsym', " << DLC->LocalSymbolsIndex << ")\n";
273 outs() << " ('nlocalsym', " << DLC->NumLocalSymbols << ")\n";
274 outs() << " ('iextdefsym', " << DLC->ExternalSymbolsIndex << ")\n";
275 outs() << " ('nextdefsym', " << DLC->NumExternalSymbols << ")\n";
276 outs() << " ('iundefsym', " << DLC->UndefinedSymbolsIndex << ")\n";
277 outs() << " ('nundefsym', " << DLC->NumUndefinedSymbols << ")\n";
278 outs() << " ('tocoff', " << DLC->TOCOffset << ")\n";
279 outs() << " ('ntoc', " << DLC->NumTOCEntries << ")\n";
280 outs() << " ('modtaboff', " << DLC->ModuleTableOffset << ")\n";
281 outs() << " ('nmodtab', " << DLC->NumModuleTableEntries << ")\n";
282 outs() << " ('extrefsymoff', " << DLC->ReferenceSymbolTableOffset << ")\n";
284 << DLC->NumReferencedSymbolTableEntries << ")\n";
285 outs() << " ('indirectsymoff', " << DLC->IndirectSymbolTableOffset << ")\n";
287 << DLC->NumIndirectSymbolTableEntries << ")\n";
288 outs() << " ('extreloff', " << DLC->ExternalRelocationTableOffset << ")\n";
289 outs() << " ('nextrel', " << DLC->NumExternalRelocationTableEntries << ")\n";
290 outs() << " ('locreloff', " << DLC->LocalRelocationTableOffset << ")\n";
291 outs() << " ('nlocrel', " << DLC->NumLocalRelocationTableEntries << ")\n";
296 for (unsigned i = 0; i != DLC->NumIndirectSymbolTableEntries; ++i) {
298 Obj.ReadIndirectSymbolTableEntry(*DLC, i, ISTE);