mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
dc767da403
Summary: This is the first step in the larger refactoring and reduction of D50441. This step in the process does the following: - Introduces more granular types of `Record`s representing the many kinds of records written/read by the Flight Data Recorder (FDR) mode `Trace` loading function(s). - Introduces an abstract `RecordVisitor` type meant to handle the processing of the various `Record` derived types. This `RecordVisitor` has two implementations in this patch: `RecordInitializer` and `FDRTraceWriter`. - We also introduce a convenience interface for building a collection of `Record` instances called a `LogBuilder`. This allows us to generate sequences of `Record` instances manually (used in unit tests but useful otherwise). - The`FDRTraceWriter` class implements the `RecordVisitor` interface and handles the writing of metadata records to a `raw_ostream`. We demonstrate that in the unit test, we can generate in-memory FDR mode traces using the specific `Record` derived types, which we load through the `loadTrace(...)` function yielding valid `Trace` objects. This patch introduces the required types and concepts for us to start replacing the logic implemented in the `loadFDRLog` function to use the more granular types. In subsequent patches, we will introduce more visitor implementations which isolate the verification, printing, indexing, production/consumption, and finally the conversion of the FDR mode logs. The overarching goal of these changes is to make handling FDR mode logs better tested, more understandable, more extensible, and more systematic. This will also allow us to better represent the execution trace, as we improve the fidelity of the events we represent in an XRay `Trace` object, which we intend to do after FDR mode log processing is in better shape. Reviewers: eizan Reviewed By: eizan Subscribers: mgorny, hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D51210 llvm-svn: 341029
32 lines
1.4 KiB
C++
32 lines
1.4 KiB
C++
//===- FDRRecords.cpp - XRay Flight Data Recorder Mode Records -----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Define types and operations on these types that represent the different kinds
|
|
// of records we encounter in XRay flight data recorder mode traces.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "llvm/XRay/FDRRecords.h"
|
|
|
|
namespace llvm {
|
|
namespace xray {
|
|
|
|
Error BufferExtents::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error WallclockRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error NewCPUIDRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error TSCWrapRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error CustomEventRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error CallArgRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error PIDRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error NewBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error EndBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
Error FunctionRecord::apply(RecordVisitor &V) { return V.visit(*this); }
|
|
|
|
} // namespace xray
|
|
} // namespace llvm
|