forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ProfileData] Add unit test infrastructure for sample profile reader/…
…writer Summary: Adds support for in-memory round-trip of sample profile data along with basic round trip unit tests. This will also make it easier to include unit tests for future changes to sample profiling. Reviewers: davidxl, dnovillo, silvas Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D15211 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255264 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
7845ed0
commit 46cf0f0
Showing
6 changed files
with
187 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
//===- unittest/ProfileData/SampleProfTest.cpp -------------------*- C++ | ||
//-*-===// | ||
// | ||
// The LLVM Compiler Infrastructure | ||
// | ||
// This file is distributed under the University of Illinois Open Source | ||
// License. See LICENSE.TXT for details. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "llvm/ProfileData/SampleProfReader.h" | ||
#include "llvm/ProfileData/SampleProfWriter.h" | ||
#include "gtest/gtest.h" | ||
|
||
#include <cstdarg> | ||
|
||
using namespace llvm; | ||
using namespace sampleprof; | ||
|
||
static ::testing::AssertionResult NoError(std::error_code EC) { | ||
if (!EC) | ||
return ::testing::AssertionSuccess(); | ||
return ::testing::AssertionFailure() << "error " << EC.value() << ": " | ||
<< EC.message(); | ||
} | ||
|
||
namespace { | ||
|
||
struct SampleProfTest : ::testing::Test { | ||
std::string Data; | ||
std::unique_ptr<raw_ostream> OS; | ||
std::unique_ptr<SampleProfileWriter> Writer; | ||
std::unique_ptr<SampleProfileReader> Reader; | ||
|
||
SampleProfTest() | ||
: Data(), OS(new raw_string_ostream(Data)), Writer(), Reader() {} | ||
|
||
void createWriter(SampleProfileFormat Format) { | ||
auto WriterOrErr = SampleProfileWriter::create(OS, Format); | ||
ASSERT_TRUE(NoError(WriterOrErr.getError())); | ||
Writer = std::move(WriterOrErr.get()); | ||
} | ||
|
||
void readProfile(std::unique_ptr<MemoryBuffer> &Profile) { | ||
auto ReaderOrErr = SampleProfileReader::create(Profile, getGlobalContext()); | ||
ASSERT_TRUE(NoError(ReaderOrErr.getError())); | ||
Reader = std::move(ReaderOrErr.get()); | ||
} | ||
|
||
void testRoundTrip(SampleProfileFormat Format) { | ||
createWriter(Format); | ||
|
||
StringRef FooName("_Z3fooi"); | ||
FunctionSamples FooSamples; | ||
FooSamples.addTotalSamples(7711); | ||
FooSamples.addHeadSamples(610); | ||
FooSamples.addBodySamples(1, 0, 610); | ||
|
||
StringRef BarName("_Z3bari"); | ||
FunctionSamples BarSamples; | ||
BarSamples.addTotalSamples(20301); | ||
BarSamples.addHeadSamples(1437); | ||
BarSamples.addBodySamples(1, 0, 1437); | ||
|
||
StringMap<FunctionSamples> Profiles; | ||
Profiles[FooName] = std::move(FooSamples); | ||
Profiles[BarName] = std::move(BarSamples); | ||
|
||
std::error_code EC; | ||
EC = Writer->write(Profiles); | ||
ASSERT_TRUE(NoError(EC)); | ||
|
||
Writer->getOutputStream().flush(); | ||
|
||
auto Profile = MemoryBuffer::getMemBufferCopy(Data); | ||
readProfile(Profile); | ||
|
||
EC = Reader->read(); | ||
ASSERT_TRUE(NoError(EC)); | ||
|
||
StringMap<FunctionSamples> &ReadProfiles = Reader->getProfiles(); | ||
ASSERT_EQ(2u, ReadProfiles.size()); | ||
|
||
FunctionSamples &ReadFooSamples = ReadProfiles[FooName]; | ||
ASSERT_EQ(7711u, ReadFooSamples.getTotalSamples()); | ||
ASSERT_EQ(610u, ReadFooSamples.getHeadSamples()); | ||
|
||
FunctionSamples &ReadBarSamples = ReadProfiles[BarName]; | ||
ASSERT_EQ(20301u, ReadBarSamples.getTotalSamples()); | ||
ASSERT_EQ(1437u, ReadBarSamples.getHeadSamples()); | ||
} | ||
}; | ||
|
||
TEST_F(SampleProfTest, roundtrip_text_profile) { | ||
testRoundTrip(SampleProfileFormat::SPF_Text); | ||
} | ||
|
||
TEST_F(SampleProfTest, roundtrip_binary_profile) { | ||
testRoundTrip(SampleProfileFormat::SPF_Binary); | ||
} | ||
|
||
} // end anonymous namespace |