Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:MachOObjectFile

31   MachODumper(const MachOObjectFile *Obj, StreamWriter& Writer)
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);
304 static void getSection(const MachOObjectFile *Obj,
333 static void getSegment(const MachOObjectFile *Obj,
334 const MachOObjectFile::LoadCommandInfo &L,
365 static void getSymbol(const MachOObjectFile *Obj,
433 void MachODumper::printSections(const MachOObjectFile *Obj) {
528 void MachODumper::printRelocation(const MachOObjectFile *Obj,
720 Version = utostr(MachOObjectFile::getVersionMinMajor(VMC, false)) + "." +
721 utostr(MachOObjectFile::getVersionMinMinor(VMC, false));
722 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, false);
724 Version += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, false));
730 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." +
731 utostr(MachOObjectFile::getVersionMinMinor(VMC, true));
732 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, true);
734 SDK += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, true));