Home
last modified time | relevance | path

Searched refs:MachOObj (Results 1 – 2 of 2) sorted by relevance

/external/llvm/tools/llvm-objdump/
DMachODump.cpp52 static const Target *GetTarget(const MachOObjectFile *MachOObj) { in GetTarget() argument
56 TT.setArch(Triple::ArchType(MachOObj->getArch())); in GetTarget()
152 MachOObjectFile *MachOObj, in getSectionsAndSymbols() argument
158 for (symbol_iterator SI = MachOObj->begin_symbols(), in getSectionsAndSymbols()
159 SE = MachOObj->end_symbols(); SI != SE; SI.increment(ec)) in getSectionsAndSymbols()
162 for (section_iterator SI = MachOObj->begin_sections(), in getSectionsAndSymbols()
163 SE = MachOObj->end_sections(); SI != SE; SI.increment(ec)) { in getSectionsAndSymbols()
171 MachOObj->getFirstLoadCommandInfo(); in getSectionsAndSymbols()
178 MachOObj->getLinkeditDataLoadCommand(Command); in getSectionsAndSymbols()
180 MachOObj->ReadULEB128s(LLC.DataOffset, FoundFns); in getSectionsAndSymbols()
[all …]
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp62 const MachOObjectFile *MachOObj = dyn_cast<MachOObjectFile>(Obj); in createMachODumper() local
63 if (!MachOObj) in createMachODumper()
66 Result.reset(new MachODumper(MachOObj, Writer)); in createMachODumper()