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

References

tools/llvm-objdump/MachODump.cpp
 1053   const uint64_t cputype = O->getHeader().cputype;
 1054   const MachO::dysymtab_command Dysymtab = O->getDysymtabLoadCommand();
 1060     PrintRelocationEntries(O, O->extrel_begin(), O->extrel_end(), cputype,
 1060     PrintRelocationEntries(O, O->extrel_begin(), O->extrel_end(), cputype,
 1060     PrintRelocationEntries(O, O->extrel_begin(), O->extrel_end(), cputype,
 1068     PrintRelocationEntries(O, O->locrel_begin(), O->locrel_end(), cputype,
 1068     PrintRelocationEntries(O, O->locrel_begin(), O->locrel_end(), cputype,
 1068     PrintRelocationEntries(O, O->locrel_begin(), O->locrel_end(), cputype,
 1071   for (const auto &Load : O->load_commands()) {
 1073       const MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load);
 1075         const MachO::section_64 Sec = O->getSection64(Load, J);
 1079           const StringRef SegName = O->getSectionFinalSegmentName(DRI);
 1080           if (Expected<StringRef> NameOrErr = O->getSectionName(DRI))
 1088           PrintRelocationEntries(O, O->section_rel_begin(DRI),
 1088           PrintRelocationEntries(O, O->section_rel_begin(DRI),
 1089                                  O->section_rel_end(DRI), cputype, verbose);
 1093       const MachO::segment_command Seg = O->getSegmentLoadCommand(Load);
 1095         const MachO::section Sec = O->getSection(Load, J);
 1099           const StringRef SegName = O->getSectionFinalSegmentName(DRI);
 1100           if (Expected<StringRef> NameOrErr = O->getSectionName(DRI))
 1108           PrintRelocationEntries(O, O->section_rel_begin(DRI),
 1108           PrintRelocationEntries(O, O->section_rel_begin(DRI),
 1109                                  O->section_rel_end(DRI), cputype, verbose);