• Home
  • Raw
  • Download

Lines Matching refs:SLC

129   InMemoryStruct<macho::SegmentLoadCommand> SLC;  in DumpSegmentCommand()  local
130 Obj.ReadSegmentLoadCommand(LCI, SLC); in DumpSegmentCommand()
131 if (!SLC) in DumpSegmentCommand()
134 DumpSegmentCommandData(StringRef(SLC->Name, 16), SLC->VMAddress, in DumpSegmentCommand()
135 SLC->VMSize, SLC->FileOffset, SLC->FileSize, in DumpSegmentCommand()
136 SLC->MaxVMProtection, SLC->InitialVMProtection, in DumpSegmentCommand()
137 SLC->NumSections, SLC->Flags); in DumpSegmentCommand()
142 for (unsigned i = 0; i != SLC->NumSections; ++i) { in DumpSegmentCommand()
145 if (!SLC) { in DumpSegmentCommand()
165 InMemoryStruct<macho::Segment64LoadCommand> SLC; in DumpSegment64Command() local
166 Obj.ReadSegment64LoadCommand(LCI, SLC); in DumpSegment64Command()
167 if (!SLC) in DumpSegment64Command()
170 DumpSegmentCommandData(StringRef(SLC->Name, 16), SLC->VMAddress, in DumpSegment64Command()
171 SLC->VMSize, SLC->FileOffset, SLC->FileSize, in DumpSegment64Command()
172 SLC->MaxVMProtection, SLC->InitialVMProtection, in DumpSegment64Command()
173 SLC->NumSections, SLC->Flags); in DumpSegment64Command()
178 for (unsigned i = 0; i != SLC->NumSections; ++i) { in DumpSegment64Command()
181 if (!SLC) { in DumpSegment64Command()
216 InMemoryStruct<macho::SymtabLoadCommand> SLC; in DumpSymtabCommand() local
217 Obj.ReadSymtabLoadCommand(LCI, SLC); in DumpSymtabCommand()
218 if (!SLC) in DumpSymtabCommand()
221 outs() << " ('symoff', " << SLC->SymbolTableOffset << ")\n"; in DumpSymtabCommand()
222 outs() << " ('nsyms', " << SLC->NumSymbolTableEntries << ")\n"; in DumpSymtabCommand()
223 outs() << " ('stroff', " << SLC->StringTableOffset << ")\n"; in DumpSymtabCommand()
224 outs() << " ('strsize', " << SLC->StringTableSize << ")\n"; in DumpSymtabCommand()
227 Obj.RegisterStringTable(*SLC); in DumpSymtabCommand()
237 for (unsigned i = 0; i != SLC->NumSymbolTableEntries; ++i) { in DumpSymtabCommand()
240 Obj.ReadSymbol64TableEntry(SLC->SymbolTableOffset, i, STE); in DumpSymtabCommand()
250 Obj.ReadSymbolTableEntry(SLC->SymbolTableOffset, i, STE); in DumpSymtabCommand()
251 if (!SLC) { in DumpSymtabCommand()