mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
llvm-cov: Implement --no-output
In gcov, there's a -n/--no-output option, which disables the writing of any .gcov files, so that it emits only the summary info on stdout. This implements the same behaviour in llvm-cov. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208148 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -37,9 +37,9 @@ namespace GCOV {
|
|||||||
|
|
||||||
/// GCOVOptions - A struct for passing gcov options between functions.
|
/// GCOVOptions - A struct for passing gcov options between functions.
|
||||||
struct GCOVOptions {
|
struct GCOVOptions {
|
||||||
GCOVOptions(bool A, bool B, bool C, bool F, bool P, bool U, bool L)
|
GCOVOptions(bool A, bool B, bool C, bool F, bool P, bool U, bool L, bool N)
|
||||||
: AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F),
|
: AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F),
|
||||||
PreservePaths(P), UncondBranch(U), LongFileNames(L) {}
|
PreservePaths(P), UncondBranch(U), LongFileNames(L), NoOutput(N) {}
|
||||||
|
|
||||||
bool AllBlocks;
|
bool AllBlocks;
|
||||||
bool BranchInfo;
|
bool BranchInfo;
|
||||||
@@ -48,6 +48,7 @@ struct GCOVOptions {
|
|||||||
bool PreservePaths;
|
bool PreservePaths;
|
||||||
bool UncondBranch;
|
bool UncondBranch;
|
||||||
bool LongFileNames;
|
bool LongFileNames;
|
||||||
|
bool NoOutput;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
|
/// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
|
||||||
@@ -389,13 +390,15 @@ public:
|
|||||||
void print(StringRef MainFilename, StringRef GCNOFile, StringRef GCDAFile);
|
void print(StringRef MainFilename, StringRef GCNOFile, StringRef GCDAFile);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void printFunctionSummary(raw_fd_ostream &OS,
|
std::string getCoveragePath(StringRef Filename, StringRef MainFilename);
|
||||||
|
std::unique_ptr<raw_ostream> openCoveragePath(StringRef CoveragePath);
|
||||||
|
void printFunctionSummary(raw_ostream &OS,
|
||||||
const FunctionVector &Funcs) const;
|
const FunctionVector &Funcs) const;
|
||||||
void printBlockInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
void printBlockInfo(raw_ostream &OS, const GCOVBlock &Block,
|
||||||
uint32_t LineIndex, uint32_t &BlockNo) const;
|
uint32_t LineIndex, uint32_t &BlockNo) const;
|
||||||
void printBranchInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
void printBranchInfo(raw_ostream &OS, const GCOVBlock &Block,
|
||||||
GCOVCoverage &Coverage, uint32_t &EdgeNo);
|
GCOVCoverage &Coverage, uint32_t &EdgeNo);
|
||||||
void printUncondBranchInfo(raw_fd_ostream &OS, uint32_t &EdgeNo,
|
void printUncondBranchInfo(raw_ostream &OS, uint32_t &EdgeNo,
|
||||||
uint64_t Count) const;
|
uint64_t Count) const;
|
||||||
|
|
||||||
void printCoverage(const GCOVCoverage &Coverage) const;
|
void printCoverage(const GCOVCoverage &Coverage) const;
|
||||||
|
@@ -467,6 +467,38 @@ static std::string mangleCoveragePath(StringRef Filename, bool PreservePaths) {
|
|||||||
return Result.str();
|
return Result.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string FileInfo::getCoveragePath(StringRef Filename,
|
||||||
|
StringRef MainFilename) {
|
||||||
|
if (Options.NoOutput)
|
||||||
|
// This is probably a bug in gcov, but when -n is specified, paths aren't
|
||||||
|
// mangled at all, and the -l and -p options are ignored. Here, we do the
|
||||||
|
// same.
|
||||||
|
return Filename;
|
||||||
|
|
||||||
|
std::string CoveragePath;
|
||||||
|
if (Options.LongFileNames && !Filename.equals(MainFilename))
|
||||||
|
CoveragePath =
|
||||||
|
mangleCoveragePath(MainFilename, Options.PreservePaths) + "##";
|
||||||
|
CoveragePath +=
|
||||||
|
mangleCoveragePath(Filename, Options.PreservePaths) + ".gcov";
|
||||||
|
return CoveragePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<raw_ostream>
|
||||||
|
FileInfo::openCoveragePath(StringRef CoveragePath) {
|
||||||
|
if (Options.NoOutput)
|
||||||
|
return make_unique<raw_null_ostream>();
|
||||||
|
|
||||||
|
std::string ErrorInfo;
|
||||||
|
auto OS = make_unique<raw_fd_ostream>(CoveragePath.str().c_str(), ErrorInfo,
|
||||||
|
sys::fs::F_Text);
|
||||||
|
if (!ErrorInfo.empty()) {
|
||||||
|
errs() << ErrorInfo << "\n";
|
||||||
|
return make_unique<raw_null_ostream>();
|
||||||
|
}
|
||||||
|
return std::move(OS);
|
||||||
|
}
|
||||||
|
|
||||||
/// print - Print source files with collected line count information.
|
/// print - Print source files with collected line count information.
|
||||||
void FileInfo::print(StringRef MainFilename, StringRef GCNOFile,
|
void FileInfo::print(StringRef MainFilename, StringRef GCNOFile,
|
||||||
StringRef GCDAFile) {
|
StringRef GCDAFile) {
|
||||||
@@ -480,16 +512,9 @@ void FileInfo::print(StringRef MainFilename, StringRef GCNOFile,
|
|||||||
}
|
}
|
||||||
StringRef AllLines = Buff->getBuffer();
|
StringRef AllLines = Buff->getBuffer();
|
||||||
|
|
||||||
std::string CoveragePath;
|
std::string CoveragePath = getCoveragePath(Filename, MainFilename);
|
||||||
if (Options.LongFileNames && !Filename.equals(MainFilename))
|
std::unique_ptr<raw_ostream> S = openCoveragePath(CoveragePath);
|
||||||
CoveragePath =
|
raw_ostream &OS = *S;
|
||||||
mangleCoveragePath(MainFilename, Options.PreservePaths) + "##";
|
|
||||||
CoveragePath +=
|
|
||||||
mangleCoveragePath(Filename, Options.PreservePaths) + ".gcov";
|
|
||||||
std::string ErrorInfo;
|
|
||||||
raw_fd_ostream OS(CoveragePath.c_str(), ErrorInfo, sys::fs::F_Text);
|
|
||||||
if (!ErrorInfo.empty())
|
|
||||||
errs() << ErrorInfo << "\n";
|
|
||||||
|
|
||||||
OS << " -: 0:Source:" << Filename << "\n";
|
OS << " -: 0:Source:" << Filename << "\n";
|
||||||
OS << " -: 0:Graph:" << GCNOFile << "\n";
|
OS << " -: 0:Graph:" << GCNOFile << "\n";
|
||||||
@@ -606,10 +631,11 @@ void FileInfo::print(StringRef MainFilename, StringRef GCNOFile,
|
|||||||
if (Options.FuncCoverage)
|
if (Options.FuncCoverage)
|
||||||
printFuncCoverage();
|
printFuncCoverage();
|
||||||
printFileCoverage();
|
printFileCoverage();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// printFunctionSummary - Print function and block summary.
|
/// printFunctionSummary - Print function and block summary.
|
||||||
void FileInfo::printFunctionSummary(raw_fd_ostream &OS,
|
void FileInfo::printFunctionSummary(raw_ostream &OS,
|
||||||
const FunctionVector &Funcs) const {
|
const FunctionVector &Funcs) const {
|
||||||
for (FunctionVector::const_iterator I = Funcs.begin(), E = Funcs.end();
|
for (FunctionVector::const_iterator I = Funcs.begin(), E = Funcs.end();
|
||||||
I != E; ++I) {
|
I != E; ++I) {
|
||||||
@@ -631,7 +657,7 @@ void FileInfo::printFunctionSummary(raw_fd_ostream &OS,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// printBlockInfo - Output counts for each block.
|
/// printBlockInfo - Output counts for each block.
|
||||||
void FileInfo::printBlockInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block,
|
||||||
uint32_t LineIndex, uint32_t &BlockNo) const {
|
uint32_t LineIndex, uint32_t &BlockNo) const {
|
||||||
if (Block.getCount() == 0)
|
if (Block.getCount() == 0)
|
||||||
OS << " $$$$$:";
|
OS << " $$$$$:";
|
||||||
@@ -641,7 +667,7 @@ void FileInfo::printBlockInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// printBranchInfo - Print conditional branch probabilities.
|
/// printBranchInfo - Print conditional branch probabilities.
|
||||||
void FileInfo::printBranchInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block,
|
||||||
GCOVCoverage &Coverage, uint32_t &EdgeNo) {
|
GCOVCoverage &Coverage, uint32_t &EdgeNo) {
|
||||||
SmallVector<uint64_t, 16> BranchCounts;
|
SmallVector<uint64_t, 16> BranchCounts;
|
||||||
uint64_t TotalCounts = 0;
|
uint64_t TotalCounts = 0;
|
||||||
@@ -671,7 +697,7 @@ void FileInfo::printBranchInfo(raw_fd_ostream &OS, const GCOVBlock &Block,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// printUncondBranchInfo - Print unconditional branch probabilities.
|
/// printUncondBranchInfo - Print unconditional branch probabilities.
|
||||||
void FileInfo::printUncondBranchInfo(raw_fd_ostream &OS, uint32_t &EdgeNo,
|
void FileInfo::printUncondBranchInfo(raw_ostream &OS, uint32_t &EdgeNo,
|
||||||
uint64_t Count) const {
|
uint64_t Count) const {
|
||||||
OS << format("unconditional %2u ", EdgeNo++)
|
OS << format("unconditional %2u ", EdgeNo++)
|
||||||
<< formatBranchInfo(Options, Count, Count) << "\n";
|
<< formatBranchInfo(Options, Count, Count) << "\n";
|
||||||
@@ -717,6 +743,8 @@ void FileInfo::printFileCoverage() const {
|
|||||||
const GCOVCoverage &Coverage = I->second;
|
const GCOVCoverage &Coverage = I->second;
|
||||||
outs() << "File '" << Coverage.Name << "'\n";
|
outs() << "File '" << Coverage.Name << "'\n";
|
||||||
printCoverage(Coverage);
|
printCoverage(Coverage);
|
||||||
outs() << Coverage.Name << ":creating '" << Filename << "'\n\n";
|
if (!Options.NoOutput)
|
||||||
|
outs() << Coverage.Name << ":creating '" << Filename << "'\n";
|
||||||
|
outs() << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
6
test/tools/llvm-cov/Inputs/test_no_output.output
Normal file
6
test/tools/llvm-cov/Inputs/test_no_output.output
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
File 'test.cpp'
|
||||||
|
Lines executed:84.21% of 38
|
||||||
|
|
||||||
|
File './test.h'
|
||||||
|
Lines executed:100.00% of 1
|
||||||
|
|
@@ -31,6 +31,9 @@ RUN: llvm-cov -o objdir/test test.c | diff -u test_no_options.output -
|
|||||||
RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov
|
RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov
|
||||||
RUN: diff -aub test_objdir.h.gcov test.h.gcov
|
RUN: diff -aub test_objdir.h.gcov test.h.gcov
|
||||||
|
|
||||||
|
# With gcov output disabled
|
||||||
|
RUN: llvm-cov -n test.c | diff -u test_no_output.output -
|
||||||
|
|
||||||
# Preserve paths. This mangles the output filenames.
|
# Preserve paths. This mangles the output filenames.
|
||||||
RUN: mkdir -p %t/srcdir/nested_dir
|
RUN: mkdir -p %t/srcdir/nested_dir
|
||||||
RUN: cp test.cpp test.h %t/srcdir
|
RUN: cp test.cpp test.h %t/srcdir
|
||||||
|
@@ -47,6 +47,10 @@ static cl::opt<bool> FuncSummary("f", cl::Grouping, cl::init(false),
|
|||||||
cl::desc("Show coverage for each function"));
|
cl::desc("Show coverage for each function"));
|
||||||
static cl::alias FuncSummaryA("function-summaries", cl::aliasopt(FuncSummary));
|
static cl::alias FuncSummaryA("function-summaries", cl::aliasopt(FuncSummary));
|
||||||
|
|
||||||
|
static cl::opt<bool> NoOutput("n", cl::Grouping, cl::init(false),
|
||||||
|
cl::desc("Do not output any .gcov files"));
|
||||||
|
static cl::alias NoOutputA("no-output", cl::aliasopt(NoOutput));
|
||||||
|
|
||||||
static cl::opt<std::string>
|
static cl::opt<std::string>
|
||||||
ObjectDir("o", cl::value_desc("DIR|FILE"), cl::init(""),
|
ObjectDir("o", cl::value_desc("DIR|FILE"), cl::init(""),
|
||||||
cl::desc("Find objects in DIR or based on FILE's path"));
|
cl::desc("Find objects in DIR or based on FILE's path"));
|
||||||
@@ -130,7 +134,7 @@ int main(int argc, char **argv) {
|
|||||||
GF.dump();
|
GF.dump();
|
||||||
|
|
||||||
GCOVOptions Options(AllBlocks, BranchProb, BranchCount, FuncSummary,
|
GCOVOptions Options(AllBlocks, BranchProb, BranchCount, FuncSummary,
|
||||||
PreservePaths, UncondBranch, LongNames);
|
PreservePaths, UncondBranch, LongNames, NoOutput);
|
||||||
FileInfo FI(Options);
|
FileInfo FI(Options);
|
||||||
GF.collectLineCounts(FI);
|
GF.collectLineCounts(FI);
|
||||||
FI.print(SourceFile, InputGCNO, InputGCDA);
|
FI.print(SourceFile, InputGCNO, InputGCDA);
|
||||||
|
Reference in New Issue
Block a user