llvm/llvm/lib/XRay/FDRTraceExpander.cpp

//===- FDRTraceExpander.cpp -----------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "llvm/XRay/FDRTraceExpander.h"

namespace llvm {
namespace xray {

void TraceExpander::resetCurrentRecord() {}

Error TraceExpander::visit(BufferExtents &) {}

Error TraceExpander::visit(WallclockRecord &) {}

Error TraceExpander::visit(NewCPUIDRecord &R) {}

Error TraceExpander::visit(TSCWrapRecord &R) {}

Error TraceExpander::visit(CustomEventRecord &R) {}

Error TraceExpander::visit(CustomEventRecordV5 &R) {}

Error TraceExpander::visit(TypedEventRecord &R) {}

Error TraceExpander::visit(CallArgRecord &R) {}

Error TraceExpander::visit(PIDRecord &R) {}

Error TraceExpander::visit(NewBufferRecord &R) {}

Error TraceExpander::visit(EndBufferRecord &) {}

Error TraceExpander::visit(FunctionRecord &R) {}

Error TraceExpander::flush() {}

} // namespace xray
} // namespace llvm