xref: /freebsd-src/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
15ffd83dbSDimitry Andric //===-- CommandObjectBreakpointCommand.cpp --------------------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric 
90b57cec5SDimitry Andric #include "CommandObjectBreakpointCommand.h"
100b57cec5SDimitry Andric #include "CommandObjectBreakpoint.h"
110b57cec5SDimitry Andric #include "lldb/Breakpoint/Breakpoint.h"
120b57cec5SDimitry Andric #include "lldb/Breakpoint/BreakpointIDList.h"
130b57cec5SDimitry Andric #include "lldb/Breakpoint/BreakpointLocation.h"
140b57cec5SDimitry Andric #include "lldb/Core/IOHandler.h"
150b57cec5SDimitry Andric #include "lldb/Host/OptionParser.h"
160b57cec5SDimitry Andric #include "lldb/Interpreter/CommandInterpreter.h"
17fcaf7f86SDimitry Andric #include "lldb/Interpreter/CommandOptionArgumentTable.h"
180b57cec5SDimitry Andric #include "lldb/Interpreter/CommandReturnObject.h"
190b57cec5SDimitry Andric #include "lldb/Interpreter/OptionArgParser.h"
20480093f4SDimitry Andric #include "lldb/Interpreter/OptionGroupPythonClassWithDict.h"
210b57cec5SDimitry Andric #include "lldb/Target/Target.h"
220b57cec5SDimitry Andric 
230b57cec5SDimitry Andric using namespace lldb;
240b57cec5SDimitry Andric using namespace lldb_private;
250b57cec5SDimitry Andric 
269dba64beSDimitry Andric #define LLDB_OPTIONS_breakpoint_command_add
279dba64beSDimitry Andric #include "CommandOptions.inc"
280b57cec5SDimitry Andric 
290b57cec5SDimitry Andric class CommandObjectBreakpointCommandAdd : public CommandObjectParsed,
300b57cec5SDimitry Andric                                           public IOHandlerDelegateMultiline {
310b57cec5SDimitry Andric public:
320b57cec5SDimitry Andric   CommandObjectBreakpointCommandAdd(CommandInterpreter &interpreter)
330b57cec5SDimitry Andric       : CommandObjectParsed(interpreter, "add",
340b57cec5SDimitry Andric                             "Add LLDB commands to a breakpoint, to be executed "
350b57cec5SDimitry Andric                             "whenever the breakpoint is hit.  "
36fe6060f1SDimitry Andric                             "The commands added to the breakpoint replace any "
37fe6060f1SDimitry Andric                             "commands previously added to it."
380b57cec5SDimitry Andric                             "  If no breakpoint is specified, adds the "
390b57cec5SDimitry Andric                             "commands to the last created breakpoint.",
400b57cec5SDimitry Andric                             nullptr),
410b57cec5SDimitry Andric         IOHandlerDelegateMultiline("DONE",
420b57cec5SDimitry Andric                                    IOHandlerDelegate::Completion::LLDBCommand),
4304eeddc0SDimitry Andric         m_func_options("breakpoint command", false, 'F') {
440b57cec5SDimitry Andric     SetHelpLong(
450b57cec5SDimitry Andric         R"(
460b57cec5SDimitry Andric General information about entering breakpoint commands
470b57cec5SDimitry Andric ------------------------------------------------------
480b57cec5SDimitry Andric 
490b57cec5SDimitry Andric )"
500b57cec5SDimitry Andric         "This command will prompt for commands to be executed when the specified \
510b57cec5SDimitry Andric breakpoint is hit.  Each command is typed on its own line following the '> ' \
520b57cec5SDimitry Andric prompt until 'DONE' is entered."
530b57cec5SDimitry Andric         R"(
540b57cec5SDimitry Andric 
550b57cec5SDimitry Andric )"
560b57cec5SDimitry Andric         "Syntactic errors may not be detected when initially entered, and many \
570b57cec5SDimitry Andric malformed commands can silently fail when executed.  If your breakpoint commands \
580b57cec5SDimitry Andric do not appear to be executing, double-check the command syntax."
590b57cec5SDimitry Andric         R"(
600b57cec5SDimitry Andric 
610b57cec5SDimitry Andric )"
620b57cec5SDimitry Andric         "Note: You may enter any debugger command exactly as you would at the debugger \
630b57cec5SDimitry Andric prompt.  There is no limit to the number of commands supplied, but do NOT enter \
640b57cec5SDimitry Andric more than one command per line."
650b57cec5SDimitry Andric         R"(
660b57cec5SDimitry Andric 
670b57cec5SDimitry Andric Special information about PYTHON breakpoint commands
680b57cec5SDimitry Andric ----------------------------------------------------
690b57cec5SDimitry Andric 
700b57cec5SDimitry Andric )"
710b57cec5SDimitry Andric         "You may enter either one or more lines of Python, including function \
720b57cec5SDimitry Andric definitions or calls to functions that will have been imported by the time \
730b57cec5SDimitry Andric the code executes.  Single line breakpoint commands will be interpreted 'as is' \
740b57cec5SDimitry Andric when the breakpoint is hit.  Multiple lines of Python will be wrapped in a \
750b57cec5SDimitry Andric generated function, and a call to the function will be attached to the breakpoint."
760b57cec5SDimitry Andric         R"(
770b57cec5SDimitry Andric 
780b57cec5SDimitry Andric This auto-generated function is passed in three arguments:
790b57cec5SDimitry Andric 
800b57cec5SDimitry Andric     frame:  an lldb.SBFrame object for the frame which hit breakpoint.
810b57cec5SDimitry Andric 
820b57cec5SDimitry Andric     bp_loc: an lldb.SBBreakpointLocation object that represents the breakpoint location that was hit.
830b57cec5SDimitry Andric 
840b57cec5SDimitry Andric     dict:   the python session dictionary hit.
850b57cec5SDimitry Andric 
860b57cec5SDimitry Andric )"
870b57cec5SDimitry Andric         "When specifying a python function with the --python-function option, you need \
880b57cec5SDimitry Andric to supply the function name prepended by the module name:"
890b57cec5SDimitry Andric         R"(
900b57cec5SDimitry Andric 
910b57cec5SDimitry Andric     --python-function myutils.breakpoint_callback
920b57cec5SDimitry Andric 
93fe6060f1SDimitry Andric The function itself must have either of the following prototypes:
940b57cec5SDimitry Andric 
95fe6060f1SDimitry Andric def breakpoint_callback(frame, bp_loc, internal_dict):
96fe6060f1SDimitry Andric   # Your code goes here
97fe6060f1SDimitry Andric 
98fe6060f1SDimitry Andric or:
99fe6060f1SDimitry Andric 
100fe6060f1SDimitry Andric def breakpoint_callback(frame, bp_loc, extra_args, internal_dict):
1010b57cec5SDimitry Andric   # Your code goes here
1020b57cec5SDimitry Andric 
1030b57cec5SDimitry Andric )"
1040b57cec5SDimitry Andric         "The arguments are the same as the arguments passed to generated functions as \
105fe6060f1SDimitry Andric described above.  In the second form, any -k and -v pairs provided to the command will \
106fe6060f1SDimitry Andric be packaged into a SBDictionary in an SBStructuredData and passed as the extra_args parameter. \
107fe6060f1SDimitry Andric \n\n\
108fe6060f1SDimitry Andric Note that the global variable 'lldb.frame' will NOT be updated when \
1090b57cec5SDimitry Andric this function is called, so be sure to use the 'frame' argument. The 'frame' argument \
1100b57cec5SDimitry Andric can get you to the thread via frame.GetThread(), the thread can get you to the \
1110b57cec5SDimitry Andric process via thread.GetProcess(), and the process can get you back to the target \
1120b57cec5SDimitry Andric via process.GetTarget()."
1130b57cec5SDimitry Andric         R"(
1140b57cec5SDimitry Andric 
1150b57cec5SDimitry Andric )"
1160b57cec5SDimitry Andric         "Important Note: As Python code gets collected into functions, access to global \
1170b57cec5SDimitry Andric variables requires explicit scoping using the 'global' keyword.  Be sure to use correct \
1180b57cec5SDimitry Andric Python syntax, including indentation, when entering Python breakpoint commands."
1190b57cec5SDimitry Andric         R"(
1200b57cec5SDimitry Andric 
1210b57cec5SDimitry Andric Example Python one-line breakpoint command:
1220b57cec5SDimitry Andric 
1230b57cec5SDimitry Andric (lldb) breakpoint command add -s python 1
1240b57cec5SDimitry Andric Enter your Python command(s). Type 'DONE' to end.
125e8d8bef9SDimitry Andric def function (frame, bp_loc, internal_dict):
126e8d8bef9SDimitry Andric     """frame: the lldb.SBFrame for the location at which you stopped
127e8d8bef9SDimitry Andric        bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information
128e8d8bef9SDimitry Andric        internal_dict: an LLDB support object not to be used"""
129e8d8bef9SDimitry Andric     print("Hit this breakpoint!")
130e8d8bef9SDimitry Andric     DONE
1310b57cec5SDimitry Andric 
1320b57cec5SDimitry Andric As a convenience, this also works for a short Python one-liner:
1330b57cec5SDimitry Andric 
134e8d8bef9SDimitry Andric (lldb) breakpoint command add -s python 1 -o 'import time; print(time.asctime())'
1350b57cec5SDimitry Andric (lldb) run
1360b57cec5SDimitry Andric Launching '.../a.out'  (x86_64)
1370b57cec5SDimitry Andric (lldb) Fri Sep 10 12:17:45 2010
1380b57cec5SDimitry Andric Process 21778 Stopped
1390b57cec5SDimitry Andric * thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread
1400b57cec5SDimitry Andric   36
1410b57cec5SDimitry Andric   37   	int c(int val)
1420b57cec5SDimitry Andric   38   	{
1430b57cec5SDimitry Andric   39 ->	    return val + 3;
1440b57cec5SDimitry Andric   40   	}
1450b57cec5SDimitry Andric   41
1460b57cec5SDimitry Andric   42   	int main (int argc, char const *argv[])
1470b57cec5SDimitry Andric 
1480b57cec5SDimitry Andric Example multiple line Python breakpoint command:
1490b57cec5SDimitry Andric 
1500b57cec5SDimitry Andric (lldb) breakpoint command add -s p 1
1510b57cec5SDimitry Andric Enter your Python command(s). Type 'DONE' to end.
152e8d8bef9SDimitry Andric def function (frame, bp_loc, internal_dict):
153e8d8bef9SDimitry Andric     """frame: the lldb.SBFrame for the location at which you stopped
154e8d8bef9SDimitry Andric        bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information
155e8d8bef9SDimitry Andric        internal_dict: an LLDB support object not to be used"""
156e8d8bef9SDimitry Andric     global bp_count
157e8d8bef9SDimitry Andric     bp_count = bp_count + 1
158e8d8bef9SDimitry Andric     print("Hit this breakpoint " + repr(bp_count) + " times!")
159e8d8bef9SDimitry Andric     DONE
1600b57cec5SDimitry Andric 
1610b57cec5SDimitry Andric )"
1620b57cec5SDimitry Andric         "In this case, since there is a reference to a global variable, \
1630b57cec5SDimitry Andric 'bp_count', you will also need to make sure 'bp_count' exists and is \
1640b57cec5SDimitry Andric initialized:"
1650b57cec5SDimitry Andric         R"(
1660b57cec5SDimitry Andric 
1670b57cec5SDimitry Andric (lldb) script
1680b57cec5SDimitry Andric >>> bp_count = 0
1690b57cec5SDimitry Andric >>> quit()
1700b57cec5SDimitry Andric 
1710b57cec5SDimitry Andric )"
1720b57cec5SDimitry Andric         "Your Python code, however organized, can optionally return a value.  \
1730b57cec5SDimitry Andric If the returned value is False, that tells LLDB not to stop at the breakpoint \
1740b57cec5SDimitry Andric to which the code is associated. Returning anything other than False, or even \
1750b57cec5SDimitry Andric returning None, or even omitting a return statement entirely, will cause \
1760b57cec5SDimitry Andric LLDB to stop."
1770b57cec5SDimitry Andric         R"(
1780b57cec5SDimitry Andric 
1790b57cec5SDimitry Andric )"
1800b57cec5SDimitry Andric         "Final Note: A warning that no breakpoint command was generated when there \
1810b57cec5SDimitry Andric are no syntax errors may indicate that a function was declared but never called.");
1820b57cec5SDimitry Andric 
183480093f4SDimitry Andric     m_all_options.Append(&m_options);
184480093f4SDimitry Andric     m_all_options.Append(&m_func_options, LLDB_OPT_SET_2 | LLDB_OPT_SET_3,
185480093f4SDimitry Andric                          LLDB_OPT_SET_2);
186480093f4SDimitry Andric     m_all_options.Finalize();
187480093f4SDimitry Andric 
188*0fca6ea1SDimitry Andric     AddSimpleArgumentList(eArgTypeBreakpointID, eArgRepeatOptional);
1890b57cec5SDimitry Andric   }
1900b57cec5SDimitry Andric 
1910b57cec5SDimitry Andric   ~CommandObjectBreakpointCommandAdd() override = default;
1920b57cec5SDimitry Andric 
193480093f4SDimitry Andric   Options *GetOptions() override { return &m_all_options; }
1940b57cec5SDimitry Andric 
1950b57cec5SDimitry Andric   void IOHandlerActivated(IOHandler &io_handler, bool interactive) override {
1969dba64beSDimitry Andric     StreamFileSP output_sp(io_handler.GetOutputStreamFileSP());
1970b57cec5SDimitry Andric     if (output_sp && interactive) {
1980b57cec5SDimitry Andric       output_sp->PutCString(g_reader_instructions);
1990b57cec5SDimitry Andric       output_sp->Flush();
2000b57cec5SDimitry Andric     }
2010b57cec5SDimitry Andric   }
2020b57cec5SDimitry Andric 
2030b57cec5SDimitry Andric   void IOHandlerInputComplete(IOHandler &io_handler,
2040b57cec5SDimitry Andric                               std::string &line) override {
2050b57cec5SDimitry Andric     io_handler.SetIsDone(true);
2060b57cec5SDimitry Andric 
207fe6060f1SDimitry Andric     std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec =
208fe6060f1SDimitry Andric         (std::vector<std::reference_wrapper<BreakpointOptions>> *)
209fe6060f1SDimitry Andric             io_handler.GetUserData();
210fe6060f1SDimitry Andric     for (BreakpointOptions &bp_options : *bp_options_vec) {
2119dba64beSDimitry Andric       auto cmd_data = std::make_unique<BreakpointOptions::CommandData>();
2120b57cec5SDimitry Andric       cmd_data->user_source.SplitIntoLines(line.c_str(), line.size());
213fe6060f1SDimitry Andric       bp_options.SetCommandDataCallback(cmd_data);
2140b57cec5SDimitry Andric     }
2150b57cec5SDimitry Andric   }
2160b57cec5SDimitry Andric 
2170b57cec5SDimitry Andric   void CollectDataForBreakpointCommandCallback(
218fe6060f1SDimitry Andric       std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
2190b57cec5SDimitry Andric       CommandReturnObject &result) {
2200b57cec5SDimitry Andric     m_interpreter.GetLLDBCommandsFromIOHandler(
2210b57cec5SDimitry Andric         "> ",             // Prompt
2220b57cec5SDimitry Andric         *this,            // IOHandlerDelegate
2230b57cec5SDimitry Andric         &bp_options_vec); // Baton for the "io_handler" that will be passed back
2240b57cec5SDimitry Andric                           // into our IOHandlerDelegate functions
2250b57cec5SDimitry Andric   }
2260b57cec5SDimitry Andric 
2270b57cec5SDimitry Andric   /// Set a one-liner as the callback for the breakpoint.
228fe6060f1SDimitry Andric   void SetBreakpointCommandCallback(
229fe6060f1SDimitry Andric       std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
2300b57cec5SDimitry Andric       const char *oneliner) {
231fe6060f1SDimitry Andric     for (BreakpointOptions &bp_options : bp_options_vec) {
2329dba64beSDimitry Andric       auto cmd_data = std::make_unique<BreakpointOptions::CommandData>();
2330b57cec5SDimitry Andric 
2340b57cec5SDimitry Andric       cmd_data->user_source.AppendString(oneliner);
2350b57cec5SDimitry Andric       cmd_data->stop_on_error = m_options.m_stop_on_error;
2360b57cec5SDimitry Andric 
237fe6060f1SDimitry Andric       bp_options.SetCommandDataCallback(cmd_data);
2380b57cec5SDimitry Andric     }
2390b57cec5SDimitry Andric   }
2400b57cec5SDimitry Andric 
241480093f4SDimitry Andric   class CommandOptions : public OptionGroup {
2420b57cec5SDimitry Andric   public:
24381ad6265SDimitry Andric     CommandOptions() = default;
2440b57cec5SDimitry Andric 
2450b57cec5SDimitry Andric     ~CommandOptions() override = default;
2460b57cec5SDimitry Andric 
2470b57cec5SDimitry Andric     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
2480b57cec5SDimitry Andric                           ExecutionContext *execution_context) override {
2490b57cec5SDimitry Andric       Status error;
250480093f4SDimitry Andric       const int short_option =
251480093f4SDimitry Andric           g_breakpoint_command_add_options[option_idx].short_option;
2520b57cec5SDimitry Andric 
2530b57cec5SDimitry Andric       switch (short_option) {
2540b57cec5SDimitry Andric       case 'o':
2550b57cec5SDimitry Andric         m_use_one_liner = true;
2565ffd83dbSDimitry Andric         m_one_liner = std::string(option_arg);
2570b57cec5SDimitry Andric         break;
2580b57cec5SDimitry Andric 
2590b57cec5SDimitry Andric       case 's':
2600b57cec5SDimitry Andric         m_script_language = (lldb::ScriptLanguage)OptionArgParser::ToOptionEnum(
2619dba64beSDimitry Andric             option_arg,
2629dba64beSDimitry Andric             g_breakpoint_command_add_options[option_idx].enum_values,
2630b57cec5SDimitry Andric             eScriptLanguageNone, error);
264480093f4SDimitry Andric         switch (m_script_language) {
265480093f4SDimitry Andric         case eScriptLanguagePython:
266480093f4SDimitry Andric         case eScriptLanguageLua:
2670b57cec5SDimitry Andric           m_use_script_language = true;
268480093f4SDimitry Andric           break;
269480093f4SDimitry Andric         case eScriptLanguageNone:
270480093f4SDimitry Andric         case eScriptLanguageUnknown:
2710b57cec5SDimitry Andric           m_use_script_language = false;
272480093f4SDimitry Andric           break;
2730b57cec5SDimitry Andric         }
2740b57cec5SDimitry Andric         break;
2750b57cec5SDimitry Andric 
2760b57cec5SDimitry Andric       case 'e': {
2770b57cec5SDimitry Andric         bool success = false;
2780b57cec5SDimitry Andric         m_stop_on_error =
2790b57cec5SDimitry Andric             OptionArgParser::ToBoolean(option_arg, false, &success);
2800b57cec5SDimitry Andric         if (!success)
2810b57cec5SDimitry Andric           error.SetErrorStringWithFormat(
2820b57cec5SDimitry Andric               "invalid value for stop-on-error: \"%s\"",
2830b57cec5SDimitry Andric               option_arg.str().c_str());
2840b57cec5SDimitry Andric       } break;
2850b57cec5SDimitry Andric 
2860b57cec5SDimitry Andric       case 'D':
2870b57cec5SDimitry Andric         m_use_dummy = true;
2880b57cec5SDimitry Andric         break;
2890b57cec5SDimitry Andric 
2900b57cec5SDimitry Andric       default:
2919dba64beSDimitry Andric         llvm_unreachable("Unimplemented option");
2920b57cec5SDimitry Andric       }
2930b57cec5SDimitry Andric       return error;
2940b57cec5SDimitry Andric     }
2950b57cec5SDimitry Andric 
2960b57cec5SDimitry Andric     void OptionParsingStarting(ExecutionContext *execution_context) override {
2970b57cec5SDimitry Andric       m_use_commands = true;
2980b57cec5SDimitry Andric       m_use_script_language = false;
2990b57cec5SDimitry Andric       m_script_language = eScriptLanguageNone;
3000b57cec5SDimitry Andric 
3010b57cec5SDimitry Andric       m_use_one_liner = false;
3020b57cec5SDimitry Andric       m_stop_on_error = true;
3030b57cec5SDimitry Andric       m_one_liner.clear();
3040b57cec5SDimitry Andric       m_use_dummy = false;
3050b57cec5SDimitry Andric     }
3060b57cec5SDimitry Andric 
3070b57cec5SDimitry Andric     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
308bdd1243dSDimitry Andric       return llvm::ArrayRef(g_breakpoint_command_add_options);
3090b57cec5SDimitry Andric     }
3100b57cec5SDimitry Andric 
3110b57cec5SDimitry Andric     // Instance variables to hold the values for command options.
3120b57cec5SDimitry Andric 
313fe6060f1SDimitry Andric     bool m_use_commands = false;
314fe6060f1SDimitry Andric     bool m_use_script_language = false;
315fe6060f1SDimitry Andric     lldb::ScriptLanguage m_script_language = eScriptLanguageNone;
3160b57cec5SDimitry Andric 
3170b57cec5SDimitry Andric     // Instance variables to hold the values for one_liner options.
318fe6060f1SDimitry Andric     bool m_use_one_liner = false;
3190b57cec5SDimitry Andric     std::string m_one_liner;
3200b57cec5SDimitry Andric     bool m_stop_on_error;
3210b57cec5SDimitry Andric     bool m_use_dummy;
3220b57cec5SDimitry Andric   };
3230b57cec5SDimitry Andric 
3240b57cec5SDimitry Andric protected:
3255f757f3fSDimitry Andric   void DoExecute(Args &command, CommandReturnObject &result) override {
3269dba64beSDimitry Andric     Target &target = GetSelectedOrDummyTarget(m_options.m_use_dummy);
3270b57cec5SDimitry Andric 
3289dba64beSDimitry Andric     const BreakpointList &breakpoints = target.GetBreakpointList();
3290b57cec5SDimitry Andric     size_t num_breakpoints = breakpoints.GetSize();
3300b57cec5SDimitry Andric 
3310b57cec5SDimitry Andric     if (num_breakpoints == 0) {
3320b57cec5SDimitry Andric       result.AppendError("No breakpoints exist to have commands added");
3335f757f3fSDimitry Andric       return;
3340b57cec5SDimitry Andric     }
3350b57cec5SDimitry Andric 
336480093f4SDimitry Andric     if (!m_func_options.GetName().empty()) {
337480093f4SDimitry Andric       m_options.m_use_one_liner = false;
338480093f4SDimitry Andric       if (!m_options.m_use_script_language) {
339480093f4SDimitry Andric         m_options.m_script_language = GetDebugger().GetScriptLanguage();
340480093f4SDimitry Andric         m_options.m_use_script_language = true;
341480093f4SDimitry Andric       }
3420b57cec5SDimitry Andric     }
3430b57cec5SDimitry Andric 
3440b57cec5SDimitry Andric     BreakpointIDList valid_bp_ids;
3450b57cec5SDimitry Andric     CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
3469dba64beSDimitry Andric         command, &target, result, &valid_bp_ids,
3470b57cec5SDimitry Andric         BreakpointName::Permissions::PermissionKinds::listPerm);
3480b57cec5SDimitry Andric 
3490b57cec5SDimitry Andric     m_bp_options_vec.clear();
3500b57cec5SDimitry Andric 
3510b57cec5SDimitry Andric     if (result.Succeeded()) {
3520b57cec5SDimitry Andric       const size_t count = valid_bp_ids.GetSize();
3530b57cec5SDimitry Andric 
3540b57cec5SDimitry Andric       for (size_t i = 0; i < count; ++i) {
3550b57cec5SDimitry Andric         BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
3560b57cec5SDimitry Andric         if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
3570b57cec5SDimitry Andric           Breakpoint *bp =
3589dba64beSDimitry Andric               target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
3590b57cec5SDimitry Andric           if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID) {
3600b57cec5SDimitry Andric             // This breakpoint does not have an associated location.
361fe6060f1SDimitry Andric             m_bp_options_vec.push_back(bp->GetOptions());
3620b57cec5SDimitry Andric           } else {
3630b57cec5SDimitry Andric             BreakpointLocationSP bp_loc_sp(
3640b57cec5SDimitry Andric                 bp->FindLocationByID(cur_bp_id.GetLocationID()));
3650b57cec5SDimitry Andric             // This breakpoint does have an associated location. Get its
3660b57cec5SDimitry Andric             // breakpoint options.
3670b57cec5SDimitry Andric             if (bp_loc_sp)
368fe6060f1SDimitry Andric               m_bp_options_vec.push_back(bp_loc_sp->GetLocationOptions());
3690b57cec5SDimitry Andric           }
3700b57cec5SDimitry Andric         }
3710b57cec5SDimitry Andric       }
3720b57cec5SDimitry Andric 
3730b57cec5SDimitry Andric       // If we are using script language, get the script interpreter in order
3740b57cec5SDimitry Andric       // to set or collect command callback.  Otherwise, call the methods
3750b57cec5SDimitry Andric       // associated with this object.
3760b57cec5SDimitry Andric       if (m_options.m_use_script_language) {
377e8d8bef9SDimitry Andric         Status error;
378480093f4SDimitry Andric         ScriptInterpreter *script_interp = GetDebugger().GetScriptInterpreter(
379480093f4SDimitry Andric             /*can_create=*/true, m_options.m_script_language);
3800b57cec5SDimitry Andric         // Special handling for one-liner specified inline.
3810b57cec5SDimitry Andric         if (m_options.m_use_one_liner) {
382e8d8bef9SDimitry Andric           error = script_interp->SetBreakpointCommandCallback(
3830b57cec5SDimitry Andric               m_bp_options_vec, m_options.m_one_liner.c_str());
384480093f4SDimitry Andric         } else if (!m_func_options.GetName().empty()) {
385e8d8bef9SDimitry Andric           error = script_interp->SetBreakpointCommandCallbackFunction(
386480093f4SDimitry Andric               m_bp_options_vec, m_func_options.GetName().c_str(),
387480093f4SDimitry Andric               m_func_options.GetStructuredData());
3880b57cec5SDimitry Andric         } else {
3890b57cec5SDimitry Andric           script_interp->CollectDataForBreakpointCommandCallback(
3900b57cec5SDimitry Andric               m_bp_options_vec, result);
3910b57cec5SDimitry Andric         }
392e8d8bef9SDimitry Andric         if (!error.Success())
393e8d8bef9SDimitry Andric           result.SetError(error);
3940b57cec5SDimitry Andric       } else {
3950b57cec5SDimitry Andric         // Special handling for one-liner specified inline.
3960b57cec5SDimitry Andric         if (m_options.m_use_one_liner)
3970b57cec5SDimitry Andric           SetBreakpointCommandCallback(m_bp_options_vec,
3980b57cec5SDimitry Andric                                        m_options.m_one_liner.c_str());
3990b57cec5SDimitry Andric         else
4000b57cec5SDimitry Andric           CollectDataForBreakpointCommandCallback(m_bp_options_vec, result);
4010b57cec5SDimitry Andric       }
4020b57cec5SDimitry Andric     }
4030b57cec5SDimitry Andric   }
4040b57cec5SDimitry Andric 
4050b57cec5SDimitry Andric private:
4060b57cec5SDimitry Andric   CommandOptions m_options;
407480093f4SDimitry Andric   OptionGroupPythonClassWithDict m_func_options;
408480093f4SDimitry Andric   OptionGroupOptions m_all_options;
409480093f4SDimitry Andric 
410fe6060f1SDimitry Andric   std::vector<std::reference_wrapper<BreakpointOptions>>
411fe6060f1SDimitry Andric       m_bp_options_vec; // This stores the
4120b57cec5SDimitry Andric                         // breakpoint options that
4130b57cec5SDimitry Andric                         // we are currently
4140b57cec5SDimitry Andric   // collecting commands for.  In the CollectData... calls we need to hand this
4150b57cec5SDimitry Andric   // off to the IOHandler, which may run asynchronously. So we have to have
4160b57cec5SDimitry Andric   // some way to keep it alive, and not leak it. Making it an ivar of the
4170b57cec5SDimitry Andric   // command object, which never goes away achieves this.  Note that if we were
4180b57cec5SDimitry Andric   // able to run the same command concurrently in one interpreter we'd have to
4190b57cec5SDimitry Andric   // make this "per invocation".  But there are many more reasons why it is not
4200b57cec5SDimitry Andric   // in general safe to do that in lldb at present, so it isn't worthwhile to
4210b57cec5SDimitry Andric   // come up with a more complex mechanism to address this particular weakness
4220b57cec5SDimitry Andric   // right now.
4230b57cec5SDimitry Andric   static const char *g_reader_instructions;
4240b57cec5SDimitry Andric };
4250b57cec5SDimitry Andric 
4260b57cec5SDimitry Andric const char *CommandObjectBreakpointCommandAdd::g_reader_instructions =
4270b57cec5SDimitry Andric     "Enter your debugger command(s).  Type 'DONE' to end.\n";
4280b57cec5SDimitry Andric 
4290b57cec5SDimitry Andric // CommandObjectBreakpointCommandDelete
4300b57cec5SDimitry Andric 
4319dba64beSDimitry Andric #define LLDB_OPTIONS_breakpoint_command_delete
4329dba64beSDimitry Andric #include "CommandOptions.inc"
4330b57cec5SDimitry Andric 
4340b57cec5SDimitry Andric class CommandObjectBreakpointCommandDelete : public CommandObjectParsed {
4350b57cec5SDimitry Andric public:
4360b57cec5SDimitry Andric   CommandObjectBreakpointCommandDelete(CommandInterpreter &interpreter)
4370b57cec5SDimitry Andric       : CommandObjectParsed(interpreter, "delete",
4380b57cec5SDimitry Andric                             "Delete the set of commands from a breakpoint.",
43904eeddc0SDimitry Andric                             nullptr) {
440*0fca6ea1SDimitry Andric     AddSimpleArgumentList(eArgTypeBreakpointID);
4410b57cec5SDimitry Andric   }
4420b57cec5SDimitry Andric 
4430b57cec5SDimitry Andric   ~CommandObjectBreakpointCommandDelete() override = default;
4440b57cec5SDimitry Andric 
4450b57cec5SDimitry Andric   Options *GetOptions() override { return &m_options; }
4460b57cec5SDimitry Andric 
4470b57cec5SDimitry Andric   class CommandOptions : public Options {
4480b57cec5SDimitry Andric   public:
44981ad6265SDimitry Andric     CommandOptions() = default;
4500b57cec5SDimitry Andric 
4510b57cec5SDimitry Andric     ~CommandOptions() override = default;
4520b57cec5SDimitry Andric 
4530b57cec5SDimitry Andric     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
4540b57cec5SDimitry Andric                           ExecutionContext *execution_context) override {
4550b57cec5SDimitry Andric       Status error;
4560b57cec5SDimitry Andric       const int short_option = m_getopt_table[option_idx].val;
4570b57cec5SDimitry Andric 
4580b57cec5SDimitry Andric       switch (short_option) {
4590b57cec5SDimitry Andric       case 'D':
4600b57cec5SDimitry Andric         m_use_dummy = true;
4610b57cec5SDimitry Andric         break;
4620b57cec5SDimitry Andric 
4630b57cec5SDimitry Andric       default:
4649dba64beSDimitry Andric         llvm_unreachable("Unimplemented option");
4650b57cec5SDimitry Andric       }
4660b57cec5SDimitry Andric 
4670b57cec5SDimitry Andric       return error;
4680b57cec5SDimitry Andric     }
4690b57cec5SDimitry Andric 
4700b57cec5SDimitry Andric     void OptionParsingStarting(ExecutionContext *execution_context) override {
4710b57cec5SDimitry Andric       m_use_dummy = false;
4720b57cec5SDimitry Andric     }
4730b57cec5SDimitry Andric 
4740b57cec5SDimitry Andric     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
475bdd1243dSDimitry Andric       return llvm::ArrayRef(g_breakpoint_command_delete_options);
4760b57cec5SDimitry Andric     }
4770b57cec5SDimitry Andric 
4780b57cec5SDimitry Andric     // Instance variables to hold the values for command options.
479fe6060f1SDimitry Andric     bool m_use_dummy = false;
4800b57cec5SDimitry Andric   };
4810b57cec5SDimitry Andric 
4820b57cec5SDimitry Andric protected:
4835f757f3fSDimitry Andric   void DoExecute(Args &command, CommandReturnObject &result) override {
4849dba64beSDimitry Andric     Target &target = GetSelectedOrDummyTarget(m_options.m_use_dummy);
4850b57cec5SDimitry Andric 
4869dba64beSDimitry Andric     const BreakpointList &breakpoints = target.GetBreakpointList();
4870b57cec5SDimitry Andric     size_t num_breakpoints = breakpoints.GetSize();
4880b57cec5SDimitry Andric 
4890b57cec5SDimitry Andric     if (num_breakpoints == 0) {
4900b57cec5SDimitry Andric       result.AppendError("No breakpoints exist to have commands deleted");
4915f757f3fSDimitry Andric       return;
4920b57cec5SDimitry Andric     }
4930b57cec5SDimitry Andric 
4940b57cec5SDimitry Andric     if (command.empty()) {
4950b57cec5SDimitry Andric       result.AppendError(
4960b57cec5SDimitry Andric           "No breakpoint specified from which to delete the commands");
4975f757f3fSDimitry Andric       return;
4980b57cec5SDimitry Andric     }
4990b57cec5SDimitry Andric 
5000b57cec5SDimitry Andric     BreakpointIDList valid_bp_ids;
5010b57cec5SDimitry Andric     CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
5029dba64beSDimitry Andric         command, &target, result, &valid_bp_ids,
5030b57cec5SDimitry Andric         BreakpointName::Permissions::PermissionKinds::listPerm);
5040b57cec5SDimitry Andric 
5050b57cec5SDimitry Andric     if (result.Succeeded()) {
5060b57cec5SDimitry Andric       const size_t count = valid_bp_ids.GetSize();
5070b57cec5SDimitry Andric       for (size_t i = 0; i < count; ++i) {
5080b57cec5SDimitry Andric         BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
5090b57cec5SDimitry Andric         if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
5100b57cec5SDimitry Andric           Breakpoint *bp =
5119dba64beSDimitry Andric               target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
5120b57cec5SDimitry Andric           if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
5130b57cec5SDimitry Andric             BreakpointLocationSP bp_loc_sp(
5140b57cec5SDimitry Andric                 bp->FindLocationByID(cur_bp_id.GetLocationID()));
5150b57cec5SDimitry Andric             if (bp_loc_sp)
5160b57cec5SDimitry Andric               bp_loc_sp->ClearCallback();
5170b57cec5SDimitry Andric             else {
5180b57cec5SDimitry Andric               result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
5190b57cec5SDimitry Andric                                            cur_bp_id.GetBreakpointID(),
5200b57cec5SDimitry Andric                                            cur_bp_id.GetLocationID());
5215f757f3fSDimitry Andric               return;
5220b57cec5SDimitry Andric             }
5230b57cec5SDimitry Andric           } else {
5240b57cec5SDimitry Andric             bp->ClearCallback();
5250b57cec5SDimitry Andric           }
5260b57cec5SDimitry Andric         }
5270b57cec5SDimitry Andric       }
5280b57cec5SDimitry Andric     }
5290b57cec5SDimitry Andric   }
5300b57cec5SDimitry Andric 
5310b57cec5SDimitry Andric private:
5320b57cec5SDimitry Andric   CommandOptions m_options;
5330b57cec5SDimitry Andric };
5340b57cec5SDimitry Andric 
5350b57cec5SDimitry Andric // CommandObjectBreakpointCommandList
5360b57cec5SDimitry Andric 
5370b57cec5SDimitry Andric class CommandObjectBreakpointCommandList : public CommandObjectParsed {
5380b57cec5SDimitry Andric public:
5390b57cec5SDimitry Andric   CommandObjectBreakpointCommandList(CommandInterpreter &interpreter)
5409dba64beSDimitry Andric       : CommandObjectParsed(interpreter, "list",
5419dba64beSDimitry Andric                             "List the script or set of commands to be "
5429dba64beSDimitry Andric                             "executed when the breakpoint is hit.",
5439dba64beSDimitry Andric                             nullptr, eCommandRequiresTarget) {
544*0fca6ea1SDimitry Andric     AddSimpleArgumentList(eArgTypeBreakpointID);
5450b57cec5SDimitry Andric   }
5460b57cec5SDimitry Andric 
5470b57cec5SDimitry Andric   ~CommandObjectBreakpointCommandList() override = default;
5480b57cec5SDimitry Andric 
5490b57cec5SDimitry Andric protected:
5505f757f3fSDimitry Andric   void DoExecute(Args &command, CommandReturnObject &result) override {
5519dba64beSDimitry Andric     Target *target = &GetSelectedTarget();
5520b57cec5SDimitry Andric 
5530b57cec5SDimitry Andric     const BreakpointList &breakpoints = target->GetBreakpointList();
5540b57cec5SDimitry Andric     size_t num_breakpoints = breakpoints.GetSize();
5550b57cec5SDimitry Andric 
5560b57cec5SDimitry Andric     if (num_breakpoints == 0) {
5570b57cec5SDimitry Andric       result.AppendError("No breakpoints exist for which to list commands");
5585f757f3fSDimitry Andric       return;
5590b57cec5SDimitry Andric     }
5600b57cec5SDimitry Andric 
5610b57cec5SDimitry Andric     if (command.empty()) {
5620b57cec5SDimitry Andric       result.AppendError(
5630b57cec5SDimitry Andric           "No breakpoint specified for which to list the commands");
5645f757f3fSDimitry Andric       return;
5650b57cec5SDimitry Andric     }
5660b57cec5SDimitry Andric 
5670b57cec5SDimitry Andric     BreakpointIDList valid_bp_ids;
5680b57cec5SDimitry Andric     CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
5690b57cec5SDimitry Andric         command, target, result, &valid_bp_ids,
5700b57cec5SDimitry Andric         BreakpointName::Permissions::PermissionKinds::listPerm);
5710b57cec5SDimitry Andric 
5720b57cec5SDimitry Andric     if (result.Succeeded()) {
5730b57cec5SDimitry Andric       const size_t count = valid_bp_ids.GetSize();
5740b57cec5SDimitry Andric       for (size_t i = 0; i < count; ++i) {
5750b57cec5SDimitry Andric         BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
5760b57cec5SDimitry Andric         if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
5770b57cec5SDimitry Andric           Breakpoint *bp =
5780b57cec5SDimitry Andric               target->GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
5790b57cec5SDimitry Andric 
5800b57cec5SDimitry Andric           if (bp) {
5810b57cec5SDimitry Andric             BreakpointLocationSP bp_loc_sp;
5820b57cec5SDimitry Andric             if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
5830b57cec5SDimitry Andric               bp_loc_sp = bp->FindLocationByID(cur_bp_id.GetLocationID());
584480093f4SDimitry Andric               if (!bp_loc_sp) {
5850b57cec5SDimitry Andric                 result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
5860b57cec5SDimitry Andric                                              cur_bp_id.GetBreakpointID(),
5870b57cec5SDimitry Andric                                              cur_bp_id.GetLocationID());
5885f757f3fSDimitry Andric                 return;
5890b57cec5SDimitry Andric               }
5900b57cec5SDimitry Andric             }
5910b57cec5SDimitry Andric 
5920b57cec5SDimitry Andric             StreamString id_str;
5930b57cec5SDimitry Andric             BreakpointID::GetCanonicalReference(&id_str,
5940b57cec5SDimitry Andric                                                 cur_bp_id.GetBreakpointID(),
5950b57cec5SDimitry Andric                                                 cur_bp_id.GetLocationID());
5960b57cec5SDimitry Andric             const Baton *baton = nullptr;
5970b57cec5SDimitry Andric             if (bp_loc_sp)
598480093f4SDimitry Andric               baton =
599480093f4SDimitry Andric                   bp_loc_sp
6000b57cec5SDimitry Andric                       ->GetOptionsSpecifyingKind(BreakpointOptions::eCallback)
601fe6060f1SDimitry Andric                       .GetBaton();
6020b57cec5SDimitry Andric             else
603fe6060f1SDimitry Andric               baton = bp->GetOptions().GetBaton();
6040b57cec5SDimitry Andric 
6050b57cec5SDimitry Andric             if (baton) {
6060b57cec5SDimitry Andric               result.GetOutputStream().Printf("Breakpoint %s:\n",
6070b57cec5SDimitry Andric                                               id_str.GetData());
608480093f4SDimitry Andric               baton->GetDescription(result.GetOutputStream().AsRawOstream(),
609480093f4SDimitry Andric                                     eDescriptionLevelFull,
610480093f4SDimitry Andric                                     result.GetOutputStream().GetIndentLevel() +
611480093f4SDimitry Andric                                         2);
6120b57cec5SDimitry Andric             } else {
6130b57cec5SDimitry Andric               result.AppendMessageWithFormat(
6140b57cec5SDimitry Andric                   "Breakpoint %s does not have an associated command.\n",
6150b57cec5SDimitry Andric                   id_str.GetData());
6160b57cec5SDimitry Andric             }
6170b57cec5SDimitry Andric           }
6180b57cec5SDimitry Andric           result.SetStatus(eReturnStatusSuccessFinishResult);
6190b57cec5SDimitry Andric         } else {
6200b57cec5SDimitry Andric           result.AppendErrorWithFormat("Invalid breakpoint ID: %u.\n",
6210b57cec5SDimitry Andric                                        cur_bp_id.GetBreakpointID());
6220b57cec5SDimitry Andric         }
6230b57cec5SDimitry Andric       }
6240b57cec5SDimitry Andric     }
6250b57cec5SDimitry Andric   }
6260b57cec5SDimitry Andric };
6270b57cec5SDimitry Andric 
6280b57cec5SDimitry Andric // CommandObjectBreakpointCommand
6290b57cec5SDimitry Andric 
6300b57cec5SDimitry Andric CommandObjectBreakpointCommand::CommandObjectBreakpointCommand(
6310b57cec5SDimitry Andric     CommandInterpreter &interpreter)
6320b57cec5SDimitry Andric     : CommandObjectMultiword(
633480093f4SDimitry Andric           interpreter, "command",
634480093f4SDimitry Andric           "Commands for adding, removing and listing "
6350b57cec5SDimitry Andric           "LLDB commands executed when a breakpoint is "
6360b57cec5SDimitry Andric           "hit.",
6370b57cec5SDimitry Andric           "command <sub-command> [<sub-command-options>] <breakpoint-id>") {
6380b57cec5SDimitry Andric   CommandObjectSP add_command_object(
6390b57cec5SDimitry Andric       new CommandObjectBreakpointCommandAdd(interpreter));
6400b57cec5SDimitry Andric   CommandObjectSP delete_command_object(
6410b57cec5SDimitry Andric       new CommandObjectBreakpointCommandDelete(interpreter));
6420b57cec5SDimitry Andric   CommandObjectSP list_command_object(
6430b57cec5SDimitry Andric       new CommandObjectBreakpointCommandList(interpreter));
6440b57cec5SDimitry Andric 
6450b57cec5SDimitry Andric   add_command_object->SetCommandName("breakpoint command add");
6460b57cec5SDimitry Andric   delete_command_object->SetCommandName("breakpoint command delete");
6470b57cec5SDimitry Andric   list_command_object->SetCommandName("breakpoint command list");
6480b57cec5SDimitry Andric 
6490b57cec5SDimitry Andric   LoadSubCommand("add", add_command_object);
6500b57cec5SDimitry Andric   LoadSubCommand("delete", delete_command_object);
6510b57cec5SDimitry Andric   LoadSubCommand("list", list_command_object);
6520b57cec5SDimitry Andric }
6530b57cec5SDimitry Andric 
6540b57cec5SDimitry Andric CommandObjectBreakpointCommand::~CommandObjectBreakpointCommand() = default;
655