2013-12-05 22:02:29 +00:00
|
|
|
//===- GCOV.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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2013-11-14 11:44:58 +00:00
|
|
|
// GCOV implements the interface to read and write coverage files that use
|
2011-10-04 17:24:48 +00:00
|
|
|
// 'gcov' format.
|
2011-09-28 18:50:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-02-04 21:03:17 +00:00
|
|
|
#include "llvm/Support/GCOV.h"
|
2011-09-29 16:46:47 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2014-02-04 21:03:17 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2014-02-04 10:45:02 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2014-02-04 21:03:17 +00:00
|
|
|
#include "llvm/Support/Format.h"
|
2011-09-28 18:50:00 +00:00
|
|
|
#include "llvm/Support/MemoryObject.h"
|
2014-02-04 10:45:02 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
2013-12-13 01:15:07 +00:00
|
|
|
#include <algorithm>
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2011-09-28 18:50:00 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVFile implementation.
|
|
|
|
|
2013-12-04 04:49:23 +00:00
|
|
|
/// readGCNO - Read GCNO buffer.
|
|
|
|
bool GCOVFile::readGCNO(GCOVBuffer &Buffer) {
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readGCNOFormat())
|
|
|
|
return false;
|
|
|
|
if (!Buffer.readGCOVVersion(Version))
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readInt(Checksum))
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
while (true) {
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readFunctionTag())
|
|
|
|
break;
|
2014-04-21 21:40:16 +00:00
|
|
|
auto GFun = make_unique<GCOVFunction>(*this);
|
2013-12-04 04:49:23 +00:00
|
|
|
if (!GFun->readGCNO(Buffer, Version))
|
|
|
|
return false;
|
2014-04-21 21:40:16 +00:00
|
|
|
Functions.push_back(std::move(GFun));
|
2013-12-04 04:49:23 +00:00
|
|
|
}
|
2011-09-29 17:06:40 +00:00
|
|
|
|
2013-12-04 05:07:36 +00:00
|
|
|
GCNOInitialized = true;
|
2013-12-04 04:49:23 +00:00
|
|
|
return true;
|
2011-09-29 17:06:40 +00:00
|
|
|
}
|
|
|
|
|
2013-12-04 04:49:23 +00:00
|
|
|
/// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be
|
|
|
|
/// called after readGCNO().
|
|
|
|
bool GCOVFile::readGCDA(GCOVBuffer &Buffer) {
|
2013-12-04 05:07:36 +00:00
|
|
|
assert(GCNOInitialized && "readGCDA() can only be called after readGCNO()");
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readGCDAFormat())
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
GCOV::GCOVVersion GCDAVersion;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readGCOVVersion(GCDAVersion))
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
if (Version != GCDAVersion) {
|
|
|
|
errs() << "GCOV versions do not match.\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
}
|
2011-09-28 18:50:00 +00:00
|
|
|
|
2013-12-04 04:49:23 +00:00
|
|
|
uint32_t GCDAChecksum;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readInt(GCDAChecksum))
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
if (Checksum != GCDAChecksum) {
|
2015-01-23 22:38:01 +00:00
|
|
|
errs() << "File checksums do not match: " << Checksum
|
|
|
|
<< " != " << GCDAChecksum << ".\n";
|
2013-12-04 04:49:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (size_t i = 0, e = Functions.size(); i < e; ++i) {
|
|
|
|
if (!Buffer.readFunctionTag()) {
|
|
|
|
errs() << "Unexpected number of functions.\n";
|
2013-11-20 04:15:05 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-04 04:49:23 +00:00
|
|
|
if (!Functions[i]->readGCDA(Buffer, Version))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Buffer.readObjectTag()) {
|
|
|
|
uint32_t Length;
|
|
|
|
uint32_t Dummy;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readInt(Length))
|
|
|
|
return false;
|
|
|
|
if (!Buffer.readInt(Dummy))
|
|
|
|
return false; // checksum
|
|
|
|
if (!Buffer.readInt(Dummy))
|
|
|
|
return false; // num
|
|
|
|
if (!Buffer.readInt(RunCount))
|
|
|
|
return false;
|
|
|
|
Buffer.advanceCursor(Length - 3);
|
2013-12-04 04:49:23 +00:00
|
|
|
}
|
|
|
|
while (Buffer.readProgramTag()) {
|
|
|
|
uint32_t Length;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buffer.readInt(Length))
|
|
|
|
return false;
|
2013-12-04 04:49:23 +00:00
|
|
|
Buffer.advanceCursor(Length);
|
|
|
|
++ProgramCount;
|
2013-10-25 02:22:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-28 18:50:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVFile content to dbgs() for debugging purposes.
|
2013-11-19 20:33:32 +00:00
|
|
|
void GCOVFile::dump() const {
|
2014-04-21 21:40:16 +00:00
|
|
|
for (const auto &FPtr : Functions)
|
|
|
|
FPtr->dump();
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVFile::collectLineCounts(FileInfo &FI) {
|
2014-04-21 21:40:16 +00:00
|
|
|
for (const auto &FPtr : Functions)
|
|
|
|
FPtr->collectLineCounts(FI);
|
2013-11-05 01:11:58 +00:00
|
|
|
FI.setRunCount(RunCount);
|
2013-10-25 02:22:21 +00:00
|
|
|
FI.setProgramCount(ProgramCount);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVFunction implementation.
|
|
|
|
|
2013-12-03 00:15:49 +00:00
|
|
|
/// readGCNO - Read a function from the GCNO buffer. Return false if an error
|
|
|
|
/// occurs.
|
2013-12-04 04:49:23 +00:00
|
|
|
bool GCOVFunction::readGCNO(GCOVBuffer &Buff, GCOV::GCOVVersion Version) {
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t Dummy;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false; // Function header length
|
|
|
|
if (!Buff.readInt(Ident))
|
|
|
|
return false;
|
|
|
|
if (!Buff.readInt(Checksum))
|
|
|
|
return false;
|
2013-12-04 05:42:28 +00:00
|
|
|
if (Version != GCOV::V402) {
|
|
|
|
uint32_t CfgChecksum;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(CfgChecksum))
|
|
|
|
return false;
|
2013-12-04 05:42:28 +00:00
|
|
|
if (Parent.getChecksum() != CfgChecksum) {
|
|
|
|
errs() << "File checksums do not match: " << Parent.getChecksum()
|
|
|
|
<< " != " << CfgChecksum << " in (" << Name << ").\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readString(Name))
|
|
|
|
return false;
|
|
|
|
if (!Buff.readString(Filename))
|
|
|
|
return false;
|
|
|
|
if (!Buff.readInt(LineNumber))
|
|
|
|
return false;
|
2011-09-28 18:50:00 +00:00
|
|
|
|
|
|
|
// read blocks.
|
2013-11-14 00:07:15 +00:00
|
|
|
if (!Buff.readBlockTag()) {
|
|
|
|
errs() << "Block tag not found.\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
uint32_t BlockCount;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(BlockCount))
|
|
|
|
return false;
|
2013-10-22 20:02:36 +00:00
|
|
|
for (uint32_t i = 0, e = BlockCount; i != e; ++i) {
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false; // Block flags;
|
2014-04-21 21:40:16 +00:00
|
|
|
Blocks.push_back(make_unique<GCOVBlock>(*this, i));
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// read edges.
|
|
|
|
while (Buff.readEdgeTag()) {
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t EdgeCount;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(EdgeCount))
|
|
|
|
return false;
|
2013-11-14 00:07:15 +00:00
|
|
|
EdgeCount = (EdgeCount - 1) / 2;
|
|
|
|
uint32_t BlockNo;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(BlockNo))
|
|
|
|
return false;
|
2013-11-14 00:07:15 +00:00
|
|
|
if (BlockNo >= BlockCount) {
|
2013-12-05 22:02:33 +00:00
|
|
|
errs() << "Unexpected block number: " << BlockNo << " (in " << Name
|
|
|
|
<< ").\n";
|
2013-11-14 00:07:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-10-22 20:02:36 +00:00
|
|
|
for (uint32_t i = 0, e = EdgeCount; i != e; ++i) {
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t Dst;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dst))
|
|
|
|
return false;
|
2014-04-21 21:40:16 +00:00
|
|
|
Edges.push_back(make_unique<GCOVEdge>(*Blocks[BlockNo], *Blocks[Dst]));
|
|
|
|
GCOVEdge *Edge = Edges.back().get();
|
2013-12-03 00:24:44 +00:00
|
|
|
Blocks[BlockNo]->addDstEdge(Edge);
|
|
|
|
Blocks[Dst]->addSrcEdge(Edge);
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false; // Edge flag
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read line table.
|
|
|
|
while (Buff.readLineTag()) {
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t LineTableLength;
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read the length of this line table.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(LineTableLength))
|
|
|
|
return false;
|
|
|
|
uint32_t EndPos = Buff.getCursor() + LineTableLength * 4;
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t BlockNo;
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read the block number this table is associated with.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(BlockNo))
|
|
|
|
return false;
|
2013-11-14 00:07:15 +00:00
|
|
|
if (BlockNo >= BlockCount) {
|
2013-12-05 22:02:33 +00:00
|
|
|
errs() << "Unexpected block number: " << BlockNo << " (in " << Name
|
|
|
|
<< ").\n";
|
2013-11-14 00:07:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-21 21:40:16 +00:00
|
|
|
GCOVBlock &Block = *Blocks[BlockNo];
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read the word that pads the beginning of the line table. This may be a
|
|
|
|
// flag of some sort, but seems to always be zero.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false;
|
2014-05-02 20:01:24 +00:00
|
|
|
|
|
|
|
// Line information starts here and continues up until the last word.
|
|
|
|
if (Buff.getCursor() != (EndPos - sizeof(uint32_t))) {
|
2013-11-14 00:32:00 +00:00
|
|
|
StringRef F;
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read the source file name.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readString(F))
|
|
|
|
return false;
|
2013-12-05 22:02:33 +00:00
|
|
|
if (Filename != F) {
|
|
|
|
errs() << "Multiple sources for a single basic block: " << Filename
|
|
|
|
<< " != " << F << " (in " << Name << ").\n";
|
2013-11-14 00:32:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read lines up to, but not including, the null terminator.
|
|
|
|
while (Buff.getCursor() < (EndPos - 2 * sizeof(uint32_t))) {
|
2013-11-14 00:07:15 +00:00
|
|
|
uint32_t Line;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Line))
|
|
|
|
return false;
|
2014-05-02 20:01:24 +00:00
|
|
|
// Line 0 means this instruction was injected by the compiler. Skip it.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Line)
|
|
|
|
continue;
|
2014-04-21 21:40:16 +00:00
|
|
|
Block.addLine(Line);
|
2013-11-14 00:07:15 +00:00
|
|
|
}
|
2014-05-02 20:01:24 +00:00
|
|
|
// Read the null terminator.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
2014-05-02 20:01:24 +00:00
|
|
|
// The last word is either a flag or padding, it isn't clear which. Skip
|
|
|
|
// over it.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-03 00:15:49 +00:00
|
|
|
/// readGCDA - Read a function from the GCDA buffer. Return false if an error
|
|
|
|
/// occurs.
|
2013-12-04 04:49:23 +00:00
|
|
|
bool GCOVFunction::readGCDA(GCOVBuffer &Buff, GCOV::GCOVVersion Version) {
|
2013-12-03 00:15:49 +00:00
|
|
|
uint32_t Dummy;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Dummy))
|
|
|
|
return false; // Function header length
|
2013-12-04 08:57:17 +00:00
|
|
|
|
2013-12-04 05:42:28 +00:00
|
|
|
uint32_t GCDAIdent;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(GCDAIdent))
|
|
|
|
return false;
|
2013-12-04 05:42:28 +00:00
|
|
|
if (Ident != GCDAIdent) {
|
2015-01-23 22:38:01 +00:00
|
|
|
errs() << "Function identifiers do not match: " << Ident
|
|
|
|
<< " != " << GCDAIdent << " (in " << Name << ").\n";
|
2013-12-04 05:42:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-04 08:57:17 +00:00
|
|
|
uint32_t GCDAChecksum;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(GCDAChecksum))
|
|
|
|
return false;
|
2013-12-04 08:57:17 +00:00
|
|
|
if (Checksum != GCDAChecksum) {
|
2015-01-23 22:38:01 +00:00
|
|
|
errs() << "Function checksums do not match: " << Checksum
|
|
|
|
<< " != " << GCDAChecksum << " (in " << Name << ").\n";
|
2013-12-04 08:57:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-04 05:42:28 +00:00
|
|
|
|
|
|
|
uint32_t CfgChecksum;
|
|
|
|
if (Version != GCOV::V402) {
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(CfgChecksum))
|
|
|
|
return false;
|
2013-12-04 05:42:28 +00:00
|
|
|
if (Parent.getChecksum() != CfgChecksum) {
|
|
|
|
errs() << "File checksums do not match: " << Parent.getChecksum()
|
|
|
|
<< " != " << CfgChecksum << " (in " << Name << ").\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef GCDAName;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readString(GCDAName))
|
|
|
|
return false;
|
2013-12-04 05:42:28 +00:00
|
|
|
if (Name != GCDAName) {
|
|
|
|
errs() << "Function names do not match: " << Name << " != " << GCDAName
|
|
|
|
<< ".\n";
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-03 00:15:49 +00:00
|
|
|
|
|
|
|
if (!Buff.readArcTag()) {
|
2013-12-04 05:42:28 +00:00
|
|
|
errs() << "Arc tag not found (in " << Name << ").\n";
|
2013-12-03 00:15:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-03 00:24:44 +00:00
|
|
|
|
2013-12-03 00:15:49 +00:00
|
|
|
uint32_t Count;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt(Count))
|
|
|
|
return false;
|
2013-12-03 00:15:49 +00:00
|
|
|
Count /= 2;
|
|
|
|
|
|
|
|
// This for loop adds the counts for each block. A second nested loop is
|
|
|
|
// required to combine the edge counts that are contained in the GCDA file.
|
2013-12-03 00:24:44 +00:00
|
|
|
for (uint32_t BlockNo = 0; Count > 0; ++BlockNo) {
|
|
|
|
// The last block is always reserved for exit block
|
2015-01-23 22:38:01 +00:00
|
|
|
if (BlockNo >= Blocks.size() - 1) {
|
2013-12-04 05:42:28 +00:00
|
|
|
errs() << "Unexpected number of edges (in " << Name << ").\n";
|
2013-12-03 00:15:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-03 00:24:44 +00:00
|
|
|
GCOVBlock &Block = *Blocks[BlockNo];
|
|
|
|
for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End;
|
2015-01-23 22:38:01 +00:00
|
|
|
++EdgeNo) {
|
2013-12-03 00:15:49 +00:00
|
|
|
if (Count == 0) {
|
2013-12-04 05:42:28 +00:00
|
|
|
errs() << "Unexpected number of edges (in " << Name << ").\n";
|
2013-12-03 00:15:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
uint64_t ArcCount;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (!Buff.readInt64(ArcCount))
|
|
|
|
return false;
|
2013-12-03 00:24:44 +00:00
|
|
|
Block.addCount(EdgeNo, ArcCount);
|
2013-12-03 00:15:49 +00:00
|
|
|
--Count;
|
|
|
|
}
|
2013-12-13 01:15:07 +00:00
|
|
|
Block.sortDstEdges();
|
2013-12-03 00:15:49 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:15:07 +00:00
|
|
|
/// getEntryCount - Get the number of times the function was called by
|
|
|
|
/// retrieving the entry block's count.
|
|
|
|
uint64_t GCOVFunction::getEntryCount() const {
|
|
|
|
return Blocks.front()->getCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getExitCount - Get the number of times the function returned by retrieving
|
|
|
|
/// the exit block's count.
|
|
|
|
uint64_t GCOVFunction::getExitCount() const {
|
|
|
|
return Blocks.back()->getCount();
|
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVFunction content to dbgs() for debugging purposes.
|
2013-11-19 20:33:32 +00:00
|
|
|
void GCOVFunction::dump() const {
|
2014-11-06 06:55:02 +00:00
|
|
|
dbgs() << "===== " << Name << " (" << Ident << ") @ " << Filename << ":"
|
|
|
|
<< LineNumber << "\n";
|
2014-04-21 21:40:16 +00:00
|
|
|
for (const auto &Block : Blocks)
|
|
|
|
Block->dump();
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVFunction::collectLineCounts(FileInfo &FI) {
|
2014-03-26 22:03:06 +00:00
|
|
|
// If the line number is zero, this is a function that doesn't actually appear
|
|
|
|
// in the source file, so there isn't anything we can do with it.
|
|
|
|
if (LineNumber == 0)
|
|
|
|
return;
|
|
|
|
|
2014-04-21 21:40:16 +00:00
|
|
|
for (const auto &Block : Blocks)
|
|
|
|
Block->collectLineCounts(FI);
|
2013-12-13 01:15:07 +00:00
|
|
|
FI.addFunctionLine(Filename, LineNumber, this);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVBlock implementation.
|
|
|
|
|
|
|
|
/// ~GCOVBlock - Delete GCOVBlock and its content.
|
|
|
|
GCOVBlock::~GCOVBlock() {
|
2013-12-03 00:24:44 +00:00
|
|
|
SrcEdges.clear();
|
|
|
|
DstEdges.clear();
|
2013-11-14 00:32:00 +00:00
|
|
|
Lines.clear();
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-03 00:24:44 +00:00
|
|
|
/// addCount - Add to block counter while storing the edge count. If the
|
|
|
|
/// destination has no outgoing edges, also update that block's count too.
|
|
|
|
void GCOVBlock::addCount(size_t DstEdgeNo, uint64_t N) {
|
|
|
|
assert(DstEdgeNo < DstEdges.size()); // up to caller to ensure EdgeNo is valid
|
|
|
|
DstEdges[DstEdgeNo]->Count = N;
|
|
|
|
Counter += N;
|
2014-04-21 21:40:16 +00:00
|
|
|
if (!DstEdges[DstEdgeNo]->Dst.getNumDstEdges())
|
|
|
|
DstEdges[DstEdgeNo]->Dst.Counter += N;
|
2013-12-03 00:24:44 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:15:07 +00:00
|
|
|
/// sortDstEdges - Sort destination edges by block number, nop if already
|
|
|
|
/// sorted. This is required for printing branch info in the correct order.
|
|
|
|
void GCOVBlock::sortDstEdges() {
|
|
|
|
if (!DstEdgesAreSorted) {
|
|
|
|
SortDstEdgesFunctor SortEdges;
|
|
|
|
std::stable_sort(DstEdges.begin(), DstEdges.end(), SortEdges);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 18:50:00 +00:00
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVBlock::collectLineCounts(FileInfo &FI) {
|
2015-01-23 22:57:02 +00:00
|
|
|
for (uint32_t N : Lines)
|
|
|
|
FI.addBlockLine(Parent.getFilename(), N, this);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVBlock content to dbgs() for debugging purposes.
|
2013-11-19 20:33:32 +00:00
|
|
|
void GCOVBlock::dump() const {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "Block : " << Number << " Counter : " << Counter << "\n";
|
2013-12-03 00:24:44 +00:00
|
|
|
if (!SrcEdges.empty()) {
|
|
|
|
dbgs() << "\tSource Edges : ";
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVEdge *Edge : SrcEdges)
|
2014-04-21 21:40:16 +00:00
|
|
|
dbgs() << Edge->Src.Number << " (" << Edge->Count << "), ";
|
2013-12-03 00:24:44 +00:00
|
|
|
dbgs() << "\n";
|
|
|
|
}
|
|
|
|
if (!DstEdges.empty()) {
|
|
|
|
dbgs() << "\tDestination Edges : ";
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVEdge *Edge : DstEdges)
|
2014-04-21 21:40:16 +00:00
|
|
|
dbgs() << Edge->Dst.Number << " (" << Edge->Count << "), ";
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
if (!Lines.empty()) {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "\tLines : ";
|
2015-01-23 22:57:02 +00:00
|
|
|
for (uint32_t N : Lines)
|
|
|
|
dbgs() << (N) << ",";
|
2013-11-14 00:32:00 +00:00
|
|
|
dbgs() << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FileInfo implementation.
|
|
|
|
|
2013-12-13 01:15:07 +00:00
|
|
|
// Safe integer division, returns 0 if numerator is 0.
|
|
|
|
static uint32_t safeDiv(uint64_t Numerator, uint64_t Divisor) {
|
|
|
|
if (!Numerator)
|
|
|
|
return 0;
|
2015-01-23 22:38:01 +00:00
|
|
|
return Numerator / Divisor;
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This custom division function mimics gcov's branch ouputs:
|
|
|
|
// - Round to closest whole number
|
|
|
|
// - Only output 0% or 100% if it's exactly that value
|
|
|
|
static uint32_t branchDiv(uint64_t Numerator, uint64_t Divisor) {
|
|
|
|
if (!Numerator)
|
|
|
|
return 0;
|
|
|
|
if (Numerator == Divisor)
|
|
|
|
return 100;
|
|
|
|
|
2015-01-23 22:38:01 +00:00
|
|
|
uint8_t Res = (Numerator * 100 + Divisor / 2) / Divisor;
|
2013-12-13 01:15:07 +00:00
|
|
|
if (Res == 0)
|
|
|
|
return 1;
|
|
|
|
if (Res == 100)
|
|
|
|
return 99;
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2013-12-18 18:40:15 +00:00
|
|
|
struct formatBranchInfo {
|
2015-01-23 22:38:01 +00:00
|
|
|
formatBranchInfo(const GCOVOptions &Options, uint64_t Count, uint64_t Total)
|
|
|
|
: Options(Options), Count(Count), Total(Total) {}
|
2013-12-18 18:40:15 +00:00
|
|
|
|
|
|
|
void print(raw_ostream &OS) const {
|
|
|
|
if (!Total)
|
|
|
|
OS << "never executed";
|
|
|
|
else if (Options.BranchCount)
|
|
|
|
OS << "taken " << Count;
|
|
|
|
else
|
|
|
|
OS << "taken " << branchDiv(Count, Total) << "%";
|
|
|
|
}
|
|
|
|
|
|
|
|
const GCOVOptions &Options;
|
|
|
|
uint64_t Count;
|
|
|
|
uint64_t Total;
|
|
|
|
};
|
|
|
|
|
|
|
|
static raw_ostream &operator<<(raw_ostream &OS, const formatBranchInfo &FBI) {
|
|
|
|
FBI.print(OS);
|
|
|
|
return OS;
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:11:23 +00:00
|
|
|
namespace {
|
|
|
|
class LineConsumer {
|
|
|
|
std::unique_ptr<MemoryBuffer> Buffer;
|
|
|
|
StringRef Remaining;
|
2015-01-23 22:38:01 +00:00
|
|
|
|
2014-05-07 02:11:23 +00:00
|
|
|
public:
|
|
|
|
LineConsumer(StringRef Filename) {
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFileOrSTDIN(Filename);
|
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
2014-05-07 02:11:23 +00:00
|
|
|
errs() << Filename << ": " << EC.message() << "\n";
|
|
|
|
Remaining = "";
|
2014-07-06 17:43:13 +00:00
|
|
|
} else {
|
|
|
|
Buffer = std::move(BufferOrErr.get());
|
2014-05-07 02:11:23 +00:00
|
|
|
Remaining = Buffer->getBuffer();
|
2014-07-06 17:43:13 +00:00
|
|
|
}
|
2014-05-07 02:11:23 +00:00
|
|
|
}
|
|
|
|
bool empty() { return Remaining.empty(); }
|
|
|
|
void printNext(raw_ostream &OS, uint32_t LineNum) {
|
|
|
|
StringRef Line;
|
|
|
|
if (empty())
|
|
|
|
Line = "/*EOF*/";
|
|
|
|
else
|
|
|
|
std::tie(Line, Remaining) = Remaining.split("\n");
|
|
|
|
OS << format("%5u:", LineNum) << Line << "\n";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-02-04 10:45:02 +00:00
|
|
|
/// Convert a path to a gcov filename. If PreservePaths is true, this
|
|
|
|
/// translates "/" to "#", ".." to "^", and drops ".", to match gcov.
|
|
|
|
static std::string mangleCoveragePath(StringRef Filename, bool PreservePaths) {
|
|
|
|
if (!PreservePaths)
|
2014-04-23 21:44:55 +00:00
|
|
|
return sys::path::filename(Filename).str();
|
2014-02-04 10:45:02 +00:00
|
|
|
|
|
|
|
// This behaviour is defined by gcov in terms of text replacements, so it's
|
|
|
|
// not likely to do anything useful on filesystems with different textual
|
|
|
|
// conventions.
|
|
|
|
llvm::SmallString<256> Result("");
|
|
|
|
StringRef::iterator I, S, E;
|
|
|
|
for (I = S = Filename.begin(), E = Filename.end(); I != E; ++I) {
|
|
|
|
if (*I != '/')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (I - S == 1 && *S == '.') {
|
|
|
|
// ".", the current directory, is skipped.
|
|
|
|
} else if (I - S == 2 && *S == '.' && *(S + 1) == '.') {
|
|
|
|
// "..", the parent directory, is replaced with "^".
|
|
|
|
Result.append("^#");
|
|
|
|
} else {
|
|
|
|
if (S < I)
|
|
|
|
// Leave other components intact,
|
|
|
|
Result.append(S, I);
|
|
|
|
// And separate with "#".
|
|
|
|
Result.push_back('#');
|
|
|
|
}
|
|
|
|
S = I + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (S < I)
|
|
|
|
Result.append(S, I);
|
|
|
|
return Result.str();
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:11:18 +00:00
|
|
|
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) + "##";
|
2015-01-23 22:38:01 +00:00
|
|
|
CoveragePath += mangleCoveragePath(Filename, Options.PreservePaths) + ".gcov";
|
2014-05-07 02:11:18 +00:00
|
|
|
return CoveragePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<raw_ostream>
|
|
|
|
FileInfo::openCoveragePath(StringRef CoveragePath) {
|
|
|
|
if (Options.NoOutput)
|
2014-05-07 16:01:27 +00:00
|
|
|
return llvm::make_unique<raw_null_ostream>();
|
2014-05-07 02:11:18 +00:00
|
|
|
|
2014-08-25 18:16:47 +00:00
|
|
|
std::error_code EC;
|
|
|
|
auto OS = llvm::make_unique<raw_fd_ostream>(CoveragePath.str(), EC,
|
|
|
|
sys::fs::F_Text);
|
|
|
|
if (EC) {
|
|
|
|
errs() << EC.message() << "\n";
|
2014-05-07 16:01:27 +00:00
|
|
|
return llvm::make_unique<raw_null_ostream>();
|
2014-05-07 02:11:18 +00:00
|
|
|
}
|
|
|
|
return std::move(OS);
|
|
|
|
}
|
|
|
|
|
2011-09-28 18:50:00 +00:00
|
|
|
/// print - Print source files with collected line count information.
|
2015-01-23 23:09:27 +00:00
|
|
|
void FileInfo::print(raw_ostream &InfoOS, StringRef MainFilename,
|
|
|
|
StringRef GCNOFile, StringRef GCDAFile) {
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const auto &LI : LineInfo) {
|
|
|
|
StringRef Filename = LI.first();
|
2014-05-07 02:11:23 +00:00
|
|
|
auto AllLines = LineConsumer(Filename);
|
2013-11-19 20:57:20 +00:00
|
|
|
|
2014-05-07 02:11:18 +00:00
|
|
|
std::string CoveragePath = getCoveragePath(Filename, MainFilename);
|
2015-01-23 23:09:27 +00:00
|
|
|
std::unique_ptr<raw_ostream> CovStream = openCoveragePath(CoveragePath);
|
|
|
|
raw_ostream &CovOS = *CovStream;
|
2013-12-03 00:57:11 +00:00
|
|
|
|
2015-01-23 23:09:27 +00:00
|
|
|
CovOS << " -: 0:Source:" << Filename << "\n";
|
|
|
|
CovOS << " -: 0:Graph:" << GCNOFile << "\n";
|
|
|
|
CovOS << " -: 0:Data:" << GCDAFile << "\n";
|
|
|
|
CovOS << " -: 0:Runs:" << RunCount << "\n";
|
|
|
|
CovOS << " -: 0:Programs:" << ProgramCount << "\n";
|
2013-11-19 20:57:20 +00:00
|
|
|
|
2015-01-23 22:57:02 +00:00
|
|
|
const LineData &Line = LI.second;
|
2013-12-19 00:29:25 +00:00
|
|
|
GCOVCoverage FileCoverage(Filename);
|
2015-01-23 22:38:01 +00:00
|
|
|
for (uint32_t LineIndex = 0; LineIndex < Line.LastLine || !AllLines.empty();
|
|
|
|
++LineIndex) {
|
2013-12-18 18:40:15 +00:00
|
|
|
if (Options.BranchInfo) {
|
2013-12-13 01:15:07 +00:00
|
|
|
FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex);
|
|
|
|
if (FuncsIt != Line.Functions.end())
|
2015-01-23 23:09:27 +00:00
|
|
|
printFunctionSummary(CovOS, FuncsIt->second);
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
2013-12-03 01:35:31 +00:00
|
|
|
|
2013-12-13 01:15:07 +00:00
|
|
|
BlockLines::const_iterator BlocksIt = Line.Blocks.find(LineIndex);
|
|
|
|
if (BlocksIt == Line.Blocks.end()) {
|
|
|
|
// No basic blocks are on this line. Not an executable line of code.
|
2015-01-23 23:09:27 +00:00
|
|
|
CovOS << " -:";
|
|
|
|
AllLines.printNext(CovOS, LineIndex + 1);
|
2013-12-13 01:15:07 +00:00
|
|
|
} else {
|
2013-12-03 00:38:21 +00:00
|
|
|
const BlockVector &Blocks = BlocksIt->second;
|
2013-12-13 01:15:07 +00:00
|
|
|
|
|
|
|
// Add up the block counts to form line counts.
|
2013-12-19 00:29:25 +00:00
|
|
|
DenseMap<const GCOVFunction *, bool> LineExecs;
|
2013-12-03 00:38:21 +00:00
|
|
|
uint64_t LineCount = 0;
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVBlock *Block : Blocks) {
|
2013-12-10 01:02:07 +00:00
|
|
|
if (Options.AllBlocks) {
|
|
|
|
// Only take the highest block count for that line.
|
|
|
|
uint64_t BlockCount = Block->getCount();
|
|
|
|
LineCount = LineCount > BlockCount ? LineCount : BlockCount;
|
|
|
|
} else {
|
|
|
|
// Sum up all of the block counts.
|
|
|
|
LineCount += Block->getCount();
|
|
|
|
}
|
2013-12-19 00:29:25 +00:00
|
|
|
|
|
|
|
if (Options.FuncCoverage) {
|
|
|
|
// This is a slightly convoluted way to most accurately gather line
|
|
|
|
// statistics for functions. Basically what is happening is that we
|
|
|
|
// don't want to count a single line with multiple blocks more than
|
|
|
|
// once. However, we also don't simply want to give the total line
|
|
|
|
// count to every function that starts on the line. Thus, what is
|
|
|
|
// happening here are two things:
|
|
|
|
// 1) Ensure that the number of logical lines is only incremented
|
|
|
|
// once per function.
|
|
|
|
// 2) If there are multiple blocks on the same line, ensure that the
|
|
|
|
// number of lines executed is incremented as long as at least
|
|
|
|
// one of the blocks are executed.
|
|
|
|
const GCOVFunction *Function = &Block->getParent();
|
|
|
|
if (FuncCoverages.find(Function) == FuncCoverages.end()) {
|
2015-01-23 22:38:01 +00:00
|
|
|
std::pair<const GCOVFunction *, GCOVCoverage> KeyValue(
|
|
|
|
Function, GCOVCoverage(Function->getName()));
|
2013-12-19 00:29:25 +00:00
|
|
|
FuncCoverages.insert(KeyValue);
|
|
|
|
}
|
|
|
|
GCOVCoverage &FuncCoverage = FuncCoverages.find(Function)->second;
|
|
|
|
|
|
|
|
if (LineExecs.find(Function) == LineExecs.end()) {
|
|
|
|
if (Block->getCount()) {
|
|
|
|
++FuncCoverage.LinesExec;
|
|
|
|
LineExecs[Function] = true;
|
|
|
|
} else {
|
|
|
|
LineExecs[Function] = false;
|
|
|
|
}
|
|
|
|
++FuncCoverage.LogicalLines;
|
|
|
|
} else if (!LineExecs[Function] && Block->getCount()) {
|
|
|
|
++FuncCoverage.LinesExec;
|
|
|
|
LineExecs[Function] = true;
|
|
|
|
}
|
|
|
|
}
|
2013-12-03 00:38:21 +00:00
|
|
|
}
|
2013-12-18 21:12:51 +00:00
|
|
|
|
2013-12-03 00:38:21 +00:00
|
|
|
if (LineCount == 0)
|
2015-01-23 23:09:27 +00:00
|
|
|
CovOS << " #####:";
|
2013-12-18 21:12:51 +00:00
|
|
|
else {
|
2015-01-23 23:09:27 +00:00
|
|
|
CovOS << format("%9" PRIu64 ":", LineCount);
|
2013-12-19 00:29:25 +00:00
|
|
|
++FileCoverage.LinesExec;
|
2013-12-18 21:12:51 +00:00
|
|
|
}
|
2013-12-19 00:29:25 +00:00
|
|
|
++FileCoverage.LogicalLines;
|
2013-12-10 01:02:07 +00:00
|
|
|
|
2015-01-23 23:09:27 +00:00
|
|
|
AllLines.printNext(CovOS, LineIndex + 1);
|
2013-12-13 01:15:07 +00:00
|
|
|
|
2013-12-10 01:02:07 +00:00
|
|
|
uint32_t BlockNo = 0;
|
2013-12-13 01:15:07 +00:00
|
|
|
uint32_t EdgeNo = 0;
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVBlock *Block : Blocks) {
|
2013-12-13 01:15:07 +00:00
|
|
|
// Only print block and branch information at the end of the block.
|
2015-01-23 22:38:01 +00:00
|
|
|
if (Block->getLastLine() != LineIndex + 1)
|
2013-12-13 01:15:07 +00:00
|
|
|
continue;
|
|
|
|
if (Options.AllBlocks)
|
2015-01-23 23:09:27 +00:00
|
|
|
printBlockInfo(CovOS, *Block, LineIndex, BlockNo);
|
2013-12-18 18:40:15 +00:00
|
|
|
if (Options.BranchInfo) {
|
2013-12-16 22:14:02 +00:00
|
|
|
size_t NumEdges = Block->getNumDstEdges();
|
|
|
|
if (NumEdges > 1)
|
2015-01-23 23:09:27 +00:00
|
|
|
printBranchInfo(CovOS, *Block, FileCoverage, EdgeNo);
|
2013-12-16 22:14:02 +00:00
|
|
|
else if (Options.UncondBranch && NumEdges == 1)
|
2015-01-23 23:09:27 +00:00
|
|
|
printUncondBranchInfo(CovOS, EdgeNo,
|
|
|
|
(*Block->dst_begin())->Count);
|
2013-12-16 22:14:02 +00:00
|
|
|
}
|
2013-12-10 01:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
2014-02-04 10:45:02 +00:00
|
|
|
FileCoverages.push_back(std::make_pair(CoveragePath, FileCoverage));
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
2013-12-19 00:29:25 +00:00
|
|
|
|
|
|
|
// FIXME: There is no way to detect calls given current instrumentation.
|
|
|
|
if (Options.FuncCoverage)
|
2015-01-23 23:09:27 +00:00
|
|
|
printFuncCoverage(InfoOS);
|
|
|
|
printFileCoverage(InfoOS);
|
2014-05-07 02:11:18 +00:00
|
|
|
return;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
2013-12-13 01:15:07 +00:00
|
|
|
|
|
|
|
/// printFunctionSummary - Print function and block summary.
|
2014-05-07 02:11:18 +00:00
|
|
|
void FileInfo::printFunctionSummary(raw_ostream &OS,
|
2013-12-13 01:15:07 +00:00
|
|
|
const FunctionVector &Funcs) const {
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVFunction *Func : Funcs) {
|
2013-12-13 01:15:07 +00:00
|
|
|
uint64_t EntryCount = Func->getEntryCount();
|
2013-12-18 18:46:25 +00:00
|
|
|
uint32_t BlocksExec = 0;
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVBlock &Block : Func->blocks())
|
2014-04-21 21:40:16 +00:00
|
|
|
if (Block.getNumDstEdges() && Block.getCount())
|
2015-01-23 22:38:01 +00:00
|
|
|
++BlocksExec;
|
2013-12-13 01:15:07 +00:00
|
|
|
|
|
|
|
OS << "function " << Func->getName() << " called " << EntryCount
|
2015-01-23 22:38:01 +00:00
|
|
|
<< " returned " << safeDiv(Func->getExitCount() * 100, EntryCount)
|
2013-12-13 01:15:07 +00:00
|
|
|
<< "% blocks executed "
|
2015-01-23 22:38:01 +00:00
|
|
|
<< safeDiv(BlocksExec * 100, Func->getNumBlocks() - 1) << "%\n";
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// printBlockInfo - Output counts for each block.
|
2014-05-07 02:11:18 +00:00
|
|
|
void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block,
|
2013-12-13 01:15:07 +00:00
|
|
|
uint32_t LineIndex, uint32_t &BlockNo) const {
|
|
|
|
if (Block.getCount() == 0)
|
|
|
|
OS << " $$$$$:";
|
|
|
|
else
|
|
|
|
OS << format("%9" PRIu64 ":", Block.getCount());
|
2015-01-23 22:38:01 +00:00
|
|
|
OS << format("%5u-block %2u\n", LineIndex + 1, BlockNo++);
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 22:14:02 +00:00
|
|
|
/// printBranchInfo - Print conditional branch probabilities.
|
2014-05-07 02:11:18 +00:00
|
|
|
void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block,
|
2013-12-19 00:29:25 +00:00
|
|
|
GCOVCoverage &Coverage, uint32_t &EdgeNo) {
|
2013-12-13 01:15:07 +00:00
|
|
|
SmallVector<uint64_t, 16> BranchCounts;
|
|
|
|
uint64_t TotalCounts = 0;
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const GCOVEdge *Edge : Block.dsts()) {
|
2013-12-13 01:15:07 +00:00
|
|
|
BranchCounts.push_back(Edge->Count);
|
|
|
|
TotalCounts += Edge->Count;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (Block.getCount())
|
|
|
|
++Coverage.BranchesExec;
|
|
|
|
if (Edge->Count)
|
|
|
|
++Coverage.BranchesTaken;
|
2013-12-18 21:12:51 +00:00
|
|
|
++Coverage.Branches;
|
2013-12-19 00:29:25 +00:00
|
|
|
|
|
|
|
if (Options.FuncCoverage) {
|
|
|
|
const GCOVFunction *Function = &Block.getParent();
|
|
|
|
GCOVCoverage &FuncCoverage = FuncCoverages.find(Function)->second;
|
2015-01-23 22:38:01 +00:00
|
|
|
if (Block.getCount())
|
|
|
|
++FuncCoverage.BranchesExec;
|
|
|
|
if (Edge->Count)
|
|
|
|
++FuncCoverage.BranchesTaken;
|
2013-12-19 00:29:25 +00:00
|
|
|
++FuncCoverage.Branches;
|
|
|
|
}
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
|
|
|
|
2015-01-23 22:57:02 +00:00
|
|
|
for (uint64_t N : BranchCounts)
|
2013-12-18 18:40:15 +00:00
|
|
|
OS << format("branch %2u ", EdgeNo++)
|
2015-01-23 22:57:02 +00:00
|
|
|
<< formatBranchInfo(Options, N, TotalCounts) << "\n";
|
2013-12-13 01:15:07 +00:00
|
|
|
}
|
2013-12-16 22:14:02 +00:00
|
|
|
|
|
|
|
/// printUncondBranchInfo - Print unconditional branch probabilities.
|
2014-05-07 02:11:18 +00:00
|
|
|
void FileInfo::printUncondBranchInfo(raw_ostream &OS, uint32_t &EdgeNo,
|
2013-12-16 22:14:02 +00:00
|
|
|
uint64_t Count) const {
|
2013-12-18 18:40:15 +00:00
|
|
|
OS << format("unconditional %2u ", EdgeNo++)
|
|
|
|
<< formatBranchInfo(Options, Count, Count) << "\n";
|
2013-12-16 22:14:02 +00:00
|
|
|
}
|
2013-12-18 21:12:51 +00:00
|
|
|
|
2013-12-19 00:29:25 +00:00
|
|
|
// printCoverage - Print generic coverage info used by both printFuncCoverage
|
|
|
|
// and printFileCoverage.
|
2015-01-23 23:09:27 +00:00
|
|
|
void FileInfo::printCoverage(raw_ostream &OS,
|
|
|
|
const GCOVCoverage &Coverage) const {
|
|
|
|
OS << format("Lines executed:%.2f%% of %u\n",
|
|
|
|
double(Coverage.LinesExec) * 100 / Coverage.LogicalLines,
|
|
|
|
Coverage.LogicalLines);
|
2013-12-18 21:12:51 +00:00
|
|
|
if (Options.BranchInfo) {
|
|
|
|
if (Coverage.Branches) {
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << format("Branches executed:%.2f%% of %u\n",
|
|
|
|
double(Coverage.BranchesExec) * 100 / Coverage.Branches,
|
|
|
|
Coverage.Branches);
|
|
|
|
OS << format("Taken at least once:%.2f%% of %u\n",
|
|
|
|
double(Coverage.BranchesTaken) * 100 / Coverage.Branches,
|
|
|
|
Coverage.Branches);
|
2013-12-18 21:12:51 +00:00
|
|
|
} else {
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << "No branches\n";
|
2013-12-18 21:12:51 +00:00
|
|
|
}
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << "No calls\n"; // to be consistent with gcov
|
2013-12-18 21:12:51 +00:00
|
|
|
}
|
2013-12-19 00:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// printFuncCoverage - Print per-function coverage info.
|
2015-01-23 23:09:27 +00:00
|
|
|
void FileInfo::printFuncCoverage(raw_ostream &OS) const {
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const auto &FC : FuncCoverages) {
|
|
|
|
const GCOVCoverage &Coverage = FC.second;
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << "Function '" << Coverage.Name << "'\n";
|
|
|
|
printCoverage(OS, Coverage);
|
|
|
|
OS << "\n";
|
2013-12-19 00:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// printFileCoverage - Print per-file coverage info.
|
2015-01-23 23:09:27 +00:00
|
|
|
void FileInfo::printFileCoverage(raw_ostream &OS) const {
|
2015-01-23 22:57:02 +00:00
|
|
|
for (const auto &FC : FileCoverages) {
|
|
|
|
const std::string &Filename = FC.first;
|
|
|
|
const GCOVCoverage &Coverage = FC.second;
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << "File '" << Coverage.Name << "'\n";
|
|
|
|
printCoverage(OS, Coverage);
|
2014-05-07 02:11:18 +00:00
|
|
|
if (!Options.NoOutput)
|
2015-01-23 23:09:27 +00:00
|
|
|
OS << Coverage.Name << ":creating '" << Filename << "'\n";
|
|
|
|
OS << "\n";
|
2013-12-19 00:29:25 +00:00
|
|
|
}
|
2013-12-18 21:12:51 +00:00
|
|
|
}
|