Lines Matching refs:MachOObj
125 static const Target *GetTarget(const MachOObjectFile *MachOObj, in GetTarget() argument
131 TT = MachOObj->getArchTriple(McpuDefault); in GetTarget()
298 static void getSectionsAndSymbols(MachOObjectFile *MachOObj, in getSectionsAndSymbols() argument
303 const StringRef FileName = MachOObj->getFileName(); in getSectionsAndSymbols()
304 for (const SymbolRef &Symbol : MachOObj->symbols()) { in getSectionsAndSymbols()
310 append_range(Sections, MachOObj->sections()); in getSectionsAndSymbols()
313 for (const auto &Command : MachOObj->load_commands()) { in getSectionsAndSymbols()
318 MachOObj->getLinkeditDataLoadCommand(Command); in getSectionsAndSymbols()
320 MachOObj->ReadULEB128s(LLC.dataoff, FoundFns); in getSectionsAndSymbols()
322 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command); in getSectionsAndSymbols()
329 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols()