#include "CommandObjectFrame.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Core/ValueObject.h"
#include "lldb/DataFormatters/DataVisualization.h"
#include "lldb/DataFormatters/ValueObjectPrinter.h"
#include "lldb/Host/Config.h"
#include "lldb/Host/OptionParser.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandOptionArgumentTable.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Interpreter/OptionArgParser.h"
#include "lldb/Interpreter/OptionGroupFormat.h"
#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
#include "lldb/Interpreter/OptionGroupVariable.h"
#include "lldb/Interpreter/Options.h"
#include "lldb/Symbol/Function.h"
#include "lldb/Symbol/SymbolContext.h"
#include "lldb/Symbol/Variable.h"
#include "lldb/Symbol/VariableList.h"
#include "lldb/Target/StackFrame.h"
#include "lldb/Target/StackFrameRecognizer.h"
#include "lldb/Target/StopInfo.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/Thread.h"
#include "lldb/Utility/Args.h"
#include <memory>
#include <optional>
#include <string>
usingnamespacelldb;
usingnamespacelldb_private;
#pragma mark CommandObjectFrameDiagnose
#define LLDB_OPTIONS_frame_diag
#include "CommandOptions.inc"
class CommandObjectFrameDiagnose : public CommandObjectParsed { … };
#pragma mark CommandObjectFrameInfo
class CommandObjectFrameInfo : public CommandObjectParsed { … };
#pragma mark CommandObjectFrameSelect
#define LLDB_OPTIONS_frame_select
#include "CommandOptions.inc"
class CommandObjectFrameSelect : public CommandObjectParsed { … };
#pragma mark CommandObjectFrameVariable
class CommandObjectFrameVariable : public CommandObjectParsed { … };
#pragma mark CommandObjectFrameRecognizer
#define LLDB_OPTIONS_frame_recognizer_add
#include "CommandOptions.inc"
class CommandObjectFrameRecognizerAdd : public CommandObjectParsed { … };
void CommandObjectFrameRecognizerAdd::DoExecute(Args &command,
CommandReturnObject &result) { … }
class CommandObjectFrameRecognizerClear : public CommandObjectParsed { … };
static void
PrintRecognizerDetails(Stream &strm, const std::string &name, bool enabled,
const std::string &module,
llvm::ArrayRef<lldb_private::ConstString> symbols,
Mangled::NamePreference symbol_mangling, bool regexp) { … }
class CommandObjectWithFrameRecognizerArg : public CommandObjectParsed { … };
class CommandObjectFrameRecognizerEnable
: public CommandObjectWithFrameRecognizerArg { … };
class CommandObjectFrameRecognizerDisable
: public CommandObjectWithFrameRecognizerArg { … };
class CommandObjectFrameRecognizerDelete
: public CommandObjectWithFrameRecognizerArg { … };
class CommandObjectFrameRecognizerList : public CommandObjectParsed { … };
class CommandObjectFrameRecognizerInfo : public CommandObjectParsed { … };
class CommandObjectFrameRecognizer : public CommandObjectMultiword { … };
#pragma mark CommandObjectMultiwordFrame
CommandObjectMultiwordFrame::CommandObjectMultiwordFrame(
CommandInterpreter &interpreter)
: … { … }
CommandObjectMultiwordFrame::~CommandObjectMultiwordFrame() = default;