diff options
author | Dean Michael Berris <dberris@google.com> | 2018-09-05 06:57:23 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2018-09-05 06:57:23 +0000 |
commit | fbc59d92e6af968a8efd5f62fe51a60ee91d9478 (patch) | |
tree | 7ee87de3e78151b394f7f7cc07a73ebe92519bee /llvm/unittests/XRay/FDRRecordPrinterTest.cpp | |
parent | b2b7f5f6d76d256331827f6cbc8e835282f30ed5 (diff) | |
download | bcm5719-llvm-fbc59d92e6af968a8efd5f62fe51a60ee91d9478.tar.gz bcm5719-llvm-fbc59d92e6af968a8efd5f62fe51a60ee91d9478.zip |
[XRay] Add a RecordPrinter visitor for FDR Records
Summary:
This change adds a `RecordPrinter` type which does some basic text
serialization of the FDR record instances. This is one component of the
tool we're building to dump the records from an FDR mode log as-is.
This is a small part of D50441.
Reviewers: eizan, kpw
Subscribers: mgorny, hiraditya, llvm-commits
Differential Revision: https://reviews.llvm.org/D51672
llvm-svn: 341447
Diffstat (limited to 'llvm/unittests/XRay/FDRRecordPrinterTest.cpp')
-rw-r--r-- | llvm/unittests/XRay/FDRRecordPrinterTest.cpp | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/llvm/unittests/XRay/FDRRecordPrinterTest.cpp b/llvm/unittests/XRay/FDRRecordPrinterTest.cpp new file mode 100644 index 00000000000..f0666ecdd34 --- /dev/null +++ b/llvm/unittests/XRay/FDRRecordPrinterTest.cpp @@ -0,0 +1,176 @@ +//===- llvm/unittest/XRay/FDRRecordPrinterTest.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/Support/raw_ostream.h" +#include "llvm/XRay/FDRRecords.h" +#include "llvm/XRay/RecordPrinter.h" +#include "gmock/gmock.h" +#include "gtest/gtest.h" +#include <string> + +namespace llvm { +namespace xray { +namespace { + +using ::testing::Eq; + +template <class RecordType> struct Helper {}; + +template <> struct Helper<BufferExtents> { + static std::unique_ptr<Record> construct() { + return make_unique<BufferExtents>(1); + } + + static constexpr char Expected[] = "<Buffer: size = 1 bytes>"; +}; +constexpr char Helper<BufferExtents>::Expected[]; + +template <> struct Helper<WallclockRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<WallclockRecord>(1, 2); + } + + static constexpr char Expected[] = "<Wall Time: seconds = 1.000002>"; +}; +constexpr char Helper<WallclockRecord>::Expected[]; + +template <> struct Helper<NewCPUIDRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<NewCPUIDRecord>(1); + } + + static constexpr char Expected[] = "<CPU ID: 1>"; +}; +constexpr char Helper<NewCPUIDRecord>::Expected[]; + +template <> struct Helper<TSCWrapRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<TSCWrapRecord>(1); + } + + static constexpr char Expected[] = "<TSC Wrap: base = 1>"; +}; +constexpr char Helper<TSCWrapRecord>::Expected[]; + +template <> struct Helper<CustomEventRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<CustomEventRecord>(4, 1, "data"); + } + + static constexpr char Expected[] = + "<Custom Event: tsc = 1, size = 4, data = 'data'>"; +}; +constexpr char Helper<CustomEventRecord>::Expected[]; + +template <> struct Helper<CallArgRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<CallArgRecord>(1); + } + + static constexpr char Expected[] = "<Call Argument: data = 1 (hex = 0x1)>"; +}; +constexpr char Helper<CallArgRecord>::Expected[]; + +template <> struct Helper<PIDRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<PIDRecord>(1); + } + + static constexpr char Expected[] = "<PID: 1>"; +}; +constexpr char Helper<PIDRecord>::Expected[]; + +template <> struct Helper<NewBufferRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<NewBufferRecord>(1); + } + + static constexpr char Expected[] = "<Thread ID: 1>"; +}; +constexpr char Helper<NewBufferRecord>::Expected[]; + +template <> struct Helper<EndBufferRecord> { + static std::unique_ptr<Record> construct() { + return make_unique<EndBufferRecord>(); + } + + static constexpr char Expected[] = "<End of Buffer>"; +}; +constexpr char Helper<EndBufferRecord>::Expected[]; + +template <class T> class PrinterTest : public ::testing::Test { +protected: + std::string Data; + raw_string_ostream OS; + RecordPrinter P; + std::unique_ptr<Record> R; + +public: + PrinterTest() : Data(), OS(Data), P(OS), R(Helper<T>::construct()) {} +}; + +TYPED_TEST_CASE_P(PrinterTest); + +TYPED_TEST_P(PrinterTest, PrintsRecord) { + ASSERT_NE(nullptr, this->R); + ASSERT_FALSE(errorToBool(this->R->apply(this->P))); + this->OS.flush(); + EXPECT_THAT(this->Data, Eq(Helper<TypeParam>::Expected)); +} + +REGISTER_TYPED_TEST_CASE_P(PrinterTest, PrintsRecord); +using FDRRecordTypes = + ::testing::Types<BufferExtents, NewBufferRecord, EndBufferRecord, + NewCPUIDRecord, TSCWrapRecord, WallclockRecord, + CustomEventRecord, CallArgRecord, BufferExtents, + PIDRecord>; +INSTANTIATE_TYPED_TEST_CASE_P(Records, PrinterTest, FDRRecordTypes); + +TEST(FDRRecordPrinterTest, WriteFunctionRecordEnter) { + std::string Data; + raw_string_ostream OS(Data); + RecordPrinter P(OS); + FunctionRecord R(RecordTypes::ENTER, 1, 2); + ASSERT_FALSE(errorToBool(R.apply(P))); + OS.flush(); + EXPECT_THAT(Data, Eq("<Function Enter: #1 delta = +1>")); +} + +TEST(FDRRecordPrinterTest, WriteFunctionRecordExit) { + std::string Data; + raw_string_ostream OS(Data); + RecordPrinter P(OS); + FunctionRecord R(RecordTypes::EXIT, 1, 2); + ASSERT_FALSE(errorToBool(R.apply(P))); + OS.flush(); + EXPECT_THAT(Data, Eq("<Function Exit: #1 delta = +1>")); +} + +TEST(FDRRecordPrinterTest, WriteFunctionRecordTailExit) { + std::string Data; + raw_string_ostream OS(Data); + RecordPrinter P(OS); + FunctionRecord R(RecordTypes::TAIL_EXIT, 1, 2); + ASSERT_FALSE(errorToBool(R.apply(P))); + OS.flush(); + EXPECT_THAT(Data, Eq("<Function Tail Exit: #1 delta = +1>")); +} + +TEST(FDRRecordPrinterTest, WriteFunctionRecordEnterArg) { + std::string Data; + raw_string_ostream OS(Data); + RecordPrinter P(OS); + FunctionRecord R(RecordTypes::ENTER_ARG, 1, 2); + ASSERT_FALSE(errorToBool(R.apply(P))); + OS.flush(); + EXPECT_THAT(Data, Eq("<Function Enter With Arg: #1 delta = +1>")); +} + +} // namespace +} // namespace xray +} // namespace llvm |