reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objdump/MachODump.cpp
 9983   if (dl.cmd == MachO::LC_ID_DYLIB)
 9985   else if (dl.cmd == MachO::LC_LOAD_DYLIB)
 9987   else if (dl.cmd == MachO::LC_LOAD_WEAK_DYLIB)
 9989   else if (dl.cmd == MachO::LC_REEXPORT_DYLIB)
 9991   else if (dl.cmd == MachO::LC_LAZY_LOAD_DYLIB)
 9993   else if (dl.cmd == MachO::LC_LOAD_UPWARD_DYLIB)
 9996     outs() << "          cmd " << dl.cmd << " (unknown)\n";
 9997   outs() << "      cmdsize " << dl.cmdsize;
 9998   if (dl.cmdsize < sizeof(struct MachO::dylib_command))
10002   if (dl.dylib.name < dl.cmdsize) {
10002   if (dl.dylib.name < dl.cmdsize) {
10003     const char *P = (const char *)(Ptr) + dl.dylib.name;
10004     outs() << "         name " << P << " (offset " << dl.dylib.name << ")\n";
10006     outs() << "         name ?(bad offset " << dl.dylib.name << ")\n";
10008   outs() << "   time stamp " << dl.dylib.timestamp << " ";
10009   time_t t = dl.dylib.timestamp;
10012   if (dl.dylib.current_version == 0xffffffff)
10015     outs() << ((dl.dylib.current_version >> 16) & 0xffff) << "."
10016            << ((dl.dylib.current_version >> 8) & 0xff) << "."
10017            << (dl.dylib.current_version & 0xff) << "\n";
10019   if (dl.dylib.compatibility_version == 0xffffffff)
10022     outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "."
10023            << ((dl.dylib.compatibility_version >> 8) & 0xff) << "."
10024            << (dl.dylib.compatibility_version & 0xff) << "\n";