Lines Matching refs:cl
49 cl::list<std::string> InputFilenames(cl::Positional,
50 cl::desc("<input object files>"),
51 cl::ZeroOrMore);
54 cl::opt<bool> FileHeaders("file-headers",
55 cl::desc("Display file headers "));
56 cl::alias FileHeadersShort("h",
57 cl::desc("Alias for --file-headers"),
58 cl::aliasopt(FileHeaders));
61 cl::opt<bool> Sections("sections",
62 cl::desc("Display all sections."));
63 cl::alias SectionsShort("s",
64 cl::desc("Alias for --sections"),
65 cl::aliasopt(Sections));
68 cl::opt<bool> SectionRelocations("section-relocations",
69 cl::desc("Display relocations for each section shown."));
70 cl::alias SectionRelocationsShort("sr",
71 cl::desc("Alias for --section-relocations"),
72 cl::aliasopt(SectionRelocations));
75 cl::opt<bool> SectionSymbols("section-symbols",
76 cl::desc("Display symbols for each section shown."));
77 cl::alias SectionSymbolsShort("st",
78 cl::desc("Alias for --section-symbols"),
79 cl::aliasopt(SectionSymbols));
82 cl::opt<bool> SectionData("section-data",
83 cl::desc("Display section data for each section shown."));
84 cl::alias SectionDataShort("sd",
85 cl::desc("Alias for --section-data"),
86 cl::aliasopt(SectionData));
89 cl::opt<bool> Relocations("relocations",
90 cl::desc("Display the relocation entries in the file"));
91 cl::alias RelocationsShort("r",
92 cl::desc("Alias for --relocations"),
93 cl::aliasopt(Relocations));
96 cl::opt<bool> Symbols("symbols",
97 cl::desc("Display the symbol table"));
98 cl::alias SymbolsShort("t",
99 cl::desc("Alias for --symbols"),
100 cl::aliasopt(Symbols));
103 cl::opt<bool> DynamicSymbols("dyn-symbols",
104 cl::desc("Display the dynamic symbol table"));
105 cl::alias DynamicSymbolsShort("dt",
106 cl::desc("Alias for --dyn-symbols"),
107 cl::aliasopt(DynamicSymbols));
110 cl::opt<bool> UnwindInfo("unwind",
111 cl::desc("Display unwind information"));
112 cl::alias UnwindInfoShort("u",
113 cl::desc("Alias for --unwind"),
114 cl::aliasopt(UnwindInfo));
117 cl::opt<bool> DynamicTable("dynamic-table",
118 cl::desc("Display the ELF .dynamic section table"));
121 cl::opt<bool> NeededLibraries("needed-libs",
122 cl::desc("Display the needed libraries"));
125 cl::opt<bool> ProgramHeaders("program-headers",
126 cl::desc("Display ELF program headers"));
129 cl::opt<bool> ExpandRelocs("expand-relocs",
130 cl::desc("Expand each shown relocation to multiple lines"));
281 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
283 cl::ParseCommandLineOptions(argc, argv, "LLVM Object Reader\n");