Lines Matching refs:MachOObjectFile
30 MachODumper(const MachOObjectFile *Obj, ScopedPrinter &Writer)
71 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
73 void printSectionHeaders(const MachOObjectFile *Obj);
75 const MachOObjectFile *Obj;
83 std::unique_ptr<ObjDumper> createMachODumper(const object::MachOObjectFile &Obj,
341 static void getSection(const MachOObjectFile *Obj,
370 static void getSegment(const MachOObjectFile *Obj,
371 const MachOObjectFile::LoadCommandInfo &L,
402 static void getSymbol(const MachOObjectFile *Obj,
468 void MachODumper::printSectionHeaders(const MachOObjectFile *Obj) {
551 void MachODumper::printRelocation(const MachOObjectFile *Obj,
865 MachOObjectFile::getBuildPlatform(BVC.platform));
866 W.printString("Version", MachOObjectFile::getVersionString(BVC.minos));
868 W.printString("SDK", MachOObjectFile::getVersionString(BVC.sdk));
878 Version = utostr(MachOObjectFile::getVersionMinMajor(VMC, false)) + "." +
879 utostr(MachOObjectFile::getVersionMinMinor(VMC, false));
880 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, false);
882 Version += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, false));
888 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." +
889 utostr(MachOObjectFile::getVersionMinMinor(VMC, true));
890 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, true);
892 SDK += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, true));