LLDB mainline
CommandObjectDisassemble.h
Go to the documentation of this file.
1//===-- CommandObjectDisassemble.h ------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTDISASSEMBLE_H
10#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTDISASSEMBLE_H
11
15
16namespace lldb_private {
17
18// CommandObjectDisassemble
19
21public:
22 class CommandOptions : public Options {
23 public:
25
26 ~CommandOptions() override;
27
28 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
29 ExecutionContext *execution_context) override;
30
31 void OptionParsingStarting(ExecutionContext *execution_context) override;
32
33 llvm::ArrayRef<OptionDefinition> GetDefinitions() override;
34
35 const char *GetPluginName() {
36 return (plugin_name.empty() ? nullptr : plugin_name.c_str());
37 }
38
39 const char *GetFlavorString() {
40 if (flavor_string.empty() || flavor_string == "default")
41 return nullptr;
42 return flavor_string.c_str();
43 }
44
45 const char *GetCPUString() {
46 if (cpu_string.empty() || cpu_string == "default")
47 return nullptr;
48 return cpu_string.c_str();
49 }
50
51 const char *GetFeaturesString() {
52 if (features_string.empty() || features_string == "default")
53 return nullptr;
54 return features_string.c_str();
55 }
56
57 Status OptionParsingFinished(ExecutionContext *execution_context) override;
58
59 bool show_mixed; // Show mixed source/assembly
62 uint32_t num_lines_context = 0;
63 uint32_t num_instructions = 0;
64 bool raw;
65 std::string func_name;
66 bool current_function = false;
69 bool at_pc = false;
70 bool frame_line = false;
71 std::string plugin_name;
72 std::string flavor_string;
73 std::string cpu_string;
74 std::string features_string;
76 bool some_location_specified = false; // If no location was specified, we'll
77 // select "at_pc". This should be set
78 // in SetOptionValue if anything the selects a location is set.
80 bool force = false;
82 };
83
85
87
88 Options *GetOptions() override { return &m_options; }
89
90protected:
91 void DoExecute(Args &command, CommandReturnObject &result) override;
92
93 llvm::Expected<std::vector<AddressRange>>
95
96 llvm::Expected<std::vector<AddressRange>> GetContainingAddressRanges();
97 llvm::Expected<std::vector<AddressRange>> GetCurrentFunctionRanges();
98 llvm::Expected<std::vector<AddressRange>> GetCurrentLineRanges();
99 llvm::Expected<std::vector<AddressRange>>
101 llvm::Expected<std::vector<AddressRange>> GetPCRanges();
102 llvm::Expected<std::vector<AddressRange>> GetStartEndAddressRanges();
103
104 llvm::Expected<std::vector<AddressRange>>
105 CheckRangeSize(std::vector<AddressRange> ranges, llvm::StringRef what);
106
108};
109
110} // namespace lldb_private
111
112#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTDISASSEMBLE_H
An architecture specification class.
Definition ArchSpec.h:31
A command line argument class.
Definition Args.h:33
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
Status OptionParsingFinished(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
llvm::Expected< std::vector< AddressRange > > GetCurrentFunctionRanges()
void DoExecute(Args &command, CommandReturnObject &result) override
llvm::Expected< std::vector< AddressRange > > GetStartEndAddressRanges()
CommandObjectDisassemble(CommandInterpreter &interpreter)
llvm::Expected< std::vector< AddressRange > > GetNameRanges(CommandReturnObject &result)
llvm::Expected< std::vector< AddressRange > > GetPCRanges()
llvm::Expected< std::vector< AddressRange > > CheckRangeSize(std::vector< AddressRange > ranges, llvm::StringRef what)
llvm::Expected< std::vector< AddressRange > > GetCurrentLineRanges()
llvm::Expected< std::vector< AddressRange > > GetContainingAddressRanges()
llvm::Expected< std::vector< AddressRange > > GetRangesForSelectedMode(CommandReturnObject &result)
CommandObjectParsed(CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A command line option parsing protocol class.
Definition Options.h:58
An error handling class.
Definition Status.h:118
A class that represents a running process on the host machine.
uint64_t addr_t
Definition lldb-types.h:80