2 "SBDebugger is the primordial object that creates SBTargets and provides
3 access to them. It also manages the overall debugging experiences.
5 For example (from example/disasm.py),::
11 def disassemble_instructions (insts):
17 # Create a new debugger instance
18 debugger = lldb.SBDebugger.Create()
20 # When we step or continue, don't return from the function until the process
21 # stops. We do this by setting the async mode to false.
22 debugger.SetAsync (False)
24 # Create a target from a file and arch
25 print('Creating a target for \'%s\'' % exe)
27 target = debugger.CreateTargetWithFileAndArch (exe, lldb.LLDB_ARCH_DEFAULT)
30 # If the target is valid set a breakpoint at main
31 main_bp = target.BreakpointCreateByName (fname, target.GetExecutable().GetFilename());
35 # Launch the process. Since we specified synchronous mode, we won't return
36 # from this function until we hit the breakpoint at main
37 process = target.LaunchSimple (None, None, os.getcwd())
39 # Make sure the launch went ok
41 # Print some simple process info
42 state = process.GetState ()
44 if state == lldb.eStateStopped:
45 # Get the first thread
46 thread = process.GetThreadAtIndex (0)
48 # Print some simple thread info
51 frame = thread.GetFrameAtIndex (0)
53 # Print some simple frame info
55 function = frame.GetFunction()
56 # See if we have debug info (a function)
58 # We do have a function, print some info for the function
60 # Now get all instructions for this function and print them
61 insts = function.GetInstructions(target)
62 disassemble_instructions (insts)
64 # See if we have a symbol in the symbol table for where we stopped
65 symbol = frame.GetSymbol();
67 # We do have a symbol, print some info for the symbol
69 # Now get all instructions for this symbol and print them
70 insts = symbol.GetInstructions(target)
71 disassemble_instructions (insts)
73 registerList = frame.GetRegisters()
74 print('Frame registers (size of register set = %d):' % registerList.GetSize())
75 for value in registerList:
77 print('%s (number of children = %d):' % (value.GetName(), value.GetNumChildren()))
79 print('Name: ', child.GetName(), ' Value: ', child.GetValue())
81 print('Hit the breakpoint at main, enter to continue and wait for program to exit or \'Ctrl-D\'/\'quit\' to terminate the program')
82 next = sys.stdin.readline()
83 if not next or next.rstrip('\\n') == 'quit':
84 print('Terminating the inferior process...')
87 # Now continue to the program exit
89 # When we return from the above function we will hopefully be at the
90 # program exit. Print out some process info
92 elif state == lldb.eStateExited:
93 print('Didn\'t hit the breakpoint at main, program has exited...')
95 print('Unexpected process state: %s, killing process...' % debugger.StateAsCString (state))
98 Sometimes you need to create an empty target that will get filled in later. The most common use for this
99 is to attach to a process by name or pid where you don't know the executable up front. The most convenient way
102 target = debugger.CreateTarget('')
103 error = lldb.SBError()
104 process = target.AttachToProcessWithName(debugger.GetListener(), 'PROCESS_NAME', False, error)
106 or the equivalent arguments for :py:class:`SBTarget.AttachToProcessWithID` ."
109 %feature
("docstring",
110 "The dummy target holds breakpoints and breakpoint names that will prime newly created targets."
111 ) lldb
::SBDebugger
::GetDummyTarget
;
113 %feature
("docstring",
114 "Return true if target is deleted from the target list of the debugger."
115 ) lldb
::SBDebugger
::DeleteTarget
;
117 %feature
("docstring",
118 "Get the number of currently active platforms."
119 ) lldb
::SBDebugger
::GetNumPlatforms
;
121 %feature
("docstring",
122 "Get one of the currently active platforms."
123 ) lldb
::SBDebugger
::GetPlatformAtIndex
;
125 %feature
("docstring",
126 "Get the number of available platforms."
127 ) lldb
::SBDebugger
::GetNumAvailablePlatforms
;
129 %feature
("docstring", "
130 Get the name and description of one of the available platforms.
132 @param idx Zero-based index of the platform for which info should be
133 retrieved, must be less than the value returned by
134 GetNumAvailablePlatforms()."
135 ) lldb
::SBDebugger
::GetAvailablePlatformInfoAtIndex
;
137 %feature
("docstring",
138 "Launch a command interpreter session. Commands are read from standard input or
139 from the input handle specified for the debugger object. Output/errors are
140 similarly redirected to standard output/error or the configured handles.
142 @param[in] auto_handle_events If true, automatically handle resulting events.
143 @param[in] spawn_thread If true, start a new thread for IO handling.
144 @param[in] options Parameter collection of type SBCommandInterpreterRunOptions.
145 @param[in] num_errors Initial error counter.
146 @param[in] quit_requested Initial quit request flag.
147 @param[in] stopped_for_crash Initial crash flag.
150 A tuple with the number of errors encountered by the interpreter, a boolean
151 indicating whether quitting the interpreter was requested and another boolean
152 set to True in case of a crash.
156 # Start an interactive lldb session from a script (with a valid debugger object
157 # created beforehand):
158 n_errors, quit_requested, has_crashed = debugger.RunCommandInterpreter(True,
159 False, lldb.SBCommandInterpreterRunOptions(), 0, False, False)"
160 ) lldb
::SBDebugger
::RunCommandInterpreter
;