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

References

tools/llvm-objdump/MachODump.cpp
 6194     CreateSymbolAddressMap(O, &AddrMap);
 6197   for (const SectionRef &Section : O->sections())
 6200   struct DisassembleInfo info(O, &AddrMap, &Sections, verbose);
 6202   SectionRef CL = get_section(O, "__OBJC2", "__class_list");
 6204     CL = get_section(O, "__DATA", "__objc_classlist");
 6206     CL = get_section(O, "__DATA_CONST", "__objc_classlist");
 6208     CL = get_section(O, "__DATA_DIRTY", "__objc_classlist");
 6210   walk_pointer_list_32("class", CL, O, &info, print_class32_t);
 6212   SectionRef CR = get_section(O, "__OBJC2", "__class_refs");
 6214     CR = get_section(O, "__DATA", "__objc_classrefs");
 6216     CR = get_section(O, "__DATA_CONST", "__objc_classrefs");
 6218     CR = get_section(O, "__DATA_DIRTY", "__objc_classrefs");
 6220   walk_pointer_list_32("class refs", CR, O, &info, nullptr);
 6222   SectionRef SR = get_section(O, "__OBJC2", "__super_refs");
 6224     SR = get_section(O, "__DATA", "__objc_superrefs");
 6226     SR = get_section(O, "__DATA_CONST", "__objc_superrefs");
 6228     SR = get_section(O, "__DATA_DIRTY", "__objc_superrefs");
 6230   walk_pointer_list_32("super refs", SR, O, &info, nullptr);
 6232   SectionRef CA = get_section(O, "__OBJC2", "__category_list");
 6234     CA = get_section(O, "__DATA", "__objc_catlist");
 6236     CA = get_section(O, "__DATA_CONST", "__objc_catlist");
 6238     CA = get_section(O, "__DATA_DIRTY", "__objc_catlist");
 6240   walk_pointer_list_32("category", CA, O, &info, print_category32_t);
 6242   SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
 6244     PL = get_section(O, "__DATA", "__objc_protolist");
 6246     PL = get_section(O, "__DATA_CONST", "__objc_protolist");
 6248     PL = get_section(O, "__DATA_DIRTY", "__objc_protolist");
 6250   walk_pointer_list_32("protocol", PL, O, &info, nullptr);
 6252   SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
 6254     MR = get_section(O, "__DATA", "__objc_msgrefs");
 6256     MR = get_section(O, "__DATA_CONST", "__objc_msgrefs");
 6258     MR = get_section(O, "__DATA_DIRTY", "__objc_msgrefs");
 6262   SectionRef II = get_section(O, "__OBJC2", "__image_info");
 6264     II = get_section(O, "__DATA", "__objc_imageinfo");
 6266     II = get_section(O, "__DATA_CONST", "__objc_imageinfo");
 6268     II = get_section(O, "__DATA_DIRTY", "__objc_imageinfo");