2011-10-04 17:24:48 +00:00
|
|
|
//===- GCOVr.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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-10-04 17:24:48 +00:00
|
|
|
// GCOV implements the interface to read and write coverage files that use
|
|
|
|
// 'gcov' format.
|
2011-09-28 18:50:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2011-10-04 17:24:48 +00:00
|
|
|
#include "llvm/Support/GCOV.h"
|
2011-09-28 18:50:00 +00:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2011-09-29 16:46:47 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2013-10-22 05:09:41 +00:00
|
|
|
#include "llvm/Support/Format.h"
|
2011-09-28 18:50:00 +00:00
|
|
|
#include "llvm/Support/MemoryObject.h"
|
|
|
|
#include "llvm/Support/system_error.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVFile implementation.
|
|
|
|
|
|
|
|
/// ~GCOVFile - Delete GCOVFile and its content.
|
|
|
|
GCOVFile::~GCOVFile() {
|
|
|
|
DeleteContainerPointers(Functions);
|
|
|
|
}
|
|
|
|
|
2011-09-29 17:06:40 +00:00
|
|
|
/// isGCDAFile - Return true if Format identifies a .gcda file.
|
2012-08-31 17:31:28 +00:00
|
|
|
static bool isGCDAFile(GCOV::GCOVFormat Format) {
|
|
|
|
return Format == GCOV::GCDA_402 || Format == GCOV::GCDA_404;
|
2011-09-29 17:06:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isGCNOFile - Return true if Format identifies a .gcno file.
|
2012-08-31 17:31:28 +00:00
|
|
|
static bool isGCNOFile(GCOV::GCOVFormat Format) {
|
|
|
|
return Format == GCOV::GCNO_402 || Format == GCOV::GCNO_404;
|
2011-09-29 17:06:40 +00:00
|
|
|
}
|
|
|
|
|
2011-09-28 18:50:00 +00:00
|
|
|
/// read - Read GCOV buffer.
|
|
|
|
bool GCOVFile::read(GCOVBuffer &Buffer) {
|
2012-08-31 17:31:28 +00:00
|
|
|
GCOV::GCOVFormat Format = Buffer.readGCOVFormat();
|
|
|
|
if (Format == GCOV::InvalidGCOV)
|
2011-09-28 18:50:00 +00:00
|
|
|
return false;
|
|
|
|
|
2013-10-25 02:22:21 +00:00
|
|
|
if (isGCNOFile(Format)) {
|
|
|
|
while (true) {
|
|
|
|
GCOVFunction *GFun = new GCOVFunction();
|
|
|
|
if (!GFun->read(Buffer, Format))
|
|
|
|
break;
|
2011-09-29 17:06:40 +00:00
|
|
|
Functions.push_back(GFun);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-25 02:22:21 +00:00
|
|
|
else if (isGCDAFile(Format)) {
|
|
|
|
for (size_t i = 0, e = Functions.size(); i < e; ++i) {
|
|
|
|
bool ReadGCDA = Functions[i]->read(Buffer, Format);
|
|
|
|
(void)ReadGCDA;
|
|
|
|
assert(ReadGCDA && ".gcda data does not match .gcno data");
|
|
|
|
}
|
2013-11-05 01:11:58 +00:00
|
|
|
if (Buffer.readObjectTag()) {
|
|
|
|
uint32_t Length = Buffer.readInt();
|
|
|
|
Buffer.readInt(); // checksum
|
|
|
|
Buffer.readInt(); // num
|
|
|
|
RunCount = Buffer.readInt();
|
|
|
|
Buffer.advanceCursor(Length-3);
|
|
|
|
}
|
|
|
|
while (Buffer.readProgramTag()) {
|
|
|
|
uint32_t Length = Buffer.readInt();
|
|
|
|
Buffer.advanceCursor(Length);
|
2013-10-25 02:22:21 +00:00
|
|
|
++ProgramCount;
|
2013-11-05 01:11:58 +00:00
|
|
|
}
|
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.
|
2011-09-28 18:50:00 +00:00
|
|
|
void GCOVFile::dump() {
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Functions.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
(*I)->dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVFile::collectLineCounts(FileInfo &FI) {
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Functions.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
(*I)->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.
|
|
|
|
|
|
|
|
/// ~GCOVFunction - Delete GCOVFunction and its content.
|
|
|
|
GCOVFunction::~GCOVFunction() {
|
|
|
|
DeleteContainerPointers(Blocks);
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:54:32 +00:00
|
|
|
/// read - Read a function from the buffer. Return false if buffer cursor
|
2011-09-28 18:50:00 +00:00
|
|
|
/// does not point to a function tag.
|
2012-08-31 17:31:28 +00:00
|
|
|
bool GCOVFunction::read(GCOVBuffer &Buff, GCOV::GCOVFormat Format) {
|
2011-09-28 18:50:00 +00:00
|
|
|
if (!Buff.readFunctionTag())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Buff.readInt(); // Function header length
|
|
|
|
Ident = Buff.readInt();
|
|
|
|
Buff.readInt(); // Checksum #1
|
2013-06-25 18:13:52 +00:00
|
|
|
if (Format != GCOV::GCNO_402 && Format != GCOV::GCDA_402)
|
2011-09-28 18:50:00 +00:00
|
|
|
Buff.readInt(); // Checksum #2
|
|
|
|
|
|
|
|
Name = Buff.readString();
|
2012-08-31 17:31:28 +00:00
|
|
|
if (Format == GCOV::GCNO_402 || Format == GCOV::GCNO_404)
|
2011-09-28 18:50:00 +00:00
|
|
|
Filename = Buff.readString();
|
|
|
|
|
2012-08-31 17:31:28 +00:00
|
|
|
if (Format == GCOV::GCDA_402 || Format == GCOV::GCDA_404) {
|
2011-09-28 18:50:00 +00:00
|
|
|
Buff.readArcTag();
|
2013-10-24 01:51:04 +00:00
|
|
|
uint32_t i = 0;
|
2011-09-28 18:50:00 +00:00
|
|
|
uint32_t Count = Buff.readInt() / 2;
|
2013-10-24 01:51:04 +00:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
for (uint32_t Line = 0; i < Count; ++Line) {
|
|
|
|
GCOVBlock &Block = *Blocks[Line];
|
|
|
|
for (size_t Edge = 0, End = Block.getNumEdges(); Edge < End; ++Edge) {
|
|
|
|
assert(i < Count && "Unexpected number of Edges!");
|
|
|
|
Block.addCount(Buff.readInt64());
|
|
|
|
++i;
|
|
|
|
}
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
2012-02-22 17:25:00 +00:00
|
|
|
return true;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LineNumber = Buff.readInt();
|
|
|
|
|
|
|
|
// read blocks.
|
2012-09-23 03:58:21 +00:00
|
|
|
bool BlockTagFound = Buff.readBlockTag();
|
|
|
|
(void)BlockTagFound;
|
|
|
|
assert(BlockTagFound && "Block Tag not found!");
|
2011-09-28 18:50:00 +00:00
|
|
|
uint32_t BlockCount = Buff.readInt();
|
2013-10-22 20:02:36 +00:00
|
|
|
for (uint32_t i = 0, e = BlockCount; i != e; ++i) {
|
2011-09-28 18:50:00 +00:00
|
|
|
Buff.readInt(); // Block flags;
|
|
|
|
Blocks.push_back(new GCOVBlock(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
// read edges.
|
|
|
|
while (Buff.readEdgeTag()) {
|
|
|
|
uint32_t EdgeCount = (Buff.readInt() - 1) / 2;
|
|
|
|
uint32_t BlockNo = Buff.readInt();
|
2012-09-23 03:58:21 +00:00
|
|
|
assert(BlockNo < BlockCount && "Unexpected Block number!");
|
2013-10-22 20:02:36 +00:00
|
|
|
for (uint32_t i = 0, e = EdgeCount; i != e; ++i) {
|
2011-09-28 18:50:00 +00:00
|
|
|
Blocks[BlockNo]->addEdge(Buff.readInt());
|
|
|
|
Buff.readInt(); // Edge flag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read line table.
|
|
|
|
while (Buff.readLineTag()) {
|
|
|
|
uint32_t LineTableLength = Buff.readInt();
|
2013-10-22 19:54:32 +00:00
|
|
|
uint32_t EndPos = Buff.getCursor() + LineTableLength*4;
|
2011-09-28 18:50:00 +00:00
|
|
|
uint32_t BlockNo = Buff.readInt();
|
2012-09-23 03:58:21 +00:00
|
|
|
assert(BlockNo < BlockCount && "Unexpected Block number!");
|
2011-09-28 18:50:00 +00:00
|
|
|
GCOVBlock *Block = Blocks[BlockNo];
|
|
|
|
Buff.readInt(); // flag
|
2013-10-22 19:54:32 +00:00
|
|
|
while (Buff.getCursor() != (EndPos - 4)) {
|
2011-09-28 18:50:00 +00:00
|
|
|
StringRef Filename = Buff.readString();
|
2013-10-22 19:54:32 +00:00
|
|
|
if (Buff.getCursor() == (EndPos - 4)) break;
|
2011-09-28 18:50:00 +00:00
|
|
|
while (uint32_t L = Buff.readInt())
|
2012-07-19 00:11:40 +00:00
|
|
|
Block->addLine(Filename, L);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
Buff.readInt(); // flag
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVFunction content to dbgs() for debugging purposes.
|
2011-09-28 18:50:00 +00:00
|
|
|
void GCOVFunction::dump() {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "===== " << Name << " @ " << Filename << ":" << LineNumber << "\n";
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<GCOVBlock *>::iterator I = Blocks.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Blocks.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
(*I)->dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVFunction::collectLineCounts(FileInfo &FI) {
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<GCOVBlock *>::iterator I = Blocks.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Blocks.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
(*I)->collectLineCounts(FI);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVBlock implementation.
|
|
|
|
|
|
|
|
/// ~GCOVBlock - Delete GCOVBlock and its content.
|
|
|
|
GCOVBlock::~GCOVBlock() {
|
|
|
|
Edges.clear();
|
|
|
|
DeleteContainerSeconds(Lines);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GCOVBlock::addLine(StringRef Filename, uint32_t LineNo) {
|
|
|
|
GCOVLines *&LinesForFile = Lines[Filename];
|
|
|
|
if (!LinesForFile)
|
|
|
|
LinesForFile = new GCOVLines();
|
|
|
|
LinesForFile->add(LineNo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVBlock::collectLineCounts(FileInfo &FI) {
|
|
|
|
for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Lines.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
I->second->collectLineCounts(FI, I->first(), Counter);
|
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVBlock content to dbgs() for debugging purposes.
|
2011-09-28 18:50:00 +00:00
|
|
|
void GCOVBlock::dump() {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "Block : " << Number << " Counter : " << Counter << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
if (!Edges.empty()) {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "\tEdges : ";
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<uint32_t>::iterator I = Edges.begin(), E = Edges.end();
|
2012-07-19 00:11:40 +00:00
|
|
|
I != E; ++I)
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << (*I) << ",";
|
|
|
|
dbgs() << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
if (!Lines.empty()) {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "\tLines : ";
|
2011-09-28 18:50:00 +00:00
|
|
|
for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
LE = Lines.end(); LI != LE; ++LI) {
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << LI->first() << " -> ";
|
2011-09-28 18:50:00 +00:00
|
|
|
LI->second->dump();
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCOVLines implementation.
|
|
|
|
|
|
|
|
/// collectLineCounts - Collect line counts. This must be used after
|
|
|
|
/// reading .gcno and .gcda files.
|
|
|
|
void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename,
|
2013-10-22 17:43:47 +00:00
|
|
|
uint64_t Count) {
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<uint32_t>::iterator I = Lines.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Lines.end(); I != E; ++I)
|
2011-09-28 18:50:00 +00:00
|
|
|
FI.addLineCount(Filename, *I, Count);
|
|
|
|
}
|
|
|
|
|
2013-10-25 02:22:24 +00:00
|
|
|
/// dump - Dump GCOVLines content to dbgs() for debugging purposes.
|
2011-09-28 18:50:00 +00:00
|
|
|
void GCOVLines::dump() {
|
2013-07-04 01:31:24 +00:00
|
|
|
for (SmallVectorImpl<uint32_t>::iterator I = Lines.begin(),
|
2012-07-19 00:11:40 +00:00
|
|
|
E = Lines.end(); I != E; ++I)
|
2013-10-25 02:22:24 +00:00
|
|
|
dbgs() << (*I) << ",";
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FileInfo implementation.
|
|
|
|
|
|
|
|
/// print - Print source files with collected line count information.
|
2013-11-02 00:09:17 +00:00
|
|
|
void FileInfo::print(raw_fd_ostream &OS, StringRef gcnoFile,
|
|
|
|
StringRef gcdaFile) {
|
2011-09-28 18:50:00 +00:00
|
|
|
for (StringMap<LineCounts>::iterator I = LineInfo.begin(), E = LineInfo.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
StringRef Filename = I->first();
|
2013-11-05 01:20:41 +00:00
|
|
|
OS << " -: 0:Source:" << Filename << "\n";
|
|
|
|
OS << " -: 0:Graph:" << gcnoFile << "\n";
|
|
|
|
OS << " -: 0:Data:" << gcdaFile << "\n";
|
|
|
|
OS << " -: 0:Runs:" << RunCount << "\n";
|
|
|
|
OS << " -: 0:Programs:" << ProgramCount << "\n";
|
|
|
|
LineCounts &L = LineInfo[Filename];
|
2013-11-05 01:56:29 +00:00
|
|
|
OwningPtr<MemoryBuffer> Buff;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
|
|
|
|
errs() << Filename << ": " << ec.message() << "\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
StringRef AllLines = Buff.take()->getBuffer();
|
2013-10-23 19:45:03 +00:00
|
|
|
uint32_t i = 0;
|
|
|
|
while (!AllLines.empty()) {
|
|
|
|
if (L.find(i) != L.end()) {
|
|
|
|
if (L[i] == 0)
|
2013-11-02 00:09:17 +00:00
|
|
|
OS << " #####:";
|
2013-10-23 19:45:03 +00:00
|
|
|
else
|
2013-11-02 00:09:17 +00:00
|
|
|
OS << format("%9lu:", L[i]);
|
2013-10-23 19:45:03 +00:00
|
|
|
} else {
|
2013-11-02 00:09:17 +00:00
|
|
|
OS << " -:";
|
2013-10-23 19:45:03 +00:00
|
|
|
}
|
2011-09-28 18:50:00 +00:00
|
|
|
std::pair<StringRef, StringRef> P = AllLines.split('\n');
|
|
|
|
if (AllLines != P.first)
|
2013-11-02 00:09:17 +00:00
|
|
|
OS << format("%5u:", i+1) << P.first;
|
|
|
|
OS << "\n";
|
2011-09-28 18:50:00 +00:00
|
|
|
AllLines = P.second;
|
2013-10-23 19:45:03 +00:00
|
|
|
++i;
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|