Lines Matching refs:cl

249   cl::opt<std::string, true> ObjectFilename(  in run()
250 cl::Positional, cl::Required, cl::location(this->ObjectFilename), in run()
251 cl::desc("Covered executable or object file.")); in run()
253 cl::list<std::string> InputSourceFiles( in run()
254 cl::Positional, cl::desc("<Source files>"), cl::ZeroOrMore); in run()
256 cl::opt<std::string, true> PGOFilename( in run()
257 "instr-profile", cl::Required, cl::location(this->PGOFilename), in run()
258 cl::desc( in run()
261 cl::opt<std::string> Arch( in run()
262 "arch", cl::desc("architecture of the coverage mapping binary")); in run()
264 cl::opt<bool> DebugDump("dump", cl::Optional, in run()
265 cl::desc("Show internal debug dump")); in run()
267 cl::opt<bool> FilenameEquivalence( in run()
268 "filename-equivalence", cl::Optional, in run()
269 cl::desc("Treat source files as equivalent to paths in the coverage data " in run()
272 cl::OptionCategory FilteringCategory("Function filtering options"); in run()
274 cl::list<std::string> NameFilters( in run()
275 "name", cl::Optional, in run()
276 cl::desc("Show code coverage only for functions with the given name"), in run()
277 cl::ZeroOrMore, cl::cat(FilteringCategory)); in run()
279 cl::list<std::string> NameRegexFilters( in run()
280 "name-regex", cl::Optional, in run()
281 cl::desc("Show code coverage only for functions that match the given " in run()
283 cl::ZeroOrMore, cl::cat(FilteringCategory)); in run()
285 cl::opt<double> RegionCoverageLtFilter( in run()
286 "region-coverage-lt", cl::Optional, in run()
287 cl::desc("Show code coverage only for functions with region coverage " in run()
289 cl::cat(FilteringCategory)); in run()
291 cl::opt<double> RegionCoverageGtFilter( in run()
292 "region-coverage-gt", cl::Optional, in run()
293 cl::desc("Show code coverage only for functions with region coverage " in run()
295 cl::cat(FilteringCategory)); in run()
297 cl::opt<double> LineCoverageLtFilter( in run()
298 "line-coverage-lt", cl::Optional, in run()
299 cl::desc("Show code coverage only for functions with line coverage less " in run()
301 cl::cat(FilteringCategory)); in run()
303 cl::opt<double> LineCoverageGtFilter( in run()
304 "line-coverage-gt", cl::Optional, in run()
305 cl::desc("Show code coverage only for functions with line coverage " in run()
307 cl::cat(FilteringCategory)); in run()
309 cl::opt<cl::boolOrDefault> UseColor( in run()
310 "use-color", cl::desc("Emit colored output (default=autodetect)"), in run()
311 cl::init(cl::BOU_UNSET)); in run()
314 cl::ParseCommandLineOptions(argc, argv, "LLVM code coverage tool\n"); in run()
318 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
320 : UseColor == cl::BOU_TRUE; in run()
383 cl::OptionCategory ViewCategory("Viewing options"); in show()
385 cl::opt<bool> ShowLineExecutionCounts( in show()
386 "show-line-counts", cl::Optional, in show()
387 cl::desc("Show the execution counts for each line"), cl::init(true), in show()
388 cl::cat(ViewCategory)); in show()
390 cl::opt<bool> ShowRegions( in show()
391 "show-regions", cl::Optional, in show()
392 cl::desc("Show the execution counts for each region"), in show()
393 cl::cat(ViewCategory)); in show()
395 cl::opt<bool> ShowBestLineRegionsCounts( in show()
396 "show-line-counts-or-regions", cl::Optional, in show()
397 cl::desc("Show the execution counts for each line, or the execution " in show()
399 cl::cat(ViewCategory)); in show()
401 cl::opt<bool> ShowExpansions("show-expansions", cl::Optional, in show()
402 cl::desc("Show expanded source regions"), in show()
403 cl::cat(ViewCategory)); in show()
405 cl::opt<bool> ShowInstantiations("show-instantiations", cl::Optional, in show()
406 cl::desc("Show function instantiations"), in show()
407 cl::cat(ViewCategory)); in show()