Lines Matching refs:MachOObjectFile
31 MachODumper(const MachOObjectFile *Obj, StreamWriter& Writer) in MachODumper()
59 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
61 void printSections(const MachOObjectFile *Obj);
63 const MachOObjectFile *Obj;
74 const MachOObjectFile *MachOObj = dyn_cast<MachOObjectFile>(Obj); in createMachODumper()
304 static void getSection(const MachOObjectFile *Obj, in getSection()
333 static void getSegment(const MachOObjectFile *Obj, in getSegment()
334 const MachOObjectFile::LoadCommandInfo &L, in getSegment()
365 static void getSymbol(const MachOObjectFile *Obj, in getSymbol()
433 void MachODumper::printSections(const MachOObjectFile *Obj) { in printSections()
528 void MachODumper::printRelocation(const MachOObjectFile *Obj, in printRelocation()
720 Version = utostr(MachOObjectFile::getVersionMinMajor(VMC, false)) + "." + in printMachOVersionMin()
721 utostr(MachOObjectFile::getVersionMinMinor(VMC, false)); in printMachOVersionMin()
722 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, false); in printMachOVersionMin()
724 Version += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, false)); in printMachOVersionMin()
730 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." + in printMachOVersionMin()
731 utostr(MachOObjectFile::getVersionMinMinor(VMC, true)); in printMachOVersionMin()
732 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, true); in printMachOVersionMin()
734 SDK += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, true)); in printMachOVersionMin()