2010-06-09 00:52:24 +08:00
|
|
|
//===-- CommandObjectDisassemble.h ------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectDisassemble_h_
|
|
|
|
#define liblldb_CommandObjectDisassemble_h_
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObject.h"
|
2010-06-16 03:49:27 +08:00
|
|
|
#include "lldb/Interpreter/Options.h"
|
2017-11-14 00:16:33 +08:00
|
|
|
#include "lldb/Utility/ArchSpec.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectDisassemble
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectDisassemble : public CommandObjectParsed {
|
2010-06-09 00:52:24 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandOptions : public Options {
|
|
|
|
public:
|
|
|
|
CommandOptions();
|
|
|
|
|
|
|
|
~CommandOptions() override;
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
|
|
|
|
ExecutionContext *execution_context) override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
void OptionParsingStarting(ExecutionContext *execution_context) override;
|
|
|
|
|
Convert option tables to ArrayRefs.
This change is very mechanical. All it does is change the
signature of `Options::GetDefinitions()` and `OptionGroup::
GetDefinitions()` to return an `ArrayRef<OptionDefinition>`
instead of a `const OptionDefinition *`. In the case of the
former, it deletes the sentinel entry from every table, and
in the case of the latter, it removes the `GetNumDefinitions()`
method from the interface. These are no longer necessary as
`ArrayRef` carries its own length.
In the former case, iteration was done by using a sentinel
entry, so there was no knowledge of length. Because of this
the individual option tables were allowed to be defined below
the corresponding class (after all, only a pointer was needed).
Now, however, the length must be known at compile time to
construct the `ArrayRef`, and as a result it is necessary to
move every option table before its corresponding class. This
results in this CL looking very big, but in terms of substance
there is not much here.
Differential revision: https://reviews.llvm.org/D24834
llvm-svn: 282188
2016-09-23 04:22:55 +08:00
|
|
|
llvm::ArrayRef<OptionDefinition> GetDefinitions() override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
const char *GetPluginName() {
|
|
|
|
return (plugin_name.empty() ? nullptr : plugin_name.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *GetFlavorString() {
|
|
|
|
if (flavor_string.empty() || flavor_string == "default")
|
|
|
|
return nullptr;
|
|
|
|
return flavor_string.c_str();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status OptionParsingFinished(ExecutionContext *execution_context) override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
bool show_mixed; // Show mixed source/assembly
|
|
|
|
bool show_bytes;
|
|
|
|
uint32_t num_lines_context;
|
|
|
|
uint32_t num_instructions;
|
|
|
|
bool raw;
|
|
|
|
std::string func_name;
|
|
|
|
bool current_function;
|
|
|
|
lldb::addr_t start_addr;
|
|
|
|
lldb::addr_t end_addr;
|
|
|
|
bool at_pc;
|
|
|
|
bool frame_line;
|
|
|
|
std::string plugin_name;
|
|
|
|
std::string flavor_string;
|
|
|
|
ArchSpec arch;
|
|
|
|
bool some_location_specified; // If no location was specified, we'll select
|
|
|
|
// "at_pc". This should be set
|
|
|
|
// in SetOptionValue if anything the selects a location is set.
|
|
|
|
lldb::addr_t symbol_containing_addr;
|
|
|
|
static OptionDefinition g_option_table[];
|
|
|
|
};
|
|
|
|
|
|
|
|
CommandObjectDisassemble(CommandInterpreter &interpreter);
|
|
|
|
|
|
|
|
~CommandObjectDisassemble() override;
|
|
|
|
|
|
|
|
Options *GetOptions() override { return &m_options; }
|
|
|
|
|
2012-06-09 05:56:10 +08:00
|
|
|
protected:
|
2016-09-07 04:57:50 +08:00
|
|
|
bool DoExecute(Args &command, CommandReturnObject &result) override;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
CommandOptions m_options;
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectDisassemble_h_
|