Lines Matching refs:MachOObj
123 static const Target *GetTarget(const MachOObjectFile *MachOObj, in GetTarget() argument
129 TT = MachOObj->getArchTriple(McpuDefault); in GetTarget()
292 static void getSectionsAndSymbols(MachOObjectFile *MachOObj, in getSectionsAndSymbols() argument
297 const StringRef FileName = MachOObj->getFileName(); in getSectionsAndSymbols()
298 for (const SymbolRef &Symbol : MachOObj->symbols()) { in getSectionsAndSymbols()
304 append_range(Sections, MachOObj->sections()); in getSectionsAndSymbols()
307 for (const auto &Command : MachOObj->load_commands()) { in getSectionsAndSymbols()
312 MachOObj->getLinkeditDataLoadCommand(Command); in getSectionsAndSymbols()
314 MachOObj->ReadULEB128s(LLC.dataoff, FoundFns); in getSectionsAndSymbols()
316 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command); in getSectionsAndSymbols()
323 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols()