InstrProf: Make CoverageMapping testable and add a basic unit test

Make CoverageMapping easier to create, so that we can write targeted
unit tests for its internals, and add a some infrastructure to write
these tests. Finally, add a simple unit test for basic functionality.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Justin Bogner 2015-02-18 18:01:14 +00:00
parent 2032d755e7
commit 94da968134
4 changed files with 110 additions and 13 deletions

View File

@ -28,7 +28,7 @@ namespace llvm {
class IndexedInstrProfReader; class IndexedInstrProfReader;
namespace coverage { namespace coverage {
class ObjectFileCoverageMappingReader; class CoverageMappingReader;
class CoverageMapping; class CoverageMapping;
struct CounterExpressions; struct CounterExpressions;
@ -333,10 +333,22 @@ struct CoverageSegment {
CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry)
: Line(Line), Col(Col), Count(0), HasCount(false), : Line(Line), Col(Col), Count(0), HasCount(false),
IsRegionEntry(IsRegionEntry) {} IsRegionEntry(IsRegionEntry) {}
CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
bool IsRegionEntry)
: Line(Line), Col(Col), Count(Count), HasCount(true),
IsRegionEntry(IsRegionEntry) {}
friend bool operator==(const CoverageSegment &L, const CoverageSegment &R) {
return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry);
}
void setCount(uint64_t NewCount) { void setCount(uint64_t NewCount) {
Count = NewCount; Count = NewCount;
HasCount = true; HasCount = true;
} }
void addCount(uint64_t NewCount) { setCount(Count + NewCount); } void addCount(uint64_t NewCount) { setCount(Count + NewCount); }
}; };
@ -384,7 +396,7 @@ class CoverageMapping {
public: public:
/// \brief Load the coverage mapping using the given readers. /// \brief Load the coverage mapping using the given readers.
static ErrorOr<std::unique_ptr<CoverageMapping>> static ErrorOr<std::unique_ptr<CoverageMapping>>
load(ObjectFileCoverageMappingReader &CoverageReader, load(CoverageMappingReader &CoverageReader,
IndexedInstrProfReader &ProfileReader); IndexedInstrProfReader &ProfileReader);
/// \brief Load the coverage mapping from the given files. /// \brief Load the coverage mapping from the given files.

View File

@ -27,7 +27,7 @@
namespace llvm { namespace llvm {
namespace coverage { namespace coverage {
class ObjectFileCoverageMappingReader; class CoverageMappingReader;
/// \brief Coverage mapping information for a single function. /// \brief Coverage mapping information for a single function.
struct CoverageMappingRecord { struct CoverageMappingRecord {
@ -41,15 +41,14 @@ struct CoverageMappingRecord {
/// \brief A file format agnostic iterator over coverage mapping data. /// \brief A file format agnostic iterator over coverage mapping data.
class CoverageMappingIterator class CoverageMappingIterator
: public std::iterator<std::input_iterator_tag, CoverageMappingRecord> { : public std::iterator<std::input_iterator_tag, CoverageMappingRecord> {
ObjectFileCoverageMappingReader *Reader; CoverageMappingReader *Reader;
CoverageMappingRecord Record; CoverageMappingRecord Record;
void increment(); void increment();
public: public:
CoverageMappingIterator() : Reader(nullptr) {} CoverageMappingIterator() : Reader(nullptr) {}
CoverageMappingIterator(ObjectFileCoverageMappingReader *Reader) CoverageMappingIterator(CoverageMappingReader *Reader) : Reader(Reader) {
: Reader(Reader) {
increment(); increment();
} }
@ -67,6 +66,14 @@ public:
CoverageMappingRecord *operator->() { return &Record; } CoverageMappingRecord *operator->() { return &Record; }
}; };
class CoverageMappingReader {
public:
virtual std::error_code readNextRecord(CoverageMappingRecord &Record) = 0;
CoverageMappingIterator begin() { return CoverageMappingIterator(this); }
CoverageMappingIterator end() { return CoverageMappingIterator(); }
virtual ~CoverageMappingReader() {}
};
/// \brief Base class for the raw coverage mapping and filenames data readers. /// \brief Base class for the raw coverage mapping and filenames data readers.
class RawCoverageReader { class RawCoverageReader {
protected: protected:
@ -135,7 +142,7 @@ private:
/// \brief Reader for the coverage mapping data that is emitted by the /// \brief Reader for the coverage mapping data that is emitted by the
/// frontend and stored in an object file. /// frontend and stored in an object file.
class ObjectFileCoverageMappingReader { class ObjectFileCoverageMappingReader : public CoverageMappingReader {
public: public:
struct ProfileMappingRecord { struct ProfileMappingRecord {
CoverageMappingVersion Version; CoverageMappingVersion Version;
@ -184,11 +191,7 @@ public:
sys::fs::file_magic Type = sys::fs::file_magic::unknown); sys::fs::file_magic Type = sys::fs::file_magic::unknown);
std::error_code readHeader(); std::error_code readHeader();
std::error_code readNextRecord(CoverageMappingRecord &Record); std::error_code readNextRecord(CoverageMappingRecord &Record) override;
/// Iterator over profile data.
CoverageMappingIterator begin() { return CoverageMappingIterator(this); }
CoverageMappingIterator end() { return CoverageMappingIterator(); }
/// \brief Return true if the reader has finished reading the profile data. /// \brief Return true if the reader has finished reading the profile data.
bool isEOF() { return LastError == instrprof_error::eof; } bool isEOF() { return LastError == instrprof_error::eof; }

View File

@ -178,7 +178,7 @@ void FunctionRecordIterator::skipOtherFiles() {
} }
ErrorOr<std::unique_ptr<CoverageMapping>> ErrorOr<std::unique_ptr<CoverageMapping>>
CoverageMapping::load(ObjectFileCoverageMappingReader &CoverageReader, CoverageMapping::load(CoverageMappingReader &CoverageReader,
IndexedInstrProfReader &ProfileReader) { IndexedInstrProfReader &ProfileReader) {
auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping()); auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());

View File

@ -10,6 +10,8 @@
#include "llvm/ProfileData/CoverageMapping.h" #include "llvm/ProfileData/CoverageMapping.h"
#include "llvm/ProfileData/CoverageMappingReader.h" #include "llvm/ProfileData/CoverageMappingReader.h"
#include "llvm/ProfileData/CoverageMappingWriter.h" #include "llvm/ProfileData/CoverageMappingWriter.h"
#include "llvm/ProfileData/InstrProfReader.h"
#include "llvm/ProfileData/InstrProfWriter.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#include "gtest/gtest.h" #include "gtest/gtest.h"
@ -35,11 +37,45 @@ void PrintTo(const Counter &C, ::std::ostream *os) {
else else
*os << "Counter " << C.getCounterID(); *os << "Counter " << C.getCounterID();
} }
void PrintTo(const CoverageSegment &S, ::std::ostream *os) {
*os << "CoverageSegment(" << S.Line << ", " << S.Col << ", ";
if (S.HasCount)
*os << S.Count << ", ";
*os << (S.IsRegionEntry ? "true" : "false") << ")";
}
} }
} }
namespace { namespace {
struct OneFunctionCoverageReader : CoverageMappingReader {
StringRef Name;
uint64_t Hash;
std::vector<StringRef> Filenames;
ArrayRef<CounterMappingRegion> Regions;
bool Done;
OneFunctionCoverageReader(StringRef Name, uint64_t Hash,
ArrayRef<StringRef> Filenames,
ArrayRef<CounterMappingRegion> Regions)
: Name(Name), Hash(Hash), Filenames(Filenames), Regions(Regions),
Done(false) {}
std::error_code readNextRecord(CoverageMappingRecord &Record) override {
if (Done)
return instrprof_error::eof;
Done = true;
Record.FunctionName = Name;
Record.FunctionHash = Hash;
Record.Filenames = Filenames;
Record.Expressions = {};
Record.MappingRegions = Regions;
return instrprof_error::success;
}
};
struct CoverageMappingTest : ::testing::Test { struct CoverageMappingTest : ::testing::Test {
StringMap<unsigned> Files; StringMap<unsigned> Files;
unsigned NextFile; unsigned NextFile;
@ -49,6 +85,11 @@ struct CoverageMappingTest : ::testing::Test {
std::vector<CounterExpression> OutputExpressions; std::vector<CounterExpression> OutputExpressions;
std::vector<CounterMappingRegion> OutputCMRs; std::vector<CounterMappingRegion> OutputCMRs;
InstrProfWriter ProfileWriter;
std::unique_ptr<IndexedInstrProfReader> ProfileReader;
std::unique_ptr<CoverageMapping> LoadedCoverage;
void SetUp() override { void SetUp() override {
NextFile = 0; NextFile = 0;
} }
@ -91,6 +132,26 @@ struct CoverageMappingTest : ::testing::Test {
OutputExpressions, OutputCMRs); OutputExpressions, OutputCMRs);
ASSERT_TRUE(NoError(Reader.read())); ASSERT_TRUE(NoError(Reader.read()));
} }
void readProfCounts() {
auto Profile = ProfileWriter.writeBuffer();
auto ReaderOrErr = IndexedInstrProfReader::create(std::move(Profile));
ASSERT_TRUE(NoError(ReaderOrErr.getError()));
ProfileReader = std::move(ReaderOrErr.get());
}
void loadCoverageMapping(StringRef FuncName, uint64_t Hash) {
std::string Regions = writeCoverageRegions();
readCoverageRegions(Regions);
SmallVector<StringRef, 8> Filenames;
for (const auto &E : Files)
Filenames.push_back(E.getKey());
OneFunctionCoverageReader CovReader(FuncName, Hash, Filenames, OutputCMRs);
auto CoverageOrErr = CoverageMapping::load(CovReader, *ProfileReader);
ASSERT_TRUE(NoError(CoverageOrErr.getError()));
LoadedCoverage = std::move(CoverageOrErr.get());
}
}; };
TEST_F(CoverageMappingTest, basic_write_read) { TEST_F(CoverageMappingTest, basic_write_read) {
@ -126,5 +187,26 @@ TEST_F(CoverageMappingTest, expansion_gets_first_counter) {
ASSERT_EQ(3U, OutputCMRs[2].LineStart); ASSERT_EQ(3U, OutputCMRs[2].LineStart);
} }
TEST_F(CoverageMappingTest, basic_coverage_iteration) {
ProfileWriter.addFunctionCounts("func", 0x1234, {30, 20, 10, 0});
readProfCounts();
addCMR(Counter::getCounter(0), "file1", 1, 1, 9, 9);
addCMR(Counter::getCounter(1), "file1", 1, 1, 4, 7);
addCMR(Counter::getCounter(2), "file1", 5, 8, 9, 1);
addCMR(Counter::getCounter(3), "file1", 10, 10, 11, 11);
loadCoverageMapping("func", 0x1234);
CoverageData Data = LoadedCoverage->getCoverageForFile("file1");
std::vector<CoverageSegment> Segments(Data.begin(), Data.end());
ASSERT_EQ(7U, Segments.size());
ASSERT_EQ(CoverageSegment(1, 1, 20, true), Segments[0]);
ASSERT_EQ(CoverageSegment(4, 7, 30, false), Segments[1]);
ASSERT_EQ(CoverageSegment(5, 8, 10, true), Segments[2]);
ASSERT_EQ(CoverageSegment(9, 1, 30, false), Segments[3]);
ASSERT_EQ(CoverageSegment(9, 9, false), Segments[4]);
ASSERT_EQ(CoverageSegment(10, 10, 0, true), Segments[5]);
ASSERT_EQ(CoverageSegment(11, 11, false), Segments[6]);
}
} // end anonymous namespace } // end anonymous namespace