llvm/llvm/lib/XRay/BlockIndexer.cpp

//===- BlockIndexer.cpp - FDR Block Indexing VIsitor ----------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// An implementation of the RecordVisitor which generates a mapping between a
// thread and a range of records representing a block.
//
//===----------------------------------------------------------------------===//
#include "llvm/XRay/BlockIndexer.h"

namespace llvm {
namespace xray {

Error BlockIndexer::visit(BufferExtents &) {}

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

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

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

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

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

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

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

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

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

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

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

Error BlockIndexer::flush() {}

} // namespace xray
} // namespace llvm