2013-12-05 22:02:29 +00:00
|
|
|
//===- llvm-cov.cpp - LLVM coverage tool ----------------------------------===//
|
2011-09-28 18:50:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// llvm-cov is a command line tools to analyze and report coverage information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-22 22:56:03 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-10-30 20:29:48 +00:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2014-08-22 22:56:03 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
2015-03-24 23:34:36 +00:00
|
|
|
#include "llvm/Support/Process.h"
|
2015-01-14 11:23:27 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2014-08-22 22:56:03 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// \brief The main entry point for the 'show' subcommand.
|
2014-10-30 20:57:49 +00:00
|
|
|
int showMain(int argc, const char *argv[]);
|
2014-08-22 22:56:03 +00:00
|
|
|
|
|
|
|
/// \brief The main entry point for the 'report' subcommand.
|
2014-10-30 20:57:49 +00:00
|
|
|
int reportMain(int argc, const char *argv[]);
|
2014-08-22 22:56:03 +00:00
|
|
|
|
|
|
|
/// \brief The main entry point for the 'convert-for-testing' subcommand.
|
2014-10-30 20:57:49 +00:00
|
|
|
int convertForTestingMain(int argc, const char *argv[]);
|
2014-08-22 22:56:03 +00:00
|
|
|
|
|
|
|
/// \brief The main entry point for the gcov compatible coverage tool.
|
2014-10-30 20:57:49 +00:00
|
|
|
int gcovMain(int argc, const char *argv[]);
|
2011-09-28 18:50:00 +00:00
|
|
|
|
2014-10-30 20:29:48 +00:00
|
|
|
/// \brief Top level help.
|
2015-03-09 16:23:46 +00:00
|
|
|
static int helpMain(int argc, const char *argv[]) {
|
2015-03-24 23:34:36 +00:00
|
|
|
errs() << "Usage: llvm-cov {gcov|report|show} [OPTION]...\n\n"
|
|
|
|
<< "Shows code coverage information.\n\n"
|
|
|
|
<< "Subcommands:\n"
|
|
|
|
<< " gcov: Work with the gcov format.\n"
|
|
|
|
<< " show: Annotate source files using instrprof style coverage.\n"
|
|
|
|
<< " report: Summarize instrprof style coverage information.\n";
|
2014-10-30 20:29:48 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-28 18:03:51 +00:00
|
|
|
int main(int argc, const char **argv) {
|
2014-08-22 22:56:03 +00:00
|
|
|
// If argv[0] is or ends with 'gcov', always be gcov compatible
|
|
|
|
if (sys::path::stem(argv[0]).endswith_lower("gcov"))
|
2014-10-30 20:57:49 +00:00
|
|
|
return gcovMain(argc, argv);
|
2014-08-22 22:56:03 +00:00
|
|
|
|
|
|
|
// Check if we are invoking a specific tool command.
|
|
|
|
if (argc > 1) {
|
2014-10-30 20:57:49 +00:00
|
|
|
typedef int (*MainFunction)(int, const char *[]);
|
|
|
|
MainFunction Func = StringSwitch<MainFunction>(argv[1])
|
|
|
|
.Case("convert-for-testing", convertForTestingMain)
|
|
|
|
.Case("gcov", gcovMain)
|
|
|
|
.Case("report", reportMain)
|
|
|
|
.Case("show", showMain)
|
|
|
|
.Cases("-h", "-help", "--help", helpMain)
|
|
|
|
.Default(nullptr);
|
2014-08-22 22:56:03 +00:00
|
|
|
|
2014-10-30 20:57:49 +00:00
|
|
|
if (Func) {
|
2014-09-18 11:52:57 +00:00
|
|
|
std::string Invocation = std::string(argv[0]) + " " + argv[1];
|
2014-08-22 22:56:03 +00:00
|
|
|
argv[1] = Invocation.c_str();
|
2014-10-30 20:57:49 +00:00
|
|
|
return Func(argc - 1, argv + 1);
|
2014-08-22 22:56:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-24 23:34:36 +00:00
|
|
|
if (argc > 1) {
|
|
|
|
if (sys::Process::StandardErrHasColors())
|
|
|
|
errs().changeColor(raw_ostream::RED);
|
|
|
|
errs() << "Unrecognized command: " << argv[1] << ".\n\n";
|
|
|
|
if (sys::Process::StandardErrHasColors())
|
|
|
|
errs().resetColor();
|
|
|
|
}
|
|
|
|
helpMain(argc, argv);
|
|
|
|
return 1;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|