//===- FDRTraceExpander.h - XRay FDR Mode Log Expander --------------------===// // // 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 // //===----------------------------------------------------------------------===// // // We define an FDR record visitor which can re-constitute XRayRecord instances // from a sequence of FDR mode records in arrival order into a collection. // //===----------------------------------------------------------------------===// #ifndef LLVM_XRAY_FDRTRACEEXPANDER_H #define LLVM_XRAY_FDRTRACEEXPANDER_H #include "llvm/ADT/STLExtras.h" #include "llvm/XRay/FDRRecords.h" #include "llvm/XRay/XRayRecord.h" namespace llvm { namespace xray { class TraceExpander : public RecordVisitor { … }; } // namespace xray } // namespace llvm #endif // LLVM_XRAY_FDRTRACEEXPANDER_H