Lines Matching refs:cl
38 static cl::list<std::string>
39 InputFilenames(cl::Positional, cl::desc("<input object files>"),
40 cl::ZeroOrMore);
42 static cl::opt<unsigned long long>
43 Address("address", cl::init(-1ULL),
44 cl::desc("Print line information for a given address"));
46 static cl::opt<bool>
47 PrintFunctions("functions", cl::init(false),
48 cl::desc("Print function names as well as line information "
51 static cl::opt<bool>
52 PrintInlining("inlining", cl::init(false),
53 cl::desc("Print all inlined frames for a given address"));
55 static cl::opt<DIDumpType>
56 DumpType("debug-dump", cl::init(DIDT_All),
57 cl::desc("Dump of debug sections:"),
58 cl::values(
136 cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n");