aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2018-11-09 06:26:48 +0000
committerDean Michael Berris <dberris@google.com>2018-11-09 06:26:48 +0000
commit5de005fa933db3d686a7553e4932825d6edd95fe (patch)
treeb9c02ba53c8f9e3f8c36dac57efb1c9692a11d94 /unittests
parent244a2cf3abf9933a2c7e38f7b62443fd5b9a7a51 (diff)
[XRay] Improve FDR trace handling and error messaging
Summary: This change covers a number of things spanning LLVM and compiler-rt, which are related in a non-trivial way. In LLVM, we have a library that handles the FDR mode even log loading, which uses C++'s runtime polymorphism feature to better faithfully represent the events that are written down by the FDR mode runtime. We do this by interpreting a trace that's serliased in a common format agreed upon by both the trace loading library and the FDR mode runtime. This library is under active development, which consists of features allowing us to reconstitute a higher-level event log. This event log is used by the conversion and visualisation tools we have for interpreting XRay traces. One of the tools we have is a diagnostic tool in llvm-xray called `fdr-dump` which we've been using to debug our expectations of what the FDR runtime should be writing and what the logical FDR event log structures are. We use this fairly extensively to reason about why some non-trivial traces we're generating with FDR mode runtimes fail to convert or fail to parse correctly. One of these failures we've found in manual debugging of some of the traces we've seen involve an inconsistency between the buffer extents (a record indicating how many bytes to follow are part of a logical thread's event log) and the record of the bytes written into the log -- sometimes it turns out the data could be garbage, due to buffers being recycled, but sometimes we're seeing the buffer extent indicating a log is "shorter" than the actual records associated with the buffer. This case happens particularly with function entry records with a call argument. This change for now updates the FDR mode runtime to write the bytes for the function call and arg record before updating the buffer extents atomically, allowing multiple threads to see a consistent view of the data in the buffer using the atomic counter associated with a buffer. What we're trying to prevent here is partial updates where we see the intermediary updates to the buffer extents (function record size then call argument record size) becoming observable from another thread, for instance, one doing the serialization/flushing. To do both diagnose this issue properly, we need to be able to honour the extents being set in the `BufferExtents` records marking the beginning of the logical buffers when reading an FDR trace. Since LLVM doesn't use C++'s RTTI mechanism, we instead follow the advice in the documentation for LLVM Style RTTI (https://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html). We then rely on this RTTI feature to ensure that our file-based record producer (our streaming "deserializer") can honour the extents of individual buffers as we interpret traces. This also sets us up to be able to eventually do smart skipping/continuation of FDR logs, seeking instead to find BufferExtents records in cases where we find potentially recoverable errors. In the meantime, we make this change to operate in a strict mode when reading logical buffers with extent records. Reviewers: mboerger Subscribers: hiraditya, llvm-commits, jfb Differential Revision: https://reviews.llvm.org/D54201 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@346473 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/XRay/FDRProducerConsumerTest.cpp100
1 files changed, 91 insertions, 9 deletions
diff --git a/unittests/XRay/FDRProducerConsumerTest.cpp b/unittests/XRay/FDRProducerConsumerTest.cpp
index 09ec44db26e..03fabdf2372 100644
--- a/unittests/XRay/FDRProducerConsumerTest.cpp
+++ b/unittests/XRay/FDRProducerConsumerTest.cpp
@@ -30,13 +30,10 @@ namespace {
using ::testing::Eq;
using ::testing::IsEmpty;
using ::testing::Not;
+using ::testing::SizeIs;
template <class RecordType> std::unique_ptr<Record> MakeRecord();
-template <> std::unique_ptr<Record> MakeRecord<BufferExtents>() {
- return make_unique<BufferExtents>(1);
-}
-
template <> std::unique_ptr<Record> MakeRecord<NewBufferRecord>() {
return make_unique<NewBufferRecord>(1);
}
@@ -69,10 +66,18 @@ template <> std::unique_ptr<Record> MakeRecord<FunctionRecord>() {
return make_unique<FunctionRecord>(RecordTypes::ENTER, 1, 2);
}
+template <> std::unique_ptr<Record> MakeRecord<CustomEventRecordV5>() {
+ return make_unique<CustomEventRecordV5>(4, 1, "data");
+}
+
+template <> std::unique_ptr<Record> MakeRecord<TypedEventRecord>() {
+ return make_unique<TypedEventRecord>(4, 1, 2, "data");
+}
+
template <class T> class RoundTripTest : public ::testing::Test {
public:
RoundTripTest() : Data(), OS(Data) {
- H.Version = 3;
+ H.Version = 4;
H.Type = 1;
H.ConstantTSC = true;
H.NonstopTSC = true;
@@ -92,9 +97,36 @@ protected:
TYPED_TEST_CASE_P(RoundTripTest);
+template <class T> class RoundTripTestV5 : public ::testing::Test {
+public:
+ RoundTripTestV5() : Data(), OS(Data) {
+ H.Version = 5;
+ H.Type = 1;
+ H.ConstantTSC = true;
+ H.NonstopTSC = true;
+ H.CycleFrequency = 3e9;
+
+ Writer = make_unique<FDRTraceWriter>(OS, H);
+ Rec = MakeRecord<T>();
+ }
+
+protected:
+ std::string Data;
+ raw_string_ostream OS;
+ XRayFileHeader H;
+ std::unique_ptr<FDRTraceWriter> Writer;
+ std::unique_ptr<Record> Rec;
+};
+
+TYPED_TEST_CASE_P(RoundTripTestV5);
+
// This test ensures that the writing and reading implementations are in sync --
// that given write(read(write(R))) == R.
TYPED_TEST_P(RoundTripTest, RoundTripsSingleValue) {
+ // Always write a buffer extents record which will cover the correct size of
+ // the record, for version 3 and up.
+ BufferExtents BE(200);
+ ASSERT_FALSE(errorToBool(BE.apply(*this->Writer)));
auto &R = this->Rec;
ASSERT_FALSE(errorToBool(R->apply(*this->Writer)));
this->OS.flush();
@@ -125,17 +157,67 @@ TYPED_TEST_P(RoundTripTest, RoundTripsSingleValue) {
EXPECT_EQ(Data2.substr(sizeof(XRayFileHeader)),
this->Data.substr(sizeof(XRayFileHeader)));
- EXPECT_THAT(Records[0]->type(), Eq(R->type()));
+ ASSERT_THAT(Records, SizeIs(2));
+ EXPECT_THAT(Records[1]->getRecordType(), Eq(R->getRecordType()));
}
REGISTER_TYPED_TEST_CASE_P(RoundTripTest, RoundTripsSingleValue);
+// We duplicate the above case for the V5 version using different types and
+// encodings.
+TYPED_TEST_P(RoundTripTestV5, RoundTripsSingleValue) {
+ BufferExtents BE(200);
+ ASSERT_FALSE(errorToBool(BE.apply(*this->Writer)));
+ auto &R = this->Rec;
+ ASSERT_FALSE(errorToBool(R->apply(*this->Writer)));
+ this->OS.flush();
+
+ DataExtractor DE(this->Data, sys::IsLittleEndianHost, 8);
+ uint32_t OffsetPtr = 0;
+ auto HeaderOrErr = readBinaryFormatHeader(DE, OffsetPtr);
+ if (!HeaderOrErr)
+ FAIL() << HeaderOrErr.takeError();
+
+ FileBasedRecordProducer P(HeaderOrErr.get(), DE, OffsetPtr);
+ std::vector<std::unique_ptr<Record>> Records;
+ LogBuilderConsumer C(Records);
+ while (DE.isValidOffsetForDataOfSize(OffsetPtr, 1)) {
+ auto R = P.produce();
+ if (!R)
+ FAIL() << R.takeError();
+ if (auto E = C.consume(std::move(R.get())))
+ FAIL() << E;
+ }
+ ASSERT_THAT(Records, Not(IsEmpty()));
+ std::string Data2;
+ raw_string_ostream OS2(Data2);
+ FDRTraceWriter Writer2(OS2, this->H);
+ for (auto &P : Records)
+ ASSERT_FALSE(errorToBool(P->apply(Writer2)));
+ OS2.flush();
+
+ EXPECT_EQ(Data2.substr(sizeof(XRayFileHeader)),
+ this->Data.substr(sizeof(XRayFileHeader)));
+ ASSERT_THAT(Records, SizeIs(2));
+ EXPECT_THAT(Records[1]->getRecordType(), Eq(R->getRecordType()));
+}
+
+REGISTER_TYPED_TEST_CASE_P(RoundTripTestV5, RoundTripsSingleValue);
+
+// These are the record types we support for v4 and below.
using RecordTypes =
- ::testing::Types<BufferExtents, NewBufferRecord, NewCPUIDRecord,
- TSCWrapRecord, WallclockRecord, CustomEventRecord,
- CallArgRecord, BufferExtents, PIDRecord, FunctionRecord>;
+ ::testing::Types<NewBufferRecord, NewCPUIDRecord, TSCWrapRecord,
+ WallclockRecord, CustomEventRecord, CallArgRecord,
+ PIDRecord, FunctionRecord>;
INSTANTIATE_TYPED_TEST_CASE_P(Records, RoundTripTest, RecordTypes);
+// For V5, we have two new types we're supporting.
+using RecordTypesV5 =
+ ::testing::Types<NewBufferRecord, NewCPUIDRecord, TSCWrapRecord,
+ WallclockRecord, CustomEventRecordV5, TypedEventRecord,
+ CallArgRecord, PIDRecord, FunctionRecord>;
+INSTANTIATE_TYPED_TEST_CASE_P(Records, RoundTripTestV5, RecordTypesV5);
+
} // namespace
} // namespace xray
} // namespace llvm