//===-- TraceDumper.h -------------------------------------------*- C++ -*-===// // // 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 "lldb/Symbol/SymbolContext.h" #include "lldb/Target/TraceCursor.h" #include <optional> #include <stack> #ifndef LLDB_TARGET_TRACE_INSTRUCTION_DUMPER_H #define LLDB_TARGET_TRACE_INSTRUCTION_DUMPER_H namespace lldb_private { /// Class that holds the configuration used by \a TraceDumper for /// traversing and dumping instructions. struct TraceDumperOptions { … }; /// Class used to dump the instructions of a \a TraceCursor using its current /// state and granularity. class TraceDumper { … }; } // namespace lldb_private #endif // LLDB_TARGET_TRACE_INSTRUCTION_DUMPER_H