Lines Matching refs:cl
48 cl::list<std::string> InputFilenames(cl::Positional,
49 cl::desc("<input object files>"),
50 cl::ZeroOrMore);
53 cl::opt<bool> FileHeaders("file-headers",
54 cl::desc("Display file headers "));
55 cl::alias FileHeadersShort("h",
56 cl::desc("Alias for --file-headers"),
57 cl::aliasopt(FileHeaders));
60 cl::opt<bool> Sections("sections",
61 cl::desc("Display all sections."));
62 cl::alias SectionsShort("s",
63 cl::desc("Alias for --sections"),
64 cl::aliasopt(Sections));
67 cl::opt<bool> SectionRelocations("section-relocations",
68 cl::desc("Display relocations for each section shown."));
69 cl::alias SectionRelocationsShort("sr",
70 cl::desc("Alias for --section-relocations"),
71 cl::aliasopt(SectionRelocations));
74 cl::opt<bool> SectionSymbols("section-symbols",
75 cl::desc("Display symbols for each section shown."));
76 cl::alias SectionSymbolsShort("st",
77 cl::desc("Alias for --section-symbols"),
78 cl::aliasopt(SectionSymbols));
81 cl::opt<bool> SectionData("section-data",
82 cl::desc("Display section data for each section shown."));
83 cl::alias SectionDataShort("sd",
84 cl::desc("Alias for --section-data"),
85 cl::aliasopt(SectionData));
88 cl::opt<bool> Relocations("relocations",
89 cl::desc("Display the relocation entries in the file"));
90 cl::alias RelocationsShort("r",
91 cl::desc("Alias for --relocations"),
92 cl::aliasopt(Relocations));
95 cl::opt<bool> DynRelocs("dyn-relocations",
96 cl::desc("Display the dynamic relocation entries in the file"));
99 cl::opt<bool> Symbols("symbols",
100 cl::desc("Display the symbol table"));
101 cl::alias SymbolsShort("t",
102 cl::desc("Alias for --symbols"),
103 cl::aliasopt(Symbols));
106 cl::opt<bool> DynamicSymbols("dyn-symbols",
107 cl::desc("Display the dynamic symbol table"));
108 cl::alias DynamicSymbolsShort("dt",
109 cl::desc("Alias for --dyn-symbols"),
110 cl::aliasopt(DynamicSymbols));
113 cl::opt<bool> UnwindInfo("unwind",
114 cl::desc("Display unwind information"));
115 cl::alias UnwindInfoShort("u",
116 cl::desc("Alias for --unwind"),
117 cl::aliasopt(UnwindInfo));
120 cl::opt<bool> DynamicTable("dynamic-table",
121 cl::desc("Display the ELF .dynamic section table"));
124 cl::opt<bool> NeededLibraries("needed-libs",
125 cl::desc("Display the needed libraries"));
128 cl::opt<bool> ProgramHeaders("program-headers",
129 cl::desc("Display ELF program headers"));
132 cl::opt<bool> HashTable("hash-table",
133 cl::desc("Display ELF hash table"));
136 cl::opt<bool> GnuHashTable("gnu-hash-table",
137 cl::desc("Display ELF .gnu.hash section"));
140 cl::opt<bool> ExpandRelocs("expand-relocs",
141 cl::desc("Expand each shown relocation to multiple lines"));
144 cl::opt<bool> CodeView("codeview",
145 cl::desc("Display CodeView debug information"));
148 cl::opt<bool> CodeViewSubsectionBytes(
150 cl::desc("Dump raw contents of codeview debug sections and records"));
153 cl::opt<bool> ARMAttributes("arm-attributes",
154 cl::desc("Display the ARM attributes section"));
155 cl::alias ARMAttributesShort("-a", cl::desc("Alias for --arm-attributes"),
156 cl::aliasopt(ARMAttributes));
159 cl::opt<bool>
161 cl::desc("Display the MIPS GOT and PLT GOT sections"));
164 cl::opt<bool> MipsABIFlags("mips-abi-flags",
165 cl::desc("Display the MIPS.abiflags section"));
168 cl::opt<bool> MipsReginfo("mips-reginfo",
169 cl::desc("Display the MIPS .reginfo section"));
172 cl::opt<bool>
173 COFFImports("coff-imports", cl::desc("Display the PE/COFF import table"));
176 cl::opt<bool>
177 COFFExports("coff-exports", cl::desc("Display the PE/COFF export table"));
180 cl::opt<bool>
182 cl::desc("Display the PE/COFF .drectve section"));
185 cl::opt<bool>
187 cl::desc("Display the PE/COFF .reloc section"));
190 cl::opt<bool>
192 cl::desc("Display MachO Data in Code command"));
195 cl::opt<bool>
197 cl::desc("Display MachO indirect symbols"));
200 cl::opt<bool>
202 cl::desc("Display MachO linker options"));
205 cl::opt<bool>
207 cl::desc("Display MachO Segment command"));
210 cl::opt<bool>
212 cl::desc("Display MachO version min command"));
215 cl::opt<bool>
217 cl::desc("Display MachO Dysymtab command"));
220 cl::opt<bool>
222 cl::desc("Display contents of stackmap section"));
225 cl::opt<bool>
227 cl::desc("Display ELF version sections (if present)"));
228 cl::alias VersionInfoShort("V", cl::desc("Alias for -version-info"),
229 cl::aliasopt(VersionInfo));
440 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion); in main()
442 cl::ParseCommandLineOptions(argc, argv, "LLVM Object Reader\n"); in main()