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

References

tools/llvm-objdump/MachODump.cpp
 6112     CreateSymbolAddressMap(O, &AddrMap);
 6115   for (const SectionRef &Section : O->sections())
 6118   struct DisassembleInfo info(O, &AddrMap, &Sections, verbose);
 6120   SectionRef CL = get_section(O, "__OBJC2", "__class_list");
 6122     CL = get_section(O, "__DATA", "__objc_classlist");
 6124     CL = get_section(O, "__DATA_CONST", "__objc_classlist");
 6126     CL = get_section(O, "__DATA_DIRTY", "__objc_classlist");
 6128   walk_pointer_list_64("class", CL, O, &info, print_class64_t);
 6130   SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
 6132     CR = get_section(O, "__DATA", "__objc_classrefs");
 6134     CR = get_section(O, "__DATA_CONST", "__objc_classrefs");
 6136     CR = get_section(O, "__DATA_DIRTY", "__objc_classrefs");
 6138   walk_pointer_list_64("class refs", CR, O, &info, nullptr);
 6140   SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
 6142     SR = get_section(O, "__DATA", "__objc_superrefs");
 6144     SR = get_section(O, "__DATA_CONST", "__objc_superrefs");
 6146     SR = get_section(O, "__DATA_DIRTY", "__objc_superrefs");
 6148   walk_pointer_list_64("super refs", SR, O, &info, nullptr);
 6150   SectionRef CA = get_section(O, "__OBJC2", "__category_list");
 6152     CA = get_section(O, "__DATA", "__objc_catlist");
 6154     CA = get_section(O, "__DATA_CONST", "__objc_catlist");
 6156     CA = get_section(O, "__DATA_DIRTY", "__objc_catlist");
 6158   walk_pointer_list_64("category", CA, O, &info, print_category64_t);
 6160   SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
 6162     PL = get_section(O, "__DATA", "__objc_protolist");
 6164     PL = get_section(O, "__DATA_CONST", "__objc_protolist");
 6166     PL = get_section(O, "__DATA_DIRTY", "__objc_protolist");
 6168   walk_pointer_list_64("protocol", PL, O, &info, nullptr);
 6170   SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
 6172     MR = get_section(O, "__DATA", "__objc_msgrefs");
 6174     MR = get_section(O, "__DATA_CONST", "__objc_msgrefs");
 6176     MR = get_section(O, "__DATA_DIRTY", "__objc_msgrefs");
 6180   SectionRef II = get_section(O, "__OBJC2", "__image_info");
 6182     II = get_section(O, "__DATA", "__objc_imageinfo");
 6184     II = get_section(O, "__DATA_CONST", "__objc_imageinfo");
 6186     II = get_section(O, "__DATA_DIRTY", "__objc_imageinfo");