Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:CL

58 static cl::opt<bool>
60 cl::desc("Print line information from debug info if available"));
62 static cl::opt<std::string> DSYMFile("dsym",
63 cl::desc("Use .dSYM file for debug info"));
65 static cl::opt<bool> FullLeadingAddr("full-leading-addr",
66 cl::desc("Print full leading address"));
68 static cl::opt<bool> NoLeadingAddr("no-leading-addr",
69 cl::desc("Print no leading address"));
71 cl::opt<bool> llvm::UniversalHeaders("universal-headers",
72 cl::desc("Print Mach-O universal headers "
75 cl::opt<bool>
77 cl::desc("Print archive headers for Mach-O archives "
80 cl::opt<bool>
82 cl::desc("Print the offset to each archive member for "
86 cl::opt<bool>
88 cl::desc("Print indirect symbol table for Mach-O "
91 cl::opt<bool>
93 cl::desc("Print the data in code table for Mach-O objects "
96 cl::opt<bool>
98 cl::desc("Print the linker optimization hints for "
101 cl::opt<bool>
103 cl::desc("Print the info plist section as strings for "
106 cl::opt<bool>
108 cl::desc("Print the shared libraries used for linked "
111 cl::opt<bool>
113 cl::desc("Print the shared library's id for the dylib Mach-O "
116 cl::opt<bool>
118 cl::desc("Print the info for Mach-O objects in "
121 cl::opt<bool>
123 cl::desc("Print the Objective-C runtime meta data for "
126 cl::opt<std::string> llvm::DisSymName(
128 cl::desc("disassemble just this symbol's instructions (requires -macho"));
130 static cl::opt<bool> NoSymbolicOperands(
132 cl::desc("do not symbolic operands when disassembling (requires -macho)"));
134 static cl::list<std::string>
135 ArchFlags("arch", cl::desc("architecture(s) from a Mach-O file to dump"),
136 cl::ZeroOrMore);
5155 SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5156 if (CL == SectionRef())
5157 CL = get_section(O, "__DATA", "__objc_classlist");
5158 info.S = CL;
5159 walk_pointer_list_64("class", CL, O, &info, print_class64_t);
5227 const SectionRef CL = get_section(O, "__OBJC2", "__class_list");
5228 if (CL != SectionRef()) {
5229 info.S = CL;
5230 walk_pointer_list_32("class", CL, O, &info, print_class32_t);
5232 const SectionRef CL = get_section(O, "__DATA", "__objc_classlist");
5233 info.S = CL;
5234 walk_pointer_list_32("class", CL, O, &info, print_class32_t);