llvm/llvm/lib/XRay/FDRRecords.cpp

//===- FDRRecords.cpp -  XRay Flight Data Recorder Mode Records -----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// 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) {}
Error WallclockRecord::apply(RecordVisitor &V) {}
Error NewCPUIDRecord::apply(RecordVisitor &V) {}
Error TSCWrapRecord::apply(RecordVisitor &V) {}
Error CustomEventRecord::apply(RecordVisitor &V) {}
Error CallArgRecord::apply(RecordVisitor &V) {}
Error PIDRecord::apply(RecordVisitor &V) {}
Error NewBufferRecord::apply(RecordVisitor &V) {}
Error EndBufferRecord::apply(RecordVisitor &V) {}
Error FunctionRecord::apply(RecordVisitor &V) {}
Error CustomEventRecordV5::apply(RecordVisitor &V) {}
Error TypedEventRecord::apply(RecordVisitor &V) {}

StringRef Record::kindToString(RecordKind K) {}

} // namespace xray
} // namespace llvm