Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:cl

37 static cl::opt<bool> 
38 FindBugs("find-bugs", cl::desc("Run many different optimization sequences "
39 "on program to find bugs"), cl::init(false));
41 static cl::list<std::string>
42 InputFilenames(cl::Positional, cl::OneOrMore,
43 cl::desc("<input llvm ll/bc files>"));
45 static cl::opt<unsigned>
46 TimeoutValue("timeout", cl::init(300), cl::value_desc("seconds"),
47 cl::desc("Number of seconds program is allowed to run before it "
50 static cl::opt<int>
51 MemoryLimit("mlimit", cl::init(-1), cl::value_desc("MBytes"),
52 cl::desc("Maximum amount of memory to use. 0 disables check."
55 static cl::opt<bool>
57 cl::desc("Run optimizations through valgrind"));
62 static cl::list<const PassInfo*, bool, PassNameParser>
63 PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
65 static cl::opt<bool>
67 cl::desc("Include the standard compile time optimizations"));
69 static cl::opt<bool>
71 cl::desc("Include the standard link time optimizations"));
73 static cl::opt<bool>
75 cl::desc("Optimization level 1. Similar to llvm-gcc -O1"));
77 static cl::opt<bool>
79 cl::desc("Optimization level 2. Similar to llvm-gcc -O2"));
81 static cl::opt<bool>
83 cl::desc("Optimization level 3. Similar to llvm-gcc -O3"));
85 static cl::opt<std::string>
86 OverrideTriple("mtriple", cl::desc("Override target triple for module"));
131 cl::ParseCommandLineOptions(argc, argv,