llvm/llvm/lib/XRay/BlockPrinter.cpp

//===- BlockPrinter.cpp - FDR Block Pretty Printer Implementation --------===//
//
// 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/BlockPrinter.h"

namespace llvm {
namespace xray {

Error BlockPrinter::visit(BufferExtents &R) {}

// Preamble printing.
Error BlockPrinter::visit(NewBufferRecord &R) {}

Error BlockPrinter::visit(WallclockRecord &R) {}

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

// Metadata printing.
Error BlockPrinter::visit(NewCPUIDRecord &R) {}

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

// Custom events will be rendered like "function" events.
Error BlockPrinter::visit(CustomEventRecord &R) {}

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

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

// Function call printing.
Error BlockPrinter::visit(FunctionRecord &R) {}

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

Error BlockPrinter::visit(EndBufferRecord &R) {}

} // namespace xray
} // namespace llvm