gdb/python: Add gdb.Architecture.registers method
[deliverable/binutils-gdb.git] / gdb / doc / python.texi
1 @c Copyright (C) 2008--2020 Free Software Foundation, Inc.
2 @c Permission is granted to copy, distribute and/or modify this document
3 @c under the terms of the GNU Free Documentation License, Version 1.3 or
4 @c any later version published by the Free Software Foundation; with the
5 @c Invariant Sections being ``Free Software'' and ``Free Software Needs
6 @c Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
7 @c and with the Back-Cover Texts as in (a) below.
8 @c
9 @c (a) The FSF's Back-Cover Text is: ``You are free to copy and modify
10 @c this GNU Manual. Buying copies from GNU Press supports the FSF in
11 @c developing GNU and promoting software freedom.''
12
13 @node Python
14 @section Extending @value{GDBN} using Python
15 @cindex python scripting
16 @cindex scripting with python
17
18 You can extend @value{GDBN} using the @uref{http://www.python.org/,
19 Python programming language}. This feature is available only if
20 @value{GDBN} was configured using @option{--with-python}.
21 @value{GDBN} can be built against either Python 2 or Python 3; which
22 one you have depends on this configure-time option.
23
24 @cindex python directory
25 Python scripts used by @value{GDBN} should be installed in
26 @file{@var{data-directory}/python}, where @var{data-directory} is
27 the data directory as determined at @value{GDBN} startup (@pxref{Data Files}).
28 This directory, known as the @dfn{python directory},
29 is automatically added to the Python Search Path in order to allow
30 the Python interpreter to locate all scripts installed at this location.
31
32 Additionally, @value{GDBN} commands and convenience functions which
33 are written in Python and are located in the
34 @file{@var{data-directory}/python/gdb/command} or
35 @file{@var{data-directory}/python/gdb/function} directories are
36 automatically imported when @value{GDBN} starts.
37
38 @menu
39 * Python Commands:: Accessing Python from @value{GDBN}.
40 * Python API:: Accessing @value{GDBN} from Python.
41 * Python Auto-loading:: Automatically loading Python code.
42 * Python modules:: Python modules provided by @value{GDBN}.
43 @end menu
44
45 @node Python Commands
46 @subsection Python Commands
47 @cindex python commands
48 @cindex commands to access python
49
50 @value{GDBN} provides two commands for accessing the Python interpreter,
51 and one related setting:
52
53 @table @code
54 @kindex python-interactive
55 @kindex pi
56 @item python-interactive @r{[}@var{command}@r{]}
57 @itemx pi @r{[}@var{command}@r{]}
58 Without an argument, the @code{python-interactive} command can be used
59 to start an interactive Python prompt. To return to @value{GDBN},
60 type the @code{EOF} character (e.g., @kbd{Ctrl-D} on an empty prompt).
61
62 Alternatively, a single-line Python command can be given as an
63 argument and evaluated. If the command is an expression, the result
64 will be printed; otherwise, nothing will be printed. For example:
65
66 @smallexample
67 (@value{GDBP}) python-interactive 2 + 3
68 5
69 @end smallexample
70
71 @kindex python
72 @kindex py
73 @item python @r{[}@var{command}@r{]}
74 @itemx py @r{[}@var{command}@r{]}
75 The @code{python} command can be used to evaluate Python code.
76
77 If given an argument, the @code{python} command will evaluate the
78 argument as a Python command. For example:
79
80 @smallexample
81 (@value{GDBP}) python print 23
82 23
83 @end smallexample
84
85 If you do not provide an argument to @code{python}, it will act as a
86 multi-line command, like @code{define}. In this case, the Python
87 script is made up of subsequent command lines, given after the
88 @code{python} command. This command list is terminated using a line
89 containing @code{end}. For example:
90
91 @smallexample
92 (@value{GDBP}) python
93 >print 23
94 >end
95 23
96 @end smallexample
97
98 @kindex set python print-stack
99 @item set python print-stack
100 By default, @value{GDBN} will print only the message component of a
101 Python exception when an error occurs in a Python script. This can be
102 controlled using @code{set python print-stack}: if @code{full}, then
103 full Python stack printing is enabled; if @code{none}, then Python stack
104 and message printing is disabled; if @code{message}, the default, only
105 the message component of the error is printed.
106 @end table
107
108 It is also possible to execute a Python script from the @value{GDBN}
109 interpreter:
110
111 @table @code
112 @item source @file{script-name}
113 The script name must end with @samp{.py} and @value{GDBN} must be configured
114 to recognize the script language based on filename extension using
115 the @code{script-extension} setting. @xref{Extending GDB, ,Extending GDB}.
116 @end table
117
118 @node Python API
119 @subsection Python API
120 @cindex python api
121 @cindex programming in python
122
123 You can get quick online help for @value{GDBN}'s Python API by issuing
124 the command @w{@kbd{python help (gdb)}}.
125
126 Functions and methods which have two or more optional arguments allow
127 them to be specified using keyword syntax. This allows passing some
128 optional arguments while skipping others. Example:
129 @w{@code{gdb.some_function ('foo', bar = 1, baz = 2)}}.
130
131 @menu
132 * Basic Python:: Basic Python Functions.
133 * Exception Handling:: How Python exceptions are translated.
134 * Values From Inferior:: Python representation of values.
135 * Types In Python:: Python representation of types.
136 * Pretty Printing API:: Pretty-printing values.
137 * Selecting Pretty-Printers:: How GDB chooses a pretty-printer.
138 * Writing a Pretty-Printer:: Writing a Pretty-Printer.
139 * Type Printing API:: Pretty-printing types.
140 * Frame Filter API:: Filtering Frames.
141 * Frame Decorator API:: Decorating Frames.
142 * Writing a Frame Filter:: Writing a Frame Filter.
143 * Unwinding Frames in Python:: Writing frame unwinder.
144 * Xmethods In Python:: Adding and replacing methods of C++ classes.
145 * Xmethod API:: Xmethod types.
146 * Writing an Xmethod:: Writing an xmethod.
147 * Inferiors In Python:: Python representation of inferiors (processes)
148 * Events In Python:: Listening for events from @value{GDBN}.
149 * Threads In Python:: Accessing inferior threads from Python.
150 * Recordings In Python:: Accessing recordings from Python.
151 * Commands In Python:: Implementing new commands in Python.
152 * Parameters In Python:: Adding new @value{GDBN} parameters.
153 * Functions In Python:: Writing new convenience functions.
154 * Progspaces In Python:: Program spaces.
155 * Objfiles In Python:: Object files.
156 * Frames In Python:: Accessing inferior stack frames from Python.
157 * Blocks In Python:: Accessing blocks from Python.
158 * Symbols In Python:: Python representation of symbols.
159 * Symbol Tables In Python:: Python representation of symbol tables.
160 * Line Tables In Python:: Python representation of line tables.
161 * Breakpoints In Python:: Manipulating breakpoints using Python.
162 * Finish Breakpoints in Python:: Setting Breakpoints on function return
163 using Python.
164 * Lazy Strings In Python:: Python representation of lazy strings.
165 * Architectures In Python:: Python representation of architectures.
166 * Registers In Python:: Python representation of registers.
167 * TUI Windows In Python:: Implementing new TUI windows.
168 @end menu
169
170 @node Basic Python
171 @subsubsection Basic Python
172
173 @cindex python stdout
174 @cindex python pagination
175 At startup, @value{GDBN} overrides Python's @code{sys.stdout} and
176 @code{sys.stderr} to print using @value{GDBN}'s output-paging streams.
177 A Python program which outputs to one of these streams may have its
178 output interrupted by the user (@pxref{Screen Size}). In this
179 situation, a Python @code{KeyboardInterrupt} exception is thrown.
180
181 Some care must be taken when writing Python code to run in
182 @value{GDBN}. Two things worth noting in particular:
183
184 @itemize @bullet
185 @item
186 @value{GDBN} install handlers for @code{SIGCHLD} and @code{SIGINT}.
187 Python code must not override these, or even change the options using
188 @code{sigaction}. If your program changes the handling of these
189 signals, @value{GDBN} will most likely stop working correctly. Note
190 that it is unfortunately common for GUI toolkits to install a
191 @code{SIGCHLD} handler.
192
193 @item
194 @value{GDBN} takes care to mark its internal file descriptors as
195 close-on-exec. However, this cannot be done in a thread-safe way on
196 all platforms. Your Python programs should be aware of this and
197 should both create new file descriptors with the close-on-exec flag
198 set and arrange to close unneeded file descriptors before starting a
199 child process.
200 @end itemize
201
202 @cindex python functions
203 @cindex python module
204 @cindex gdb module
205 @value{GDBN} introduces a new Python module, named @code{gdb}. All
206 methods and classes added by @value{GDBN} are placed in this module.
207 @value{GDBN} automatically @code{import}s the @code{gdb} module for
208 use in all scripts evaluated by the @code{python} command.
209
210 Some types of the @code{gdb} module come with a textual representation
211 (accessible through the @code{repr} or @code{str} functions). These are
212 offered for debugging purposes only, expect them to change over time.
213
214 @findex gdb.PYTHONDIR
215 @defvar gdb.PYTHONDIR
216 A string containing the python directory (@pxref{Python}).
217 @end defvar
218
219 @findex gdb.execute
220 @defun gdb.execute (command @r{[}, from_tty @r{[}, to_string@r{]]})
221 Evaluate @var{command}, a string, as a @value{GDBN} CLI command.
222 If a GDB exception happens while @var{command} runs, it is
223 translated as described in @ref{Exception Handling,,Exception Handling}.
224
225 The @var{from_tty} flag specifies whether @value{GDBN} ought to consider this
226 command as having originated from the user invoking it interactively.
227 It must be a boolean value. If omitted, it defaults to @code{False}.
228
229 By default, any output produced by @var{command} is sent to
230 @value{GDBN}'s standard output (and to the log output if logging is
231 turned on). If the @var{to_string} parameter is
232 @code{True}, then output will be collected by @code{gdb.execute} and
233 returned as a string. The default is @code{False}, in which case the
234 return value is @code{None}. If @var{to_string} is @code{True}, the
235 @value{GDBN} virtual terminal will be temporarily set to unlimited width
236 and height, and its pagination will be disabled; @pxref{Screen Size}.
237 @end defun
238
239 @findex gdb.breakpoints
240 @defun gdb.breakpoints ()
241 Return a sequence holding all of @value{GDBN}'s breakpoints.
242 @xref{Breakpoints In Python}, for more information. In @value{GDBN}
243 version 7.11 and earlier, this function returned @code{None} if there
244 were no breakpoints. This peculiarity was subsequently fixed, and now
245 @code{gdb.breakpoints} returns an empty sequence in this case.
246 @end defun
247
248 @defun gdb.rbreak (regex @r{[}, minsyms @r{[}, throttle, @r{[}, symtabs @r{]]]})
249 Return a Python list holding a collection of newly set
250 @code{gdb.Breakpoint} objects matching function names defined by the
251 @var{regex} pattern. If the @var{minsyms} keyword is @code{True}, all
252 system functions (those not explicitly defined in the inferior) will
253 also be included in the match. The @var{throttle} keyword takes an
254 integer that defines the maximum number of pattern matches for
255 functions matched by the @var{regex} pattern. If the number of
256 matches exceeds the integer value of @var{throttle}, a
257 @code{RuntimeError} will be raised and no breakpoints will be created.
258 If @var{throttle} is not defined then there is no imposed limit on the
259 maximum number of matches and breakpoints to be created. The
260 @var{symtabs} keyword takes a Python iterable that yields a collection
261 of @code{gdb.Symtab} objects and will restrict the search to those
262 functions only contained within the @code{gdb.Symtab} objects.
263 @end defun
264
265 @findex gdb.parameter
266 @defun gdb.parameter (parameter)
267 Return the value of a @value{GDBN} @var{parameter} given by its name,
268 a string; the parameter name string may contain spaces if the parameter has a
269 multi-part name. For example, @samp{print object} is a valid
270 parameter name.
271
272 If the named parameter does not exist, this function throws a
273 @code{gdb.error} (@pxref{Exception Handling}). Otherwise, the
274 parameter's value is converted to a Python value of the appropriate
275 type, and returned.
276 @end defun
277
278 @findex gdb.history
279 @defun gdb.history (number)
280 Return a value from @value{GDBN}'s value history (@pxref{Value
281 History}). The @var{number} argument indicates which history element to return.
282 If @var{number} is negative, then @value{GDBN} will take its absolute value
283 and count backward from the last element (i.e., the most recent element) to
284 find the value to return. If @var{number} is zero, then @value{GDBN} will
285 return the most recent element. If the element specified by @var{number}
286 doesn't exist in the value history, a @code{gdb.error} exception will be
287 raised.
288
289 If no exception is raised, the return value is always an instance of
290 @code{gdb.Value} (@pxref{Values From Inferior}).
291 @end defun
292
293 @findex gdb.convenience_variable
294 @defun gdb.convenience_variable (name)
295 Return the value of the convenience variable (@pxref{Convenience
296 Vars}) named @var{name}. @var{name} must be a string. The name
297 should not include the @samp{$} that is used to mark a convenience
298 variable in an expression. If the convenience variable does not
299 exist, then @code{None} is returned.
300 @end defun
301
302 @findex gdb.set_convenience_variable
303 @defun gdb.set_convenience_variable (name, value)
304 Set the value of the convenience variable (@pxref{Convenience Vars})
305 named @var{name}. @var{name} must be a string. The name should not
306 include the @samp{$} that is used to mark a convenience variable in an
307 expression. If @var{value} is @code{None}, then the convenience
308 variable is removed. Otherwise, if @var{value} is not a
309 @code{gdb.Value} (@pxref{Values From Inferior}), it is is converted
310 using the @code{gdb.Value} constructor.
311 @end defun
312
313 @findex gdb.parse_and_eval
314 @defun gdb.parse_and_eval (expression)
315 Parse @var{expression}, which must be a string, as an expression in
316 the current language, evaluate it, and return the result as a
317 @code{gdb.Value}.
318
319 This function can be useful when implementing a new command
320 (@pxref{Commands In Python}), as it provides a way to parse the
321 command's argument as an expression. It is also useful simply to
322 compute values.
323 @end defun
324
325 @findex gdb.find_pc_line
326 @defun gdb.find_pc_line (pc)
327 Return the @code{gdb.Symtab_and_line} object corresponding to the
328 @var{pc} value. @xref{Symbol Tables In Python}. If an invalid
329 value of @var{pc} is passed as an argument, then the @code{symtab} and
330 @code{line} attributes of the returned @code{gdb.Symtab_and_line} object
331 will be @code{None} and 0 respectively. This is identical to
332 @code{gdb.current_progspace().find_pc_line(pc)} and is included for
333 historical compatibility.
334 @end defun
335
336 @findex gdb.post_event
337 @defun gdb.post_event (event)
338 Put @var{event}, a callable object taking no arguments, into
339 @value{GDBN}'s internal event queue. This callable will be invoked at
340 some later point, during @value{GDBN}'s event processing. Events
341 posted using @code{post_event} will be run in the order in which they
342 were posted; however, there is no way to know when they will be
343 processed relative to other events inside @value{GDBN}.
344
345 @value{GDBN} is not thread-safe. If your Python program uses multiple
346 threads, you must be careful to only call @value{GDBN}-specific
347 functions in the @value{GDBN} thread. @code{post_event} ensures
348 this. For example:
349
350 @smallexample
351 (@value{GDBP}) python
352 >import threading
353 >
354 >class Writer():
355 > def __init__(self, message):
356 > self.message = message;
357 > def __call__(self):
358 > gdb.write(self.message)
359 >
360 >class MyThread1 (threading.Thread):
361 > def run (self):
362 > gdb.post_event(Writer("Hello "))
363 >
364 >class MyThread2 (threading.Thread):
365 > def run (self):
366 > gdb.post_event(Writer("World\n"))
367 >
368 >MyThread1().start()
369 >MyThread2().start()
370 >end
371 (@value{GDBP}) Hello World
372 @end smallexample
373 @end defun
374
375 @findex gdb.write
376 @defun gdb.write (string @r{[}, stream{]})
377 Print a string to @value{GDBN}'s paginated output stream. The
378 optional @var{stream} determines the stream to print to. The default
379 stream is @value{GDBN}'s standard output stream. Possible stream
380 values are:
381
382 @table @code
383 @findex STDOUT
384 @findex gdb.STDOUT
385 @item gdb.STDOUT
386 @value{GDBN}'s standard output stream.
387
388 @findex STDERR
389 @findex gdb.STDERR
390 @item gdb.STDERR
391 @value{GDBN}'s standard error stream.
392
393 @findex STDLOG
394 @findex gdb.STDLOG
395 @item gdb.STDLOG
396 @value{GDBN}'s log stream (@pxref{Logging Output}).
397 @end table
398
399 Writing to @code{sys.stdout} or @code{sys.stderr} will automatically
400 call this function and will automatically direct the output to the
401 relevant stream.
402 @end defun
403
404 @findex gdb.flush
405 @defun gdb.flush ()
406 Flush the buffer of a @value{GDBN} paginated stream so that the
407 contents are displayed immediately. @value{GDBN} will flush the
408 contents of a stream automatically when it encounters a newline in the
409 buffer. The optional @var{stream} determines the stream to flush. The
410 default stream is @value{GDBN}'s standard output stream. Possible
411 stream values are:
412
413 @table @code
414 @findex STDOUT
415 @findex gdb.STDOUT
416 @item gdb.STDOUT
417 @value{GDBN}'s standard output stream.
418
419 @findex STDERR
420 @findex gdb.STDERR
421 @item gdb.STDERR
422 @value{GDBN}'s standard error stream.
423
424 @findex STDLOG
425 @findex gdb.STDLOG
426 @item gdb.STDLOG
427 @value{GDBN}'s log stream (@pxref{Logging Output}).
428
429 @end table
430
431 Flushing @code{sys.stdout} or @code{sys.stderr} will automatically
432 call this function for the relevant stream.
433 @end defun
434
435 @findex gdb.target_charset
436 @defun gdb.target_charset ()
437 Return the name of the current target character set (@pxref{Character
438 Sets}). This differs from @code{gdb.parameter('target-charset')} in
439 that @samp{auto} is never returned.
440 @end defun
441
442 @findex gdb.target_wide_charset
443 @defun gdb.target_wide_charset ()
444 Return the name of the current target wide character set
445 (@pxref{Character Sets}). This differs from
446 @code{gdb.parameter('target-wide-charset')} in that @samp{auto} is
447 never returned.
448 @end defun
449
450 @findex gdb.solib_name
451 @defun gdb.solib_name (address)
452 Return the name of the shared library holding the given @var{address}
453 as a string, or @code{None}. This is identical to
454 @code{gdb.current_progspace().solib_name(address)} and is included for
455 historical compatibility.
456 @end defun
457
458 @findex gdb.decode_line
459 @defun gdb.decode_line (@r{[}expression@r{]})
460 Return locations of the line specified by @var{expression}, or of the
461 current line if no argument was given. This function returns a Python
462 tuple containing two elements. The first element contains a string
463 holding any unparsed section of @var{expression} (or @code{None} if
464 the expression has been fully parsed). The second element contains
465 either @code{None} or another tuple that contains all the locations
466 that match the expression represented as @code{gdb.Symtab_and_line}
467 objects (@pxref{Symbol Tables In Python}). If @var{expression} is
468 provided, it is decoded the way that @value{GDBN}'s inbuilt
469 @code{break} or @code{edit} commands do (@pxref{Specify Location}).
470 @end defun
471
472 @defun gdb.prompt_hook (current_prompt)
473 @anchor{prompt_hook}
474
475 If @var{prompt_hook} is callable, @value{GDBN} will call the method
476 assigned to this operation before a prompt is displayed by
477 @value{GDBN}.
478
479 The parameter @code{current_prompt} contains the current @value{GDBN}
480 prompt. This method must return a Python string, or @code{None}. If
481 a string is returned, the @value{GDBN} prompt will be set to that
482 string. If @code{None} is returned, @value{GDBN} will continue to use
483 the current prompt.
484
485 Some prompts cannot be substituted in @value{GDBN}. Secondary prompts
486 such as those used by readline for command input, and annotation
487 related prompts are prohibited from being changed.
488 @end defun
489
490 @node Exception Handling
491 @subsubsection Exception Handling
492 @cindex python exceptions
493 @cindex exceptions, python
494
495 When executing the @code{python} command, Python exceptions
496 uncaught within the Python code are translated to calls to
497 @value{GDBN} error-reporting mechanism. If the command that called
498 @code{python} does not handle the error, @value{GDBN} will
499 terminate it and print an error message containing the Python
500 exception name, the associated value, and the Python call stack
501 backtrace at the point where the exception was raised. Example:
502
503 @smallexample
504 (@value{GDBP}) python print foo
505 Traceback (most recent call last):
506 File "<string>", line 1, in <module>
507 NameError: name 'foo' is not defined
508 @end smallexample
509
510 @value{GDBN} errors that happen in @value{GDBN} commands invoked by
511 Python code are converted to Python exceptions. The type of the
512 Python exception depends on the error.
513
514 @ftable @code
515 @item gdb.error
516 This is the base class for most exceptions generated by @value{GDBN}.
517 It is derived from @code{RuntimeError}, for compatibility with earlier
518 versions of @value{GDBN}.
519
520 If an error occurring in @value{GDBN} does not fit into some more
521 specific category, then the generated exception will have this type.
522
523 @item gdb.MemoryError
524 This is a subclass of @code{gdb.error} which is thrown when an
525 operation tried to access invalid memory in the inferior.
526
527 @item KeyboardInterrupt
528 User interrupt (via @kbd{C-c} or by typing @kbd{q} at a pagination
529 prompt) is translated to a Python @code{KeyboardInterrupt} exception.
530 @end ftable
531
532 In all cases, your exception handler will see the @value{GDBN} error
533 message as its value and the Python call stack backtrace at the Python
534 statement closest to where the @value{GDBN} error occured as the
535 traceback.
536
537
538 When implementing @value{GDBN} commands in Python via
539 @code{gdb.Command}, or functions via @code{gdb.Function}, it is useful
540 to be able to throw an exception that doesn't cause a traceback to be
541 printed. For example, the user may have invoked the command
542 incorrectly. @value{GDBN} provides a special exception class that can
543 be used for this purpose.
544
545 @ftable @code
546 @item gdb.GdbError
547 When thrown from a command or function, this exception will cause the
548 command or function to fail, but the Python stack will not be
549 displayed. @value{GDBN} does not throw this exception itself, but
550 rather recognizes it when thrown from user Python code. Example:
551
552 @smallexample
553 (gdb) python
554 >class HelloWorld (gdb.Command):
555 > """Greet the whole world."""
556 > def __init__ (self):
557 > super (HelloWorld, self).__init__ ("hello-world", gdb.COMMAND_USER)
558 > def invoke (self, args, from_tty):
559 > argv = gdb.string_to_argv (args)
560 > if len (argv) != 0:
561 > raise gdb.GdbError ("hello-world takes no arguments")
562 > print "Hello, World!"
563 >HelloWorld ()
564 >end
565 (gdb) hello-world 42
566 hello-world takes no arguments
567 @end smallexample
568 @end ftable
569
570 @node Values From Inferior
571 @subsubsection Values From Inferior
572 @cindex values from inferior, with Python
573 @cindex python, working with values from inferior
574
575 @cindex @code{gdb.Value}
576 @value{GDBN} provides values it obtains from the inferior program in
577 an object of type @code{gdb.Value}. @value{GDBN} uses this object
578 for its internal bookkeeping of the inferior's values, and for
579 fetching values when necessary.
580
581 Inferior values that are simple scalars can be used directly in
582 Python expressions that are valid for the value's data type. Here's
583 an example for an integer or floating-point value @code{some_val}:
584
585 @smallexample
586 bar = some_val + 2
587 @end smallexample
588
589 @noindent
590 As result of this, @code{bar} will also be a @code{gdb.Value} object
591 whose values are of the same type as those of @code{some_val}. Valid
592 Python operations can also be performed on @code{gdb.Value} objects
593 representing a @code{struct} or @code{class} object. For such cases,
594 the overloaded operator (if present), is used to perform the operation.
595 For example, if @code{val1} and @code{val2} are @code{gdb.Value} objects
596 representing instances of a @code{class} which overloads the @code{+}
597 operator, then one can use the @code{+} operator in their Python script
598 as follows:
599
600 @smallexample
601 val3 = val1 + val2
602 @end smallexample
603
604 @noindent
605 The result of the operation @code{val3} is also a @code{gdb.Value}
606 object corresponding to the value returned by the overloaded @code{+}
607 operator. In general, overloaded operators are invoked for the
608 following operations: @code{+} (binary addition), @code{-} (binary
609 subtraction), @code{*} (multiplication), @code{/}, @code{%}, @code{<<},
610 @code{>>}, @code{|}, @code{&}, @code{^}.
611
612 Inferior values that are structures or instances of some class can
613 be accessed using the Python @dfn{dictionary syntax}. For example, if
614 @code{some_val} is a @code{gdb.Value} instance holding a structure, you
615 can access its @code{foo} element with:
616
617 @smallexample
618 bar = some_val['foo']
619 @end smallexample
620
621 @cindex getting structure elements using gdb.Field objects as subscripts
622 Again, @code{bar} will also be a @code{gdb.Value} object. Structure
623 elements can also be accessed by using @code{gdb.Field} objects as
624 subscripts (@pxref{Types In Python}, for more information on
625 @code{gdb.Field} objects). For example, if @code{foo_field} is a
626 @code{gdb.Field} object corresponding to element @code{foo} of the above
627 structure, then @code{bar} can also be accessed as follows:
628
629 @smallexample
630 bar = some_val[foo_field]
631 @end smallexample
632
633 A @code{gdb.Value} that represents a function can be executed via
634 inferior function call. Any arguments provided to the call must match
635 the function's prototype, and must be provided in the order specified
636 by that prototype.
637
638 For example, @code{some_val} is a @code{gdb.Value} instance
639 representing a function that takes two integers as arguments. To
640 execute this function, call it like so:
641
642 @smallexample
643 result = some_val (10,20)
644 @end smallexample
645
646 Any values returned from a function call will be stored as a
647 @code{gdb.Value}.
648
649 The following attributes are provided:
650
651 @defvar Value.address
652 If this object is addressable, this read-only attribute holds a
653 @code{gdb.Value} object representing the address. Otherwise,
654 this attribute holds @code{None}.
655 @end defvar
656
657 @cindex optimized out value in Python
658 @defvar Value.is_optimized_out
659 This read-only boolean attribute is true if the compiler optimized out
660 this value, thus it is not available for fetching from the inferior.
661 @end defvar
662
663 @defvar Value.type
664 The type of this @code{gdb.Value}. The value of this attribute is a
665 @code{gdb.Type} object (@pxref{Types In Python}).
666 @end defvar
667
668 @defvar Value.dynamic_type
669 The dynamic type of this @code{gdb.Value}. This uses the object's
670 virtual table and the C@t{++} run-time type information
671 (@acronym{RTTI}) to determine the dynamic type of the value. If this
672 value is of class type, it will return the class in which the value is
673 embedded, if any. If this value is of pointer or reference to a class
674 type, it will compute the dynamic type of the referenced object, and
675 return a pointer or reference to that type, respectively. In all
676 other cases, it will return the value's static type.
677
678 Note that this feature will only work when debugging a C@t{++} program
679 that includes @acronym{RTTI} for the object in question. Otherwise,
680 it will just return the static type of the value as in @kbd{ptype foo}
681 (@pxref{Symbols, ptype}).
682 @end defvar
683
684 @defvar Value.is_lazy
685 The value of this read-only boolean attribute is @code{True} if this
686 @code{gdb.Value} has not yet been fetched from the inferior.
687 @value{GDBN} does not fetch values until necessary, for efficiency.
688 For example:
689
690 @smallexample
691 myval = gdb.parse_and_eval ('somevar')
692 @end smallexample
693
694 The value of @code{somevar} is not fetched at this time. It will be
695 fetched when the value is needed, or when the @code{fetch_lazy}
696 method is invoked.
697 @end defvar
698
699 The following methods are provided:
700
701 @defun Value.__init__ (@var{val})
702 Many Python values can be converted directly to a @code{gdb.Value} via
703 this object initializer. Specifically:
704
705 @table @asis
706 @item Python boolean
707 A Python boolean is converted to the boolean type from the current
708 language.
709
710 @item Python integer
711 A Python integer is converted to the C @code{long} type for the
712 current architecture.
713
714 @item Python long
715 A Python long is converted to the C @code{long long} type for the
716 current architecture.
717
718 @item Python float
719 A Python float is converted to the C @code{double} type for the
720 current architecture.
721
722 @item Python string
723 A Python string is converted to a target string in the current target
724 language using the current target encoding.
725 If a character cannot be represented in the current target encoding,
726 then an exception is thrown.
727
728 @item @code{gdb.Value}
729 If @code{val} is a @code{gdb.Value}, then a copy of the value is made.
730
731 @item @code{gdb.LazyString}
732 If @code{val} is a @code{gdb.LazyString} (@pxref{Lazy Strings In
733 Python}), then the lazy string's @code{value} method is called, and
734 its result is used.
735 @end table
736 @end defun
737
738 @defun Value.__init__ (@var{val}, @var{type})
739 This second form of the @code{gdb.Value} constructor returns a
740 @code{gdb.Value} of type @var{type} where the value contents are taken
741 from the Python buffer object specified by @var{val}. The number of
742 bytes in the Python buffer object must be greater than or equal to the
743 size of @var{type}.
744 @end defun
745
746 @defun Value.cast (type)
747 Return a new instance of @code{gdb.Value} that is the result of
748 casting this instance to the type described by @var{type}, which must
749 be a @code{gdb.Type} object. If the cast cannot be performed for some
750 reason, this method throws an exception.
751 @end defun
752
753 @defun Value.dereference ()
754 For pointer data types, this method returns a new @code{gdb.Value} object
755 whose contents is the object pointed to by the pointer. For example, if
756 @code{foo} is a C pointer to an @code{int}, declared in your C program as
757
758 @smallexample
759 int *foo;
760 @end smallexample
761
762 @noindent
763 then you can use the corresponding @code{gdb.Value} to access what
764 @code{foo} points to like this:
765
766 @smallexample
767 bar = foo.dereference ()
768 @end smallexample
769
770 The result @code{bar} will be a @code{gdb.Value} object holding the
771 value pointed to by @code{foo}.
772
773 A similar function @code{Value.referenced_value} exists which also
774 returns @code{gdb.Value} objects corresponding to the values pointed to
775 by pointer values (and additionally, values referenced by reference
776 values). However, the behavior of @code{Value.dereference}
777 differs from @code{Value.referenced_value} by the fact that the
778 behavior of @code{Value.dereference} is identical to applying the C
779 unary operator @code{*} on a given value. For example, consider a
780 reference to a pointer @code{ptrref}, declared in your C@t{++} program
781 as
782
783 @smallexample
784 typedef int *intptr;
785 ...
786 int val = 10;
787 intptr ptr = &val;
788 intptr &ptrref = ptr;
789 @end smallexample
790
791 Though @code{ptrref} is a reference value, one can apply the method
792 @code{Value.dereference} to the @code{gdb.Value} object corresponding
793 to it and obtain a @code{gdb.Value} which is identical to that
794 corresponding to @code{val}. However, if you apply the method
795 @code{Value.referenced_value}, the result would be a @code{gdb.Value}
796 object identical to that corresponding to @code{ptr}.
797
798 @smallexample
799 py_ptrref = gdb.parse_and_eval ("ptrref")
800 py_val = py_ptrref.dereference ()
801 py_ptr = py_ptrref.referenced_value ()
802 @end smallexample
803
804 The @code{gdb.Value} object @code{py_val} is identical to that
805 corresponding to @code{val}, and @code{py_ptr} is identical to that
806 corresponding to @code{ptr}. In general, @code{Value.dereference} can
807 be applied whenever the C unary operator @code{*} can be applied
808 to the corresponding C value. For those cases where applying both
809 @code{Value.dereference} and @code{Value.referenced_value} is allowed,
810 the results obtained need not be identical (as we have seen in the above
811 example). The results are however identical when applied on
812 @code{gdb.Value} objects corresponding to pointers (@code{gdb.Value}
813 objects with type code @code{TYPE_CODE_PTR}) in a C/C@t{++} program.
814 @end defun
815
816 @defun Value.referenced_value ()
817 For pointer or reference data types, this method returns a new
818 @code{gdb.Value} object corresponding to the value referenced by the
819 pointer/reference value. For pointer data types,
820 @code{Value.dereference} and @code{Value.referenced_value} produce
821 identical results. The difference between these methods is that
822 @code{Value.dereference} cannot get the values referenced by reference
823 values. For example, consider a reference to an @code{int}, declared
824 in your C@t{++} program as
825
826 @smallexample
827 int val = 10;
828 int &ref = val;
829 @end smallexample
830
831 @noindent
832 then applying @code{Value.dereference} to the @code{gdb.Value} object
833 corresponding to @code{ref} will result in an error, while applying
834 @code{Value.referenced_value} will result in a @code{gdb.Value} object
835 identical to that corresponding to @code{val}.
836
837 @smallexample
838 py_ref = gdb.parse_and_eval ("ref")
839 er_ref = py_ref.dereference () # Results in error
840 py_val = py_ref.referenced_value () # Returns the referenced value
841 @end smallexample
842
843 The @code{gdb.Value} object @code{py_val} is identical to that
844 corresponding to @code{val}.
845 @end defun
846
847 @defun Value.reference_value ()
848 Return a @code{gdb.Value} object which is a reference to the value
849 encapsulated by this instance.
850 @end defun
851
852 @defun Value.const_value ()
853 Return a @code{gdb.Value} object which is a @code{const} version of the
854 value encapsulated by this instance.
855 @end defun
856
857 @defun Value.dynamic_cast (type)
858 Like @code{Value.cast}, but works as if the C@t{++} @code{dynamic_cast}
859 operator were used. Consult a C@t{++} reference for details.
860 @end defun
861
862 @defun Value.reinterpret_cast (type)
863 Like @code{Value.cast}, but works as if the C@t{++} @code{reinterpret_cast}
864 operator were used. Consult a C@t{++} reference for details.
865 @end defun
866
867 @defun Value.format_string (...)
868 Convert a @code{gdb.Value} to a string, similarly to what the @code{print}
869 command does. Invoked with no arguments, this is equivalent to calling
870 the @code{str} function on the @code{gdb.Value}. The representation of
871 the same value may change across different versions of @value{GDBN}, so
872 you shouldn't, for instance, parse the strings returned by this method.
873
874 All the arguments are keyword only. If an argument is not specified, the
875 current global default setting is used.
876
877 @table @code
878 @item raw
879 @code{True} if pretty-printers (@pxref{Pretty Printing}) should not be
880 used to format the value. @code{False} if enabled pretty-printers
881 matching the type represented by the @code{gdb.Value} should be used to
882 format it.
883
884 @item pretty_arrays
885 @code{True} if arrays should be pretty printed to be more convenient to
886 read, @code{False} if they shouldn't (see @code{set print array} in
887 @ref{Print Settings}).
888
889 @item pretty_structs
890 @code{True} if structs should be pretty printed to be more convenient to
891 read, @code{False} if they shouldn't (see @code{set print pretty} in
892 @ref{Print Settings}).
893
894 @item array_indexes
895 @code{True} if array indexes should be included in the string
896 representation of arrays, @code{False} if they shouldn't (see @code{set
897 print array-indexes} in @ref{Print Settings}).
898
899 @item symbols
900 @code{True} if the string representation of a pointer should include the
901 corresponding symbol name (if one exists), @code{False} if it shouldn't
902 (see @code{set print symbol} in @ref{Print Settings}).
903
904 @item unions
905 @code{True} if unions which are contained in other structures or unions
906 should be expanded, @code{False} if they shouldn't (see @code{set print
907 union} in @ref{Print Settings}).
908
909 @item deref_refs
910 @code{True} if C@t{++} references should be resolved to the value they
911 refer to, @code{False} (the default) if they shouldn't. Note that, unlike
912 for the @code{print} command, references are not automatically expanded
913 when using the @code{format_string} method or the @code{str}
914 function. There is no global @code{print} setting to change the default
915 behaviour.
916
917 @item actual_objects
918 @code{True} if the representation of a pointer to an object should
919 identify the @emph{actual} (derived) type of the object rather than the
920 @emph{declared} type, using the virtual function table. @code{False} if
921 the @emph{declared} type should be used. (See @code{set print object} in
922 @ref{Print Settings}).
923
924 @item static_fields
925 @code{True} if static members should be included in the string
926 representation of a C@t{++} object, @code{False} if they shouldn't (see
927 @code{set print static-members} in @ref{Print Settings}).
928
929 @item max_elements
930 Number of array elements to print, or @code{0} to print an unlimited
931 number of elements (see @code{set print elements} in @ref{Print
932 Settings}).
933
934 @item max_depth
935 The maximum depth to print for nested structs and unions, or @code{-1}
936 to print an unlimited number of elements (see @code{set print
937 max-depth} in @ref{Print Settings}).
938
939 @item repeat_threshold
940 Set the threshold for suppressing display of repeated array elements, or
941 @code{0} to represent all elements, even if repeated. (See @code{set
942 print repeats} in @ref{Print Settings}).
943
944 @item format
945 A string containing a single character representing the format to use for
946 the returned string. For instance, @code{'x'} is equivalent to using the
947 @value{GDBN} command @code{print} with the @code{/x} option and formats
948 the value as a hexadecimal number.
949 @end table
950 @end defun
951
952 @defun Value.string (@r{[}encoding@r{[}, errors@r{[}, length@r{]]]})
953 If this @code{gdb.Value} represents a string, then this method
954 converts the contents to a Python string. Otherwise, this method will
955 throw an exception.
956
957 Values are interpreted as strings according to the rules of the
958 current language. If the optional length argument is given, the
959 string will be converted to that length, and will include any embedded
960 zeroes that the string may contain. Otherwise, for languages
961 where the string is zero-terminated, the entire string will be
962 converted.
963
964 For example, in C-like languages, a value is a string if it is a pointer
965 to or an array of characters or ints of type @code{wchar_t}, @code{char16_t},
966 or @code{char32_t}.
967
968 If the optional @var{encoding} argument is given, it must be a string
969 naming the encoding of the string in the @code{gdb.Value}, such as
970 @code{"ascii"}, @code{"iso-8859-6"} or @code{"utf-8"}. It accepts
971 the same encodings as the corresponding argument to Python's
972 @code{string.decode} method, and the Python codec machinery will be used
973 to convert the string. If @var{encoding} is not given, or if
974 @var{encoding} is the empty string, then either the @code{target-charset}
975 (@pxref{Character Sets}) will be used, or a language-specific encoding
976 will be used, if the current language is able to supply one.
977
978 The optional @var{errors} argument is the same as the corresponding
979 argument to Python's @code{string.decode} method.
980
981 If the optional @var{length} argument is given, the string will be
982 fetched and converted to the given length.
983 @end defun
984
985 @defun Value.lazy_string (@r{[}encoding @r{[}, length@r{]]})
986 If this @code{gdb.Value} represents a string, then this method
987 converts the contents to a @code{gdb.LazyString} (@pxref{Lazy Strings
988 In Python}). Otherwise, this method will throw an exception.
989
990 If the optional @var{encoding} argument is given, it must be a string
991 naming the encoding of the @code{gdb.LazyString}. Some examples are:
992 @samp{ascii}, @samp{iso-8859-6} or @samp{utf-8}. If the
993 @var{encoding} argument is an encoding that @value{GDBN} does
994 recognize, @value{GDBN} will raise an error.
995
996 When a lazy string is printed, the @value{GDBN} encoding machinery is
997 used to convert the string during printing. If the optional
998 @var{encoding} argument is not provided, or is an empty string,
999 @value{GDBN} will automatically select the encoding most suitable for
1000 the string type. For further information on encoding in @value{GDBN}
1001 please see @ref{Character Sets}.
1002
1003 If the optional @var{length} argument is given, the string will be
1004 fetched and encoded to the length of characters specified. If
1005 the @var{length} argument is not provided, the string will be fetched
1006 and encoded until a null of appropriate width is found.
1007 @end defun
1008
1009 @defun Value.fetch_lazy ()
1010 If the @code{gdb.Value} object is currently a lazy value
1011 (@code{gdb.Value.is_lazy} is @code{True}), then the value is
1012 fetched from the inferior. Any errors that occur in the process
1013 will produce a Python exception.
1014
1015 If the @code{gdb.Value} object is not a lazy value, this method
1016 has no effect.
1017
1018 This method does not return a value.
1019 @end defun
1020
1021
1022 @node Types In Python
1023 @subsubsection Types In Python
1024 @cindex types in Python
1025 @cindex Python, working with types
1026
1027 @tindex gdb.Type
1028 @value{GDBN} represents types from the inferior using the class
1029 @code{gdb.Type}.
1030
1031 The following type-related functions are available in the @code{gdb}
1032 module:
1033
1034 @findex gdb.lookup_type
1035 @defun gdb.lookup_type (name @r{[}, block@r{]})
1036 This function looks up a type by its @var{name}, which must be a string.
1037
1038 If @var{block} is given, then @var{name} is looked up in that scope.
1039 Otherwise, it is searched for globally.
1040
1041 Ordinarily, this function will return an instance of @code{gdb.Type}.
1042 If the named type cannot be found, it will throw an exception.
1043 @end defun
1044
1045 If the type is a structure or class type, or an enum type, the fields
1046 of that type can be accessed using the Python @dfn{dictionary syntax}.
1047 For example, if @code{some_type} is a @code{gdb.Type} instance holding
1048 a structure type, you can access its @code{foo} field with:
1049
1050 @smallexample
1051 bar = some_type['foo']
1052 @end smallexample
1053
1054 @code{bar} will be a @code{gdb.Field} object; see below under the
1055 description of the @code{Type.fields} method for a description of the
1056 @code{gdb.Field} class.
1057
1058 An instance of @code{Type} has the following attributes:
1059
1060 @defvar Type.alignof
1061 The alignment of this type, in bytes. Type alignment comes from the
1062 debugging information; if it was not specified, then @value{GDBN} will
1063 use the relevant ABI to try to determine the alignment. In some
1064 cases, even this is not possible, and zero will be returned.
1065 @end defvar
1066
1067 @defvar Type.code
1068 The type code for this type. The type code will be one of the
1069 @code{TYPE_CODE_} constants defined below.
1070 @end defvar
1071
1072 @defvar Type.dynamic
1073 A boolean indicating whether this type is dynamic. In some
1074 situations, such as Rust @code{enum} types or Ada variant records, the
1075 concrete type of a value may vary depending on its contents. That is,
1076 the declared type of a variable, or the type returned by
1077 @code{gdb.lookup_type} may be dynamic; while the type of the
1078 variable's value will be a concrete instance of that dynamic type.
1079
1080 For example, consider this code:
1081 @smallexample
1082 int n;
1083 int array[n];
1084 @end smallexample
1085
1086 Here, at least conceptually (whether your compiler actually does this
1087 is a separate issue), examining @w{@code{gdb.lookup_symbol("array", ...).type}}
1088 could yield a @code{gdb.Type} which reports a size of @code{None}.
1089 This is the dynamic type.
1090
1091 However, examining @code{gdb.parse_and_eval("array").type} would yield
1092 a concrete type, whose length would be known.
1093 @end defvar
1094
1095 @defvar Type.name
1096 The name of this type. If this type has no name, then @code{None}
1097 is returned.
1098 @end defvar
1099
1100 @defvar Type.sizeof
1101 The size of this type, in target @code{char} units. Usually, a
1102 target's @code{char} type will be an 8-bit byte. However, on some
1103 unusual platforms, this type may have a different size. A dynamic
1104 type may not have a fixed size; in this case, this attribute's value
1105 will be @code{None}.
1106 @end defvar
1107
1108 @defvar Type.tag
1109 The tag name for this type. The tag name is the name after
1110 @code{struct}, @code{union}, or @code{enum} in C and C@t{++}; not all
1111 languages have this concept. If this type has no tag name, then
1112 @code{None} is returned.
1113 @end defvar
1114
1115 @defvar Type.objfile
1116 The @code{gdb.Objfile} that this type was defined in, or @code{None} if
1117 there is no associated objfile.
1118 @end defvar
1119
1120 The following methods are provided:
1121
1122 @defun Type.fields ()
1123 For structure and union types, this method returns the fields. Range
1124 types have two fields, the minimum and maximum values. Enum types
1125 have one field per enum constant. Function and method types have one
1126 field per parameter. The base types of C@t{++} classes are also
1127 represented as fields. If the type has no fields, or does not fit
1128 into one of these categories, an empty sequence will be returned.
1129
1130 Each field is a @code{gdb.Field} object, with some pre-defined attributes:
1131 @table @code
1132 @item bitpos
1133 This attribute is not available for @code{enum} or @code{static}
1134 (as in C@t{++}) fields. The value is the position, counting
1135 in bits, from the start of the containing type. Note that, in a
1136 dynamic type, the position of a field may not be constant. In this
1137 case, the value will be @code{None}. Also, a dynamic type may have
1138 fields that do not appear in a corresponding concrete type.
1139
1140 @item enumval
1141 This attribute is only available for @code{enum} fields, and its value
1142 is the enumeration member's integer representation.
1143
1144 @item name
1145 The name of the field, or @code{None} for anonymous fields.
1146
1147 @item artificial
1148 This is @code{True} if the field is artificial, usually meaning that
1149 it was provided by the compiler and not the user. This attribute is
1150 always provided, and is @code{False} if the field is not artificial.
1151
1152 @item is_base_class
1153 This is @code{True} if the field represents a base class of a C@t{++}
1154 structure. This attribute is always provided, and is @code{False}
1155 if the field is not a base class of the type that is the argument of
1156 @code{fields}, or if that type was not a C@t{++} class.
1157
1158 @item bitsize
1159 If the field is packed, or is a bitfield, then this will have a
1160 non-zero value, which is the size of the field in bits. Otherwise,
1161 this will be zero; in this case the field's size is given by its type.
1162
1163 @item type
1164 The type of the field. This is usually an instance of @code{Type},
1165 but it can be @code{None} in some situations.
1166
1167 @item parent_type
1168 The type which contains this field. This is an instance of
1169 @code{gdb.Type}.
1170 @end table
1171 @end defun
1172
1173 @defun Type.array (@var{n1} @r{[}, @var{n2}@r{]})
1174 Return a new @code{gdb.Type} object which represents an array of this
1175 type. If one argument is given, it is the inclusive upper bound of
1176 the array; in this case the lower bound is zero. If two arguments are
1177 given, the first argument is the lower bound of the array, and the
1178 second argument is the upper bound of the array. An array's length
1179 must not be negative, but the bounds can be.
1180 @end defun
1181
1182 @defun Type.vector (@var{n1} @r{[}, @var{n2}@r{]})
1183 Return a new @code{gdb.Type} object which represents a vector of this
1184 type. If one argument is given, it is the inclusive upper bound of
1185 the vector; in this case the lower bound is zero. If two arguments are
1186 given, the first argument is the lower bound of the vector, and the
1187 second argument is the upper bound of the vector. A vector's length
1188 must not be negative, but the bounds can be.
1189
1190 The difference between an @code{array} and a @code{vector} is that
1191 arrays behave like in C: when used in expressions they decay to a pointer
1192 to the first element whereas vectors are treated as first class values.
1193 @end defun
1194
1195 @defun Type.const ()
1196 Return a new @code{gdb.Type} object which represents a
1197 @code{const}-qualified variant of this type.
1198 @end defun
1199
1200 @defun Type.volatile ()
1201 Return a new @code{gdb.Type} object which represents a
1202 @code{volatile}-qualified variant of this type.
1203 @end defun
1204
1205 @defun Type.unqualified ()
1206 Return a new @code{gdb.Type} object which represents an unqualified
1207 variant of this type. That is, the result is neither @code{const} nor
1208 @code{volatile}.
1209 @end defun
1210
1211 @defun Type.range ()
1212 Return a Python @code{Tuple} object that contains two elements: the
1213 low bound of the argument type and the high bound of that type. If
1214 the type does not have a range, @value{GDBN} will raise a
1215 @code{gdb.error} exception (@pxref{Exception Handling}).
1216 @end defun
1217
1218 @defun Type.reference ()
1219 Return a new @code{gdb.Type} object which represents a reference to this
1220 type.
1221 @end defun
1222
1223 @defun Type.pointer ()
1224 Return a new @code{gdb.Type} object which represents a pointer to this
1225 type.
1226 @end defun
1227
1228 @defun Type.strip_typedefs ()
1229 Return a new @code{gdb.Type} that represents the real type,
1230 after removing all layers of typedefs.
1231 @end defun
1232
1233 @defun Type.target ()
1234 Return a new @code{gdb.Type} object which represents the target type
1235 of this type.
1236
1237 For a pointer type, the target type is the type of the pointed-to
1238 object. For an array type (meaning C-like arrays), the target type is
1239 the type of the elements of the array. For a function or method type,
1240 the target type is the type of the return value. For a complex type,
1241 the target type is the type of the elements. For a typedef, the
1242 target type is the aliased type.
1243
1244 If the type does not have a target, this method will throw an
1245 exception.
1246 @end defun
1247
1248 @defun Type.template_argument (n @r{[}, block@r{]})
1249 If this @code{gdb.Type} is an instantiation of a template, this will
1250 return a new @code{gdb.Value} or @code{gdb.Type} which represents the
1251 value of the @var{n}th template argument (indexed starting at 0).
1252
1253 If this @code{gdb.Type} is not a template type, or if the type has fewer
1254 than @var{n} template arguments, this will throw an exception.
1255 Ordinarily, only C@t{++} code will have template types.
1256
1257 If @var{block} is given, then @var{name} is looked up in that scope.
1258 Otherwise, it is searched for globally.
1259 @end defun
1260
1261 @defun Type.optimized_out ()
1262 Return @code{gdb.Value} instance of this type whose value is optimized
1263 out. This allows a frame decorator to indicate that the value of an
1264 argument or a local variable is not known.
1265 @end defun
1266
1267 Each type has a code, which indicates what category this type falls
1268 into. The available type categories are represented by constants
1269 defined in the @code{gdb} module:
1270
1271 @vtable @code
1272 @vindex TYPE_CODE_PTR
1273 @item gdb.TYPE_CODE_PTR
1274 The type is a pointer.
1275
1276 @vindex TYPE_CODE_ARRAY
1277 @item gdb.TYPE_CODE_ARRAY
1278 The type is an array.
1279
1280 @vindex TYPE_CODE_STRUCT
1281 @item gdb.TYPE_CODE_STRUCT
1282 The type is a structure.
1283
1284 @vindex TYPE_CODE_UNION
1285 @item gdb.TYPE_CODE_UNION
1286 The type is a union.
1287
1288 @vindex TYPE_CODE_ENUM
1289 @item gdb.TYPE_CODE_ENUM
1290 The type is an enum.
1291
1292 @vindex TYPE_CODE_FLAGS
1293 @item gdb.TYPE_CODE_FLAGS
1294 A bit flags type, used for things such as status registers.
1295
1296 @vindex TYPE_CODE_FUNC
1297 @item gdb.TYPE_CODE_FUNC
1298 The type is a function.
1299
1300 @vindex TYPE_CODE_INT
1301 @item gdb.TYPE_CODE_INT
1302 The type is an integer type.
1303
1304 @vindex TYPE_CODE_FLT
1305 @item gdb.TYPE_CODE_FLT
1306 A floating point type.
1307
1308 @vindex TYPE_CODE_VOID
1309 @item gdb.TYPE_CODE_VOID
1310 The special type @code{void}.
1311
1312 @vindex TYPE_CODE_SET
1313 @item gdb.TYPE_CODE_SET
1314 A Pascal set type.
1315
1316 @vindex TYPE_CODE_RANGE
1317 @item gdb.TYPE_CODE_RANGE
1318 A range type, that is, an integer type with bounds.
1319
1320 @vindex TYPE_CODE_STRING
1321 @item gdb.TYPE_CODE_STRING
1322 A string type. Note that this is only used for certain languages with
1323 language-defined string types; C strings are not represented this way.
1324
1325 @vindex TYPE_CODE_BITSTRING
1326 @item gdb.TYPE_CODE_BITSTRING
1327 A string of bits. It is deprecated.
1328
1329 @vindex TYPE_CODE_ERROR
1330 @item gdb.TYPE_CODE_ERROR
1331 An unknown or erroneous type.
1332
1333 @vindex TYPE_CODE_METHOD
1334 @item gdb.TYPE_CODE_METHOD
1335 A method type, as found in C@t{++}.
1336
1337 @vindex TYPE_CODE_METHODPTR
1338 @item gdb.TYPE_CODE_METHODPTR
1339 A pointer-to-member-function.
1340
1341 @vindex TYPE_CODE_MEMBERPTR
1342 @item gdb.TYPE_CODE_MEMBERPTR
1343 A pointer-to-member.
1344
1345 @vindex TYPE_CODE_REF
1346 @item gdb.TYPE_CODE_REF
1347 A reference type.
1348
1349 @vindex TYPE_CODE_RVALUE_REF
1350 @item gdb.TYPE_CODE_RVALUE_REF
1351 A C@t{++}11 rvalue reference type.
1352
1353 @vindex TYPE_CODE_CHAR
1354 @item gdb.TYPE_CODE_CHAR
1355 A character type.
1356
1357 @vindex TYPE_CODE_BOOL
1358 @item gdb.TYPE_CODE_BOOL
1359 A boolean type.
1360
1361 @vindex TYPE_CODE_COMPLEX
1362 @item gdb.TYPE_CODE_COMPLEX
1363 A complex float type.
1364
1365 @vindex TYPE_CODE_TYPEDEF
1366 @item gdb.TYPE_CODE_TYPEDEF
1367 A typedef to some other type.
1368
1369 @vindex TYPE_CODE_NAMESPACE
1370 @item gdb.TYPE_CODE_NAMESPACE
1371 A C@t{++} namespace.
1372
1373 @vindex TYPE_CODE_DECFLOAT
1374 @item gdb.TYPE_CODE_DECFLOAT
1375 A decimal floating point type.
1376
1377 @vindex TYPE_CODE_INTERNAL_FUNCTION
1378 @item gdb.TYPE_CODE_INTERNAL_FUNCTION
1379 A function internal to @value{GDBN}. This is the type used to represent
1380 convenience functions.
1381 @end vtable
1382
1383 Further support for types is provided in the @code{gdb.types}
1384 Python module (@pxref{gdb.types}).
1385
1386 @node Pretty Printing API
1387 @subsubsection Pretty Printing API
1388 @cindex python pretty printing api
1389
1390 A pretty-printer is just an object that holds a value and implements a
1391 specific interface, defined here. An example output is provided
1392 (@pxref{Pretty Printing}).
1393
1394 @defun pretty_printer.children (self)
1395 @value{GDBN} will call this method on a pretty-printer to compute the
1396 children of the pretty-printer's value.
1397
1398 This method must return an object conforming to the Python iterator
1399 protocol. Each item returned by the iterator must be a tuple holding
1400 two elements. The first element is the ``name'' of the child; the
1401 second element is the child's value. The value can be any Python
1402 object which is convertible to a @value{GDBN} value.
1403
1404 This method is optional. If it does not exist, @value{GDBN} will act
1405 as though the value has no children.
1406
1407 For efficiency, the @code{children} method should lazily compute its
1408 results. This will let @value{GDBN} read as few elements as
1409 necessary, for example when various print settings (@pxref{Print
1410 Settings}) or @code{-var-list-children} (@pxref{GDB/MI Variable
1411 Objects}) limit the number of elements to be displayed.
1412
1413 Children may be hidden from display based on the value of @samp{set
1414 print max-depth} (@pxref{Print Settings}).
1415 @end defun
1416
1417 @defun pretty_printer.display_hint (self)
1418 The CLI may call this method and use its result to change the
1419 formatting of a value. The result will also be supplied to an MI
1420 consumer as a @samp{displayhint} attribute of the variable being
1421 printed.
1422
1423 This method is optional. If it does exist, this method must return a
1424 string or the special value @code{None}.
1425
1426 Some display hints are predefined by @value{GDBN}:
1427
1428 @table @samp
1429 @item array
1430 Indicate that the object being printed is ``array-like''. The CLI
1431 uses this to respect parameters such as @code{set print elements} and
1432 @code{set print array}.
1433
1434 @item map
1435 Indicate that the object being printed is ``map-like'', and that the
1436 children of this value can be assumed to alternate between keys and
1437 values.
1438
1439 @item string
1440 Indicate that the object being printed is ``string-like''. If the
1441 printer's @code{to_string} method returns a Python string of some
1442 kind, then @value{GDBN} will call its internal language-specific
1443 string-printing function to format the string. For the CLI this means
1444 adding quotation marks, possibly escaping some characters, respecting
1445 @code{set print elements}, and the like.
1446 @end table
1447
1448 The special value @code{None} causes @value{GDBN} to apply the default
1449 display rules.
1450 @end defun
1451
1452 @defun pretty_printer.to_string (self)
1453 @value{GDBN} will call this method to display the string
1454 representation of the value passed to the object's constructor.
1455
1456 When printing from the CLI, if the @code{to_string} method exists,
1457 then @value{GDBN} will prepend its result to the values returned by
1458 @code{children}. Exactly how this formatting is done is dependent on
1459 the display hint, and may change as more hints are added. Also,
1460 depending on the print settings (@pxref{Print Settings}), the CLI may
1461 print just the result of @code{to_string} in a stack trace, omitting
1462 the result of @code{children}.
1463
1464 If this method returns a string, it is printed verbatim.
1465
1466 Otherwise, if this method returns an instance of @code{gdb.Value},
1467 then @value{GDBN} prints this value. This may result in a call to
1468 another pretty-printer.
1469
1470 If instead the method returns a Python value which is convertible to a
1471 @code{gdb.Value}, then @value{GDBN} performs the conversion and prints
1472 the resulting value. Again, this may result in a call to another
1473 pretty-printer. Python scalars (integers, floats, and booleans) and
1474 strings are convertible to @code{gdb.Value}; other types are not.
1475
1476 Finally, if this method returns @code{None} then no further operations
1477 are peformed in this method and nothing is printed.
1478
1479 If the result is not one of these types, an exception is raised.
1480 @end defun
1481
1482 @value{GDBN} provides a function which can be used to look up the
1483 default pretty-printer for a @code{gdb.Value}:
1484
1485 @findex gdb.default_visualizer
1486 @defun gdb.default_visualizer (value)
1487 This function takes a @code{gdb.Value} object as an argument. If a
1488 pretty-printer for this value exists, then it is returned. If no such
1489 printer exists, then this returns @code{None}.
1490 @end defun
1491
1492 @node Selecting Pretty-Printers
1493 @subsubsection Selecting Pretty-Printers
1494 @cindex selecting python pretty-printers
1495
1496 @value{GDBN} provides several ways to register a pretty-printer:
1497 globally, per program space, and per objfile. When choosing how to
1498 register your pretty-printer, a good rule is to register it with the
1499 smallest scope possible: that is prefer a specific objfile first, then
1500 a program space, and only register a printer globally as a last
1501 resort.
1502
1503 @findex gdb.pretty_printers
1504 @defvar gdb.pretty_printers
1505 The Python list @code{gdb.pretty_printers} contains an array of
1506 functions or callable objects that have been registered via addition
1507 as a pretty-printer. Printers in this list are called @code{global}
1508 printers, they're available when debugging all inferiors.
1509 @end defvar
1510
1511 Each @code{gdb.Progspace} contains a @code{pretty_printers} attribute.
1512 Each @code{gdb.Objfile} also contains a @code{pretty_printers}
1513 attribute.
1514
1515 Each function on these lists is passed a single @code{gdb.Value}
1516 argument and should return a pretty-printer object conforming to the
1517 interface definition above (@pxref{Pretty Printing API}). If a function
1518 cannot create a pretty-printer for the value, it should return
1519 @code{None}.
1520
1521 @value{GDBN} first checks the @code{pretty_printers} attribute of each
1522 @code{gdb.Objfile} in the current program space and iteratively calls
1523 each enabled lookup routine in the list for that @code{gdb.Objfile}
1524 until it receives a pretty-printer object.
1525 If no pretty-printer is found in the objfile lists, @value{GDBN} then
1526 searches the pretty-printer list of the current program space,
1527 calling each enabled function until an object is returned.
1528 After these lists have been exhausted, it tries the global
1529 @code{gdb.pretty_printers} list, again calling each enabled function until an
1530 object is returned.
1531
1532 The order in which the objfiles are searched is not specified. For a
1533 given list, functions are always invoked from the head of the list,
1534 and iterated over sequentially until the end of the list, or a printer
1535 object is returned.
1536
1537 For various reasons a pretty-printer may not work.
1538 For example, the underlying data structure may have changed and
1539 the pretty-printer is out of date.
1540
1541 The consequences of a broken pretty-printer are severe enough that
1542 @value{GDBN} provides support for enabling and disabling individual
1543 printers. For example, if @code{print frame-arguments} is on,
1544 a backtrace can become highly illegible if any argument is printed
1545 with a broken printer.
1546
1547 Pretty-printers are enabled and disabled by attaching an @code{enabled}
1548 attribute to the registered function or callable object. If this attribute
1549 is present and its value is @code{False}, the printer is disabled, otherwise
1550 the printer is enabled.
1551
1552 @node Writing a Pretty-Printer
1553 @subsubsection Writing a Pretty-Printer
1554 @cindex writing a pretty-printer
1555
1556 A pretty-printer consists of two parts: a lookup function to detect
1557 if the type is supported, and the printer itself.
1558
1559 Here is an example showing how a @code{std::string} printer might be
1560 written. @xref{Pretty Printing API}, for details on the API this class
1561 must provide.
1562
1563 @smallexample
1564 class StdStringPrinter(object):
1565 "Print a std::string"
1566
1567 def __init__(self, val):
1568 self.val = val
1569
1570 def to_string(self):
1571 return self.val['_M_dataplus']['_M_p']
1572
1573 def display_hint(self):
1574 return 'string'
1575 @end smallexample
1576
1577 And here is an example showing how a lookup function for the printer
1578 example above might be written.
1579
1580 @smallexample
1581 def str_lookup_function(val):
1582 lookup_tag = val.type.tag
1583 if lookup_tag == None:
1584 return None
1585 regex = re.compile("^std::basic_string<char,.*>$")
1586 if regex.match(lookup_tag):
1587 return StdStringPrinter(val)
1588 return None
1589 @end smallexample
1590
1591 The example lookup function extracts the value's type, and attempts to
1592 match it to a type that it can pretty-print. If it is a type the
1593 printer can pretty-print, it will return a printer object. If not, it
1594 returns @code{None}.
1595
1596 We recommend that you put your core pretty-printers into a Python
1597 package. If your pretty-printers are for use with a library, we
1598 further recommend embedding a version number into the package name.
1599 This practice will enable @value{GDBN} to load multiple versions of
1600 your pretty-printers at the same time, because they will have
1601 different names.
1602
1603 You should write auto-loaded code (@pxref{Python Auto-loading}) such that it
1604 can be evaluated multiple times without changing its meaning. An
1605 ideal auto-load file will consist solely of @code{import}s of your
1606 printer modules, followed by a call to a register pretty-printers with
1607 the current objfile.
1608
1609 Taken as a whole, this approach will scale nicely to multiple
1610 inferiors, each potentially using a different library version.
1611 Embedding a version number in the Python package name will ensure that
1612 @value{GDBN} is able to load both sets of printers simultaneously.
1613 Then, because the search for pretty-printers is done by objfile, and
1614 because your auto-loaded code took care to register your library's
1615 printers with a specific objfile, @value{GDBN} will find the correct
1616 printers for the specific version of the library used by each
1617 inferior.
1618
1619 To continue the @code{std::string} example (@pxref{Pretty Printing API}),
1620 this code might appear in @code{gdb.libstdcxx.v6}:
1621
1622 @smallexample
1623 def register_printers(objfile):
1624 objfile.pretty_printers.append(str_lookup_function)
1625 @end smallexample
1626
1627 @noindent
1628 And then the corresponding contents of the auto-load file would be:
1629
1630 @smallexample
1631 import gdb.libstdcxx.v6
1632 gdb.libstdcxx.v6.register_printers(gdb.current_objfile())
1633 @end smallexample
1634
1635 The previous example illustrates a basic pretty-printer.
1636 There are a few things that can be improved on.
1637 The printer doesn't have a name, making it hard to identify in a
1638 list of installed printers. The lookup function has a name, but
1639 lookup functions can have arbitrary, even identical, names.
1640
1641 Second, the printer only handles one type, whereas a library typically has
1642 several types. One could install a lookup function for each desired type
1643 in the library, but one could also have a single lookup function recognize
1644 several types. The latter is the conventional way this is handled.
1645 If a pretty-printer can handle multiple data types, then its
1646 @dfn{subprinters} are the printers for the individual data types.
1647
1648 The @code{gdb.printing} module provides a formal way of solving these
1649 problems (@pxref{gdb.printing}).
1650 Here is another example that handles multiple types.
1651
1652 These are the types we are going to pretty-print:
1653
1654 @smallexample
1655 struct foo @{ int a, b; @};
1656 struct bar @{ struct foo x, y; @};
1657 @end smallexample
1658
1659 Here are the printers:
1660
1661 @smallexample
1662 class fooPrinter:
1663 """Print a foo object."""
1664
1665 def __init__(self, val):
1666 self.val = val
1667
1668 def to_string(self):
1669 return ("a=<" + str(self.val["a"]) +
1670 "> b=<" + str(self.val["b"]) + ">")
1671
1672 class barPrinter:
1673 """Print a bar object."""
1674
1675 def __init__(self, val):
1676 self.val = val
1677
1678 def to_string(self):
1679 return ("x=<" + str(self.val["x"]) +
1680 "> y=<" + str(self.val["y"]) + ">")
1681 @end smallexample
1682
1683 This example doesn't need a lookup function, that is handled by the
1684 @code{gdb.printing} module. Instead a function is provided to build up
1685 the object that handles the lookup.
1686
1687 @smallexample
1688 import gdb.printing
1689
1690 def build_pretty_printer():
1691 pp = gdb.printing.RegexpCollectionPrettyPrinter(
1692 "my_library")
1693 pp.add_printer('foo', '^foo$', fooPrinter)
1694 pp.add_printer('bar', '^bar$', barPrinter)
1695 return pp
1696 @end smallexample
1697
1698 And here is the autoload support:
1699
1700 @smallexample
1701 import gdb.printing
1702 import my_library
1703 gdb.printing.register_pretty_printer(
1704 gdb.current_objfile(),
1705 my_library.build_pretty_printer())
1706 @end smallexample
1707
1708 Finally, when this printer is loaded into @value{GDBN}, here is the
1709 corresponding output of @samp{info pretty-printer}:
1710
1711 @smallexample
1712 (gdb) info pretty-printer
1713 my_library.so:
1714 my_library
1715 foo
1716 bar
1717 @end smallexample
1718
1719 @node Type Printing API
1720 @subsubsection Type Printing API
1721 @cindex type printing API for Python
1722
1723 @value{GDBN} provides a way for Python code to customize type display.
1724 This is mainly useful for substituting canonical typedef names for
1725 types.
1726
1727 @cindex type printer
1728 A @dfn{type printer} is just a Python object conforming to a certain
1729 protocol. A simple base class implementing the protocol is provided;
1730 see @ref{gdb.types}. A type printer must supply at least:
1731
1732 @defivar type_printer enabled
1733 A boolean which is True if the printer is enabled, and False
1734 otherwise. This is manipulated by the @code{enable type-printer}
1735 and @code{disable type-printer} commands.
1736 @end defivar
1737
1738 @defivar type_printer name
1739 The name of the type printer. This must be a string. This is used by
1740 the @code{enable type-printer} and @code{disable type-printer}
1741 commands.
1742 @end defivar
1743
1744 @defmethod type_printer instantiate (self)
1745 This is called by @value{GDBN} at the start of type-printing. It is
1746 only called if the type printer is enabled. This method must return a
1747 new object that supplies a @code{recognize} method, as described below.
1748 @end defmethod
1749
1750
1751 When displaying a type, say via the @code{ptype} command, @value{GDBN}
1752 will compute a list of type recognizers. This is done by iterating
1753 first over the per-objfile type printers (@pxref{Objfiles In Python}),
1754 followed by the per-progspace type printers (@pxref{Progspaces In
1755 Python}), and finally the global type printers.
1756
1757 @value{GDBN} will call the @code{instantiate} method of each enabled
1758 type printer. If this method returns @code{None}, then the result is
1759 ignored; otherwise, it is appended to the list of recognizers.
1760
1761 Then, when @value{GDBN} is going to display a type name, it iterates
1762 over the list of recognizers. For each one, it calls the recognition
1763 function, stopping if the function returns a non-@code{None} value.
1764 The recognition function is defined as:
1765
1766 @defmethod type_recognizer recognize (self, type)
1767 If @var{type} is not recognized, return @code{None}. Otherwise,
1768 return a string which is to be printed as the name of @var{type}.
1769 The @var{type} argument will be an instance of @code{gdb.Type}
1770 (@pxref{Types In Python}).
1771 @end defmethod
1772
1773 @value{GDBN} uses this two-pass approach so that type printers can
1774 efficiently cache information without holding on to it too long. For
1775 example, it can be convenient to look up type information in a type
1776 printer and hold it for a recognizer's lifetime; if a single pass were
1777 done then type printers would have to make use of the event system in
1778 order to avoid holding information that could become stale as the
1779 inferior changed.
1780
1781 @node Frame Filter API
1782 @subsubsection Filtering Frames
1783 @cindex frame filters api
1784
1785 Frame filters are Python objects that manipulate the visibility of a
1786 frame or frames when a backtrace (@pxref{Backtrace}) is printed by
1787 @value{GDBN}.
1788
1789 Only commands that print a backtrace, or, in the case of @sc{gdb/mi}
1790 commands (@pxref{GDB/MI}), those that return a collection of frames
1791 are affected. The commands that work with frame filters are:
1792
1793 @code{backtrace} (@pxref{backtrace-command,, The backtrace command}),
1794 @code{-stack-list-frames}
1795 (@pxref{-stack-list-frames,, The -stack-list-frames command}),
1796 @code{-stack-list-variables} (@pxref{-stack-list-variables,, The
1797 -stack-list-variables command}), @code{-stack-list-arguments}
1798 @pxref{-stack-list-arguments,, The -stack-list-arguments command}) and
1799 @code{-stack-list-locals} (@pxref{-stack-list-locals,, The
1800 -stack-list-locals command}).
1801
1802 A frame filter works by taking an iterator as an argument, applying
1803 actions to the contents of that iterator, and returning another
1804 iterator (or, possibly, the same iterator it was provided in the case
1805 where the filter does not perform any operations). Typically, frame
1806 filters utilize tools such as the Python's @code{itertools} module to
1807 work with and create new iterators from the source iterator.
1808 Regardless of how a filter chooses to apply actions, it must not alter
1809 the underlying @value{GDBN} frame or frames, or attempt to alter the
1810 call-stack within @value{GDBN}. This preserves data integrity within
1811 @value{GDBN}. Frame filters are executed on a priority basis and care
1812 should be taken that some frame filters may have been executed before,
1813 and that some frame filters will be executed after.
1814
1815 An important consideration when designing frame filters, and well
1816 worth reflecting upon, is that frame filters should avoid unwinding
1817 the call stack if possible. Some stacks can run very deep, into the
1818 tens of thousands in some cases. To search every frame when a frame
1819 filter executes may be too expensive at that step. The frame filter
1820 cannot know how many frames it has to iterate over, and it may have to
1821 iterate through them all. This ends up duplicating effort as
1822 @value{GDBN} performs this iteration when it prints the frames. If
1823 the filter can defer unwinding frames until frame decorators are
1824 executed, after the last filter has executed, it should. @xref{Frame
1825 Decorator API}, for more information on decorators. Also, there are
1826 examples for both frame decorators and filters in later chapters.
1827 @xref{Writing a Frame Filter}, for more information.
1828
1829 The Python dictionary @code{gdb.frame_filters} contains key/object
1830 pairings that comprise a frame filter. Frame filters in this
1831 dictionary are called @code{global} frame filters, and they are
1832 available when debugging all inferiors. These frame filters must
1833 register with the dictionary directly. In addition to the
1834 @code{global} dictionary, there are other dictionaries that are loaded
1835 with different inferiors via auto-loading (@pxref{Python
1836 Auto-loading}). The two other areas where frame filter dictionaries
1837 can be found are: @code{gdb.Progspace} which contains a
1838 @code{frame_filters} dictionary attribute, and each @code{gdb.Objfile}
1839 object which also contains a @code{frame_filters} dictionary
1840 attribute.
1841
1842 When a command is executed from @value{GDBN} that is compatible with
1843 frame filters, @value{GDBN} combines the @code{global},
1844 @code{gdb.Progspace} and all @code{gdb.Objfile} dictionaries currently
1845 loaded. All of the @code{gdb.Objfile} dictionaries are combined, as
1846 several frames, and thus several object files, might be in use.
1847 @value{GDBN} then prunes any frame filter whose @code{enabled}
1848 attribute is @code{False}. This pruned list is then sorted according
1849 to the @code{priority} attribute in each filter.
1850
1851 Once the dictionaries are combined, pruned and sorted, @value{GDBN}
1852 creates an iterator which wraps each frame in the call stack in a
1853 @code{FrameDecorator} object, and calls each filter in order. The
1854 output from the previous filter will always be the input to the next
1855 filter, and so on.
1856
1857 Frame filters have a mandatory interface which each frame filter must
1858 implement, defined here:
1859
1860 @defun FrameFilter.filter (iterator)
1861 @value{GDBN} will call this method on a frame filter when it has
1862 reached the order in the priority list for that filter.
1863
1864 For example, if there are four frame filters:
1865
1866 @smallexample
1867 Name Priority
1868
1869 Filter1 5
1870 Filter2 10
1871 Filter3 100
1872 Filter4 1
1873 @end smallexample
1874
1875 The order that the frame filters will be called is:
1876
1877 @smallexample
1878 Filter3 -> Filter2 -> Filter1 -> Filter4
1879 @end smallexample
1880
1881 Note that the output from @code{Filter3} is passed to the input of
1882 @code{Filter2}, and so on.
1883
1884 This @code{filter} method is passed a Python iterator. This iterator
1885 contains a sequence of frame decorators that wrap each
1886 @code{gdb.Frame}, or a frame decorator that wraps another frame
1887 decorator. The first filter that is executed in the sequence of frame
1888 filters will receive an iterator entirely comprised of default
1889 @code{FrameDecorator} objects. However, after each frame filter is
1890 executed, the previous frame filter may have wrapped some or all of
1891 the frame decorators with their own frame decorator. As frame
1892 decorators must also conform to a mandatory interface, these
1893 decorators can be assumed to act in a uniform manner (@pxref{Frame
1894 Decorator API}).
1895
1896 This method must return an object conforming to the Python iterator
1897 protocol. Each item in the iterator must be an object conforming to
1898 the frame decorator interface. If a frame filter does not wish to
1899 perform any operations on this iterator, it should return that
1900 iterator untouched.
1901
1902 This method is not optional. If it does not exist, @value{GDBN} will
1903 raise and print an error.
1904 @end defun
1905
1906 @defvar FrameFilter.name
1907 The @code{name} attribute must be Python string which contains the
1908 name of the filter displayed by @value{GDBN} (@pxref{Frame Filter
1909 Management}). This attribute may contain any combination of letters
1910 or numbers. Care should be taken to ensure that it is unique. This
1911 attribute is mandatory.
1912 @end defvar
1913
1914 @defvar FrameFilter.enabled
1915 The @code{enabled} attribute must be Python boolean. This attribute
1916 indicates to @value{GDBN} whether the frame filter is enabled, and
1917 should be considered when frame filters are executed. If
1918 @code{enabled} is @code{True}, then the frame filter will be executed
1919 when any of the backtrace commands detailed earlier in this chapter
1920 are executed. If @code{enabled} is @code{False}, then the frame
1921 filter will not be executed. This attribute is mandatory.
1922 @end defvar
1923
1924 @defvar FrameFilter.priority
1925 The @code{priority} attribute must be Python integer. This attribute
1926 controls the order of execution in relation to other frame filters.
1927 There are no imposed limits on the range of @code{priority} other than
1928 it must be a valid integer. The higher the @code{priority} attribute,
1929 the sooner the frame filter will be executed in relation to other
1930 frame filters. Although @code{priority} can be negative, it is
1931 recommended practice to assume zero is the lowest priority that a
1932 frame filter can be assigned. Frame filters that have the same
1933 priority are executed in unsorted order in that priority slot. This
1934 attribute is mandatory. 100 is a good default priority.
1935 @end defvar
1936
1937 @node Frame Decorator API
1938 @subsubsection Decorating Frames
1939 @cindex frame decorator api
1940
1941 Frame decorators are sister objects to frame filters (@pxref{Frame
1942 Filter API}). Frame decorators are applied by a frame filter and can
1943 only be used in conjunction with frame filters.
1944
1945 The purpose of a frame decorator is to customize the printed content
1946 of each @code{gdb.Frame} in commands where frame filters are executed.
1947 This concept is called decorating a frame. Frame decorators decorate
1948 a @code{gdb.Frame} with Python code contained within each API call.
1949 This separates the actual data contained in a @code{gdb.Frame} from
1950 the decorated data produced by a frame decorator. This abstraction is
1951 necessary to maintain integrity of the data contained in each
1952 @code{gdb.Frame}.
1953
1954 Frame decorators have a mandatory interface, defined below.
1955
1956 @value{GDBN} already contains a frame decorator called
1957 @code{FrameDecorator}. This contains substantial amounts of
1958 boilerplate code to decorate the content of a @code{gdb.Frame}. It is
1959 recommended that other frame decorators inherit and extend this
1960 object, and only to override the methods needed.
1961
1962 @tindex gdb.FrameDecorator
1963 @code{FrameDecorator} is defined in the Python module
1964 @code{gdb.FrameDecorator}, so your code can import it like:
1965 @smallexample
1966 from gdb.FrameDecorator import FrameDecorator
1967 @end smallexample
1968
1969 @defun FrameDecorator.elided (self)
1970
1971 The @code{elided} method groups frames together in a hierarchical
1972 system. An example would be an interpreter, where multiple low-level
1973 frames make up a single call in the interpreted language. In this
1974 example, the frame filter would elide the low-level frames and present
1975 a single high-level frame, representing the call in the interpreted
1976 language, to the user.
1977
1978 The @code{elided} function must return an iterable and this iterable
1979 must contain the frames that are being elided wrapped in a suitable
1980 frame decorator. If no frames are being elided this function may
1981 return an empty iterable, or @code{None}. Elided frames are indented
1982 from normal frames in a @code{CLI} backtrace, or in the case of
1983 @code{GDB/MI}, are placed in the @code{children} field of the eliding
1984 frame.
1985
1986 It is the frame filter's task to also filter out the elided frames from
1987 the source iterator. This will avoid printing the frame twice.
1988 @end defun
1989
1990 @defun FrameDecorator.function (self)
1991
1992 This method returns the name of the function in the frame that is to
1993 be printed.
1994
1995 This method must return a Python string describing the function, or
1996 @code{None}.
1997
1998 If this function returns @code{None}, @value{GDBN} will not print any
1999 data for this field.
2000 @end defun
2001
2002 @defun FrameDecorator.address (self)
2003
2004 This method returns the address of the frame that is to be printed.
2005
2006 This method must return a Python numeric integer type of sufficient
2007 size to describe the address of the frame, or @code{None}.
2008
2009 If this function returns a @code{None}, @value{GDBN} will not print
2010 any data for this field.
2011 @end defun
2012
2013 @defun FrameDecorator.filename (self)
2014
2015 This method returns the filename and path associated with this frame.
2016
2017 This method must return a Python string containing the filename and
2018 the path to the object file backing the frame, or @code{None}.
2019
2020 If this function returns a @code{None}, @value{GDBN} will not print
2021 any data for this field.
2022 @end defun
2023
2024 @defun FrameDecorator.line (self):
2025
2026 This method returns the line number associated with the current
2027 position within the function addressed by this frame.
2028
2029 This method must return a Python integer type, or @code{None}.
2030
2031 If this function returns a @code{None}, @value{GDBN} will not print
2032 any data for this field.
2033 @end defun
2034
2035 @defun FrameDecorator.frame_args (self)
2036 @anchor{frame_args}
2037
2038 This method must return an iterable, or @code{None}. Returning an
2039 empty iterable, or @code{None} means frame arguments will not be
2040 printed for this frame. This iterable must contain objects that
2041 implement two methods, described here.
2042
2043 This object must implement a @code{argument} method which takes a
2044 single @code{self} parameter and must return a @code{gdb.Symbol}
2045 (@pxref{Symbols In Python}), or a Python string. The object must also
2046 implement a @code{value} method which takes a single @code{self}
2047 parameter and must return a @code{gdb.Value} (@pxref{Values From
2048 Inferior}), a Python value, or @code{None}. If the @code{value}
2049 method returns @code{None}, and the @code{argument} method returns a
2050 @code{gdb.Symbol}, @value{GDBN} will look-up and print the value of
2051 the @code{gdb.Symbol} automatically.
2052
2053 A brief example:
2054
2055 @smallexample
2056 class SymValueWrapper():
2057
2058 def __init__(self, symbol, value):
2059 self.sym = symbol
2060 self.val = value
2061
2062 def value(self):
2063 return self.val
2064
2065 def symbol(self):
2066 return self.sym
2067
2068 class SomeFrameDecorator()
2069 ...
2070 ...
2071 def frame_args(self):
2072 args = []
2073 try:
2074 block = self.inferior_frame.block()
2075 except:
2076 return None
2077
2078 # Iterate over all symbols in a block. Only add
2079 # symbols that are arguments.
2080 for sym in block:
2081 if not sym.is_argument:
2082 continue
2083 args.append(SymValueWrapper(sym,None))
2084
2085 # Add example synthetic argument.
2086 args.append(SymValueWrapper(``foo'', 42))
2087
2088 return args
2089 @end smallexample
2090 @end defun
2091
2092 @defun FrameDecorator.frame_locals (self)
2093
2094 This method must return an iterable or @code{None}. Returning an
2095 empty iterable, or @code{None} means frame local arguments will not be
2096 printed for this frame.
2097
2098 The object interface, the description of the various strategies for
2099 reading frame locals, and the example are largely similar to those
2100 described in the @code{frame_args} function, (@pxref{frame_args,,The
2101 frame filter frame_args function}). Below is a modified example:
2102
2103 @smallexample
2104 class SomeFrameDecorator()
2105 ...
2106 ...
2107 def frame_locals(self):
2108 vars = []
2109 try:
2110 block = self.inferior_frame.block()
2111 except:
2112 return None
2113
2114 # Iterate over all symbols in a block. Add all
2115 # symbols, except arguments.
2116 for sym in block:
2117 if sym.is_argument:
2118 continue
2119 vars.append(SymValueWrapper(sym,None))
2120
2121 # Add an example of a synthetic local variable.
2122 vars.append(SymValueWrapper(``bar'', 99))
2123
2124 return vars
2125 @end smallexample
2126 @end defun
2127
2128 @defun FrameDecorator.inferior_frame (self):
2129
2130 This method must return the underlying @code{gdb.Frame} that this
2131 frame decorator is decorating. @value{GDBN} requires the underlying
2132 frame for internal frame information to determine how to print certain
2133 values when printing a frame.
2134 @end defun
2135
2136 @node Writing a Frame Filter
2137 @subsubsection Writing a Frame Filter
2138 @cindex writing a frame filter
2139
2140 There are three basic elements that a frame filter must implement: it
2141 must correctly implement the documented interface (@pxref{Frame Filter
2142 API}), it must register itself with @value{GDBN}, and finally, it must
2143 decide if it is to work on the data provided by @value{GDBN}. In all
2144 cases, whether it works on the iterator or not, each frame filter must
2145 return an iterator. A bare-bones frame filter follows the pattern in
2146 the following example.
2147
2148 @smallexample
2149 import gdb
2150
2151 class FrameFilter():
2152
2153 def __init__(self):
2154 # Frame filter attribute creation.
2155 #
2156 # 'name' is the name of the filter that GDB will display.
2157 #
2158 # 'priority' is the priority of the filter relative to other
2159 # filters.
2160 #
2161 # 'enabled' is a boolean that indicates whether this filter is
2162 # enabled and should be executed.
2163
2164 self.name = "Foo"
2165 self.priority = 100
2166 self.enabled = True
2167
2168 # Register this frame filter with the global frame_filters
2169 # dictionary.
2170 gdb.frame_filters[self.name] = self
2171
2172 def filter(self, frame_iter):
2173 # Just return the iterator.
2174 return frame_iter
2175 @end smallexample
2176
2177 The frame filter in the example above implements the three
2178 requirements for all frame filters. It implements the API, self
2179 registers, and makes a decision on the iterator (in this case, it just
2180 returns the iterator untouched).
2181
2182 The first step is attribute creation and assignment, and as shown in
2183 the comments the filter assigns the following attributes: @code{name},
2184 @code{priority} and whether the filter should be enabled with the
2185 @code{enabled} attribute.
2186
2187 The second step is registering the frame filter with the dictionary or
2188 dictionaries that the frame filter has interest in. As shown in the
2189 comments, this filter just registers itself with the global dictionary
2190 @code{gdb.frame_filters}. As noted earlier, @code{gdb.frame_filters}
2191 is a dictionary that is initialized in the @code{gdb} module when
2192 @value{GDBN} starts. What dictionary a filter registers with is an
2193 important consideration. Generally, if a filter is specific to a set
2194 of code, it should be registered either in the @code{objfile} or
2195 @code{progspace} dictionaries as they are specific to the program
2196 currently loaded in @value{GDBN}. The global dictionary is always
2197 present in @value{GDBN} and is never unloaded. Any filters registered
2198 with the global dictionary will exist until @value{GDBN} exits. To
2199 avoid filters that may conflict, it is generally better to register
2200 frame filters against the dictionaries that more closely align with
2201 the usage of the filter currently in question. @xref{Python
2202 Auto-loading}, for further information on auto-loading Python scripts.
2203
2204 @value{GDBN} takes a hands-off approach to frame filter registration,
2205 therefore it is the frame filter's responsibility to ensure
2206 registration has occurred, and that any exceptions are handled
2207 appropriately. In particular, you may wish to handle exceptions
2208 relating to Python dictionary key uniqueness. It is mandatory that
2209 the dictionary key is the same as frame filter's @code{name}
2210 attribute. When a user manages frame filters (@pxref{Frame Filter
2211 Management}), the names @value{GDBN} will display are those contained
2212 in the @code{name} attribute.
2213
2214 The final step of this example is the implementation of the
2215 @code{filter} method. As shown in the example comments, we define the
2216 @code{filter} method and note that the method must take an iterator,
2217 and also must return an iterator. In this bare-bones example, the
2218 frame filter is not very useful as it just returns the iterator
2219 untouched. However this is a valid operation for frame filters that
2220 have the @code{enabled} attribute set, but decide not to operate on
2221 any frames.
2222
2223 In the next example, the frame filter operates on all frames and
2224 utilizes a frame decorator to perform some work on the frames.
2225 @xref{Frame Decorator API}, for further information on the frame
2226 decorator interface.
2227
2228 This example works on inlined frames. It highlights frames which are
2229 inlined by tagging them with an ``[inlined]'' tag. By applying a
2230 frame decorator to all frames with the Python @code{itertools imap}
2231 method, the example defers actions to the frame decorator. Frame
2232 decorators are only processed when @value{GDBN} prints the backtrace.
2233
2234 This introduces a new decision making topic: whether to perform
2235 decision making operations at the filtering step, or at the printing
2236 step. In this example's approach, it does not perform any filtering
2237 decisions at the filtering step beyond mapping a frame decorator to
2238 each frame. This allows the actual decision making to be performed
2239 when each frame is printed. This is an important consideration, and
2240 well worth reflecting upon when designing a frame filter. An issue
2241 that frame filters should avoid is unwinding the stack if possible.
2242 Some stacks can run very deep, into the tens of thousands in some
2243 cases. To search every frame to determine if it is inlined ahead of
2244 time may be too expensive at the filtering step. The frame filter
2245 cannot know how many frames it has to iterate over, and it would have
2246 to iterate through them all. This ends up duplicating effort as
2247 @value{GDBN} performs this iteration when it prints the frames.
2248
2249 In this example decision making can be deferred to the printing step.
2250 As each frame is printed, the frame decorator can examine each frame
2251 in turn when @value{GDBN} iterates. From a performance viewpoint,
2252 this is the most appropriate decision to make as it avoids duplicating
2253 the effort that the printing step would undertake anyway. Also, if
2254 there are many frame filters unwinding the stack during filtering, it
2255 can substantially delay the printing of the backtrace which will
2256 result in large memory usage, and a poor user experience.
2257
2258 @smallexample
2259 class InlineFilter():
2260
2261 def __init__(self):
2262 self.name = "InlinedFrameFilter"
2263 self.priority = 100
2264 self.enabled = True
2265 gdb.frame_filters[self.name] = self
2266
2267 def filter(self, frame_iter):
2268 frame_iter = itertools.imap(InlinedFrameDecorator,
2269 frame_iter)
2270 return frame_iter
2271 @end smallexample
2272
2273 This frame filter is somewhat similar to the earlier example, except
2274 that the @code{filter} method applies a frame decorator object called
2275 @code{InlinedFrameDecorator} to each element in the iterator. The
2276 @code{imap} Python method is light-weight. It does not proactively
2277 iterate over the iterator, but rather creates a new iterator which
2278 wraps the existing one.
2279
2280 Below is the frame decorator for this example.
2281
2282 @smallexample
2283 class InlinedFrameDecorator(FrameDecorator):
2284
2285 def __init__(self, fobj):
2286 super(InlinedFrameDecorator, self).__init__(fobj)
2287
2288 def function(self):
2289 frame = fobj.inferior_frame()
2290 name = str(frame.name())
2291
2292 if frame.type() == gdb.INLINE_FRAME:
2293 name = name + " [inlined]"
2294
2295 return name
2296 @end smallexample
2297
2298 This frame decorator only defines and overrides the @code{function}
2299 method. It lets the supplied @code{FrameDecorator}, which is shipped
2300 with @value{GDBN}, perform the other work associated with printing
2301 this frame.
2302
2303 The combination of these two objects create this output from a
2304 backtrace:
2305
2306 @smallexample
2307 #0 0x004004e0 in bar () at inline.c:11
2308 #1 0x00400566 in max [inlined] (b=6, a=12) at inline.c:21
2309 #2 0x00400566 in main () at inline.c:31
2310 @end smallexample
2311
2312 So in the case of this example, a frame decorator is applied to all
2313 frames, regardless of whether they may be inlined or not. As
2314 @value{GDBN} iterates over the iterator produced by the frame filters,
2315 @value{GDBN} executes each frame decorator which then makes a decision
2316 on what to print in the @code{function} callback. Using a strategy
2317 like this is a way to defer decisions on the frame content to printing
2318 time.
2319
2320 @subheading Eliding Frames
2321
2322 It might be that the above example is not desirable for representing
2323 inlined frames, and a hierarchical approach may be preferred. If we
2324 want to hierarchically represent frames, the @code{elided} frame
2325 decorator interface might be preferable.
2326
2327 This example approaches the issue with the @code{elided} method. This
2328 example is quite long, but very simplistic. It is out-of-scope for
2329 this section to write a complete example that comprehensively covers
2330 all approaches of finding and printing inlined frames. However, this
2331 example illustrates the approach an author might use.
2332
2333 This example comprises of three sections.
2334
2335 @smallexample
2336 class InlineFrameFilter():
2337
2338 def __init__(self):
2339 self.name = "InlinedFrameFilter"
2340 self.priority = 100
2341 self.enabled = True
2342 gdb.frame_filters[self.name] = self
2343
2344 def filter(self, frame_iter):
2345 return ElidingInlineIterator(frame_iter)
2346 @end smallexample
2347
2348 This frame filter is very similar to the other examples. The only
2349 difference is this frame filter is wrapping the iterator provided to
2350 it (@code{frame_iter}) with a custom iterator called
2351 @code{ElidingInlineIterator}. This again defers actions to when
2352 @value{GDBN} prints the backtrace, as the iterator is not traversed
2353 until printing.
2354
2355 The iterator for this example is as follows. It is in this section of
2356 the example where decisions are made on the content of the backtrace.
2357
2358 @smallexample
2359 class ElidingInlineIterator:
2360 def __init__(self, ii):
2361 self.input_iterator = ii
2362
2363 def __iter__(self):
2364 return self
2365
2366 def next(self):
2367 frame = next(self.input_iterator)
2368
2369 if frame.inferior_frame().type() != gdb.INLINE_FRAME:
2370 return frame
2371
2372 try:
2373 eliding_frame = next(self.input_iterator)
2374 except StopIteration:
2375 return frame
2376 return ElidingFrameDecorator(eliding_frame, [frame])
2377 @end smallexample
2378
2379 This iterator implements the Python iterator protocol. When the
2380 @code{next} function is called (when @value{GDBN} prints each frame),
2381 the iterator checks if this frame decorator, @code{frame}, is wrapping
2382 an inlined frame. If it is not, it returns the existing frame decorator
2383 untouched. If it is wrapping an inlined frame, it assumes that the
2384 inlined frame was contained within the next oldest frame,
2385 @code{eliding_frame}, which it fetches. It then creates and returns a
2386 frame decorator, @code{ElidingFrameDecorator}, which contains both the
2387 elided frame, and the eliding frame.
2388
2389 @smallexample
2390 class ElidingInlineDecorator(FrameDecorator):
2391
2392 def __init__(self, frame, elided_frames):
2393 super(ElidingInlineDecorator, self).__init__(frame)
2394 self.frame = frame
2395 self.elided_frames = elided_frames
2396
2397 def elided(self):
2398 return iter(self.elided_frames)
2399 @end smallexample
2400
2401 This frame decorator overrides one function and returns the inlined
2402 frame in the @code{elided} method. As before it lets
2403 @code{FrameDecorator} do the rest of the work involved in printing
2404 this frame. This produces the following output.
2405
2406 @smallexample
2407 #0 0x004004e0 in bar () at inline.c:11
2408 #2 0x00400529 in main () at inline.c:25
2409 #1 0x00400529 in max (b=6, a=12) at inline.c:15
2410 @end smallexample
2411
2412 In that output, @code{max} which has been inlined into @code{main} is
2413 printed hierarchically. Another approach would be to combine the
2414 @code{function} method, and the @code{elided} method to both print a
2415 marker in the inlined frame, and also show the hierarchical
2416 relationship.
2417
2418 @node Unwinding Frames in Python
2419 @subsubsection Unwinding Frames in Python
2420 @cindex unwinding frames in Python
2421
2422 In @value{GDBN} terminology ``unwinding'' is the process of finding
2423 the previous frame (that is, caller's) from the current one. An
2424 unwinder has three methods. The first one checks if it can handle
2425 given frame (``sniff'' it). For the frames it can sniff an unwinder
2426 provides two additional methods: it can return frame's ID, and it can
2427 fetch registers from the previous frame. A running @value{GDBN}
2428 mantains a list of the unwinders and calls each unwinder's sniffer in
2429 turn until it finds the one that recognizes the current frame. There
2430 is an API to register an unwinder.
2431
2432 The unwinders that come with @value{GDBN} handle standard frames.
2433 However, mixed language applications (for example, an application
2434 running Java Virtual Machine) sometimes use frame layouts that cannot
2435 be handled by the @value{GDBN} unwinders. You can write Python code
2436 that can handle such custom frames.
2437
2438 You implement a frame unwinder in Python as a class with which has two
2439 attributes, @code{name} and @code{enabled}, with obvious meanings, and
2440 a single method @code{__call__}, which examines a given frame and
2441 returns an object (an instance of @code{gdb.UnwindInfo class)}
2442 describing it. If an unwinder does not recognize a frame, it should
2443 return @code{None}. The code in @value{GDBN} that enables writing
2444 unwinders in Python uses this object to return frame's ID and previous
2445 frame registers when @value{GDBN} core asks for them.
2446
2447 An unwinder should do as little work as possible. Some otherwise
2448 innocuous operations can cause problems (even crashes, as this code is
2449 not not well-hardened yet). For example, making an inferior call from
2450 an unwinder is unadvisable, as an inferior call will reset
2451 @value{GDBN}'s stack unwinding process, potentially causing re-entrant
2452 unwinding.
2453
2454 @subheading Unwinder Input
2455
2456 An object passed to an unwinder (a @code{gdb.PendingFrame} instance)
2457 provides a method to read frame's registers:
2458
2459 @defun PendingFrame.read_register (reg)
2460 This method returns the contents of the register @var{reg} in the
2461 frame as a @code{gdb.Value} object. @var{reg} can be either a
2462 register number or a register name; the values are platform-specific.
2463 They are usually found in the corresponding
2464 @file{@var{platform}-tdep.h} file in the @value{GDBN} source tree. If
2465 @var{reg} does not name a register for the current architecture, this
2466 method will throw an exception.
2467
2468 Note that this method will always return a @code{gdb.Value} for a
2469 valid register name. This does not mean that the value will be valid.
2470 For example, you may request a register that an earlier unwinder could
2471 not unwind---the value will be unavailable. Instead, the
2472 @code{gdb.Value} returned from this method will be lazy; that is, its
2473 underlying bits will not be fetched until it is first used. So,
2474 attempting to use such a value will cause an exception at the point of
2475 use.
2476
2477 The type of the returned @code{gdb.Value} depends on the register and
2478 the architecture. It is common for registers to have a scalar type,
2479 like @code{long long}; but many other types are possible, such as
2480 pointer, pointer-to-function, floating point or vector types.
2481 @end defun
2482
2483 It also provides a factory method to create a @code{gdb.UnwindInfo}
2484 instance to be returned to @value{GDBN}:
2485
2486 @defun PendingFrame.create_unwind_info (frame_id)
2487 Returns a new @code{gdb.UnwindInfo} instance identified by given
2488 @var{frame_id}. The argument is used to build @value{GDBN}'s frame ID
2489 using one of functions provided by @value{GDBN}. @var{frame_id}'s attributes
2490 determine which function will be used, as follows:
2491
2492 @table @code
2493 @item sp, pc
2494 The frame is identified by the given stack address and PC. The stack
2495 address must be chosen so that it is constant throughout the lifetime
2496 of the frame, so a typical choice is the value of the stack pointer at
2497 the start of the function---in the DWARF standard, this would be the
2498 ``Call Frame Address''.
2499
2500 This is the most common case by far. The other cases are documented
2501 for completeness but are only useful in specialized situations.
2502
2503 @item sp, pc, special
2504 The frame is identified by the stack address, the PC, and a
2505 ``special'' address. The special address is used on architectures
2506 that can have frames that do not change the stack, but which are still
2507 distinct, for example the IA-64, which has a second stack for
2508 registers. Both @var{sp} and @var{special} must be constant
2509 throughout the lifetime of the frame.
2510
2511 @item sp
2512 The frame is identified by the stack address only. Any other stack
2513 frame with a matching @var{sp} will be considered to match this frame.
2514 Inside gdb, this is called a ``wild frame''. You will never need
2515 this.
2516 @end table
2517
2518 Each attribute value should be an instance of @code{gdb.Value}.
2519
2520 @end defun
2521
2522 @defun PendingFrame.architecture ()
2523 Return the @code{gdb.Architecture} (@pxref{Architectures In Python})
2524 for this @code{gdb.PendingFrame}. This represents the architecture of
2525 the particular frame being unwound.
2526 @end defun
2527
2528 @subheading Unwinder Output: UnwindInfo
2529
2530 Use @code{PendingFrame.create_unwind_info} method described above to
2531 create a @code{gdb.UnwindInfo} instance. Use the following method to
2532 specify caller registers that have been saved in this frame:
2533
2534 @defun gdb.UnwindInfo.add_saved_register (reg, value)
2535 @var{reg} identifies the register. It can be a number or a name, just
2536 as for the @code{PendingFrame.read_register} method above.
2537 @var{value} is a register value (a @code{gdb.Value} object).
2538 @end defun
2539
2540 @subheading Unwinder Skeleton Code
2541
2542 @value{GDBN} comes with the module containing the base @code{Unwinder}
2543 class. Derive your unwinder class from it and structure the code as
2544 follows:
2545
2546 @smallexample
2547 from gdb.unwinders import Unwinder
2548
2549 class FrameId(object):
2550 def __init__(self, sp, pc):
2551 self.sp = sp
2552 self.pc = pc
2553
2554
2555 class MyUnwinder(Unwinder):
2556 def __init__(....):
2557 super(MyUnwinder, self).__init___(<expects unwinder name argument>)
2558
2559 def __call__(pending_frame):
2560 if not <we recognize frame>:
2561 return None
2562 # Create UnwindInfo. Usually the frame is identified by the stack
2563 # pointer and the program counter.
2564 sp = pending_frame.read_register(<SP number>)
2565 pc = pending_frame.read_register(<PC number>)
2566 unwind_info = pending_frame.create_unwind_info(FrameId(sp, pc))
2567
2568 # Find the values of the registers in the caller's frame and
2569 # save them in the result:
2570 unwind_info.add_saved_register(<register>, <value>)
2571 ....
2572
2573 # Return the result:
2574 return unwind_info
2575
2576 @end smallexample
2577
2578 @subheading Registering a Unwinder
2579
2580 An object file, a program space, and the @value{GDBN} proper can have
2581 unwinders registered with it.
2582
2583 The @code{gdb.unwinders} module provides the function to register a
2584 unwinder:
2585
2586 @defun gdb.unwinder.register_unwinder (locus, unwinder, replace=False)
2587 @var{locus} is specifies an object file or a program space to which
2588 @var{unwinder} is added. Passing @code{None} or @code{gdb} adds
2589 @var{unwinder} to the @value{GDBN}'s global unwinder list. The newly
2590 added @var{unwinder} will be called before any other unwinder from the
2591 same locus. Two unwinders in the same locus cannot have the same
2592 name. An attempt to add a unwinder with already existing name raises
2593 an exception unless @var{replace} is @code{True}, in which case the
2594 old unwinder is deleted.
2595 @end defun
2596
2597 @subheading Unwinder Precedence
2598
2599 @value{GDBN} first calls the unwinders from all the object files in no
2600 particular order, then the unwinders from the current program space,
2601 and finally the unwinders from @value{GDBN}.
2602
2603 @node Xmethods In Python
2604 @subsubsection Xmethods In Python
2605 @cindex xmethods in Python
2606
2607 @dfn{Xmethods} are additional methods or replacements for existing
2608 methods of a C@t{++} class. This feature is useful for those cases
2609 where a method defined in C@t{++} source code could be inlined or
2610 optimized out by the compiler, making it unavailable to @value{GDBN}.
2611 For such cases, one can define an xmethod to serve as a replacement
2612 for the method defined in the C@t{++} source code. @value{GDBN} will
2613 then invoke the xmethod, instead of the C@t{++} method, to
2614 evaluate expressions. One can also use xmethods when debugging
2615 with core files. Moreover, when debugging live programs, invoking an
2616 xmethod need not involve running the inferior (which can potentially
2617 perturb its state). Hence, even if the C@t{++} method is available, it
2618 is better to use its replacement xmethod if one is defined.
2619
2620 The xmethods feature in Python is available via the concepts of an
2621 @dfn{xmethod matcher} and an @dfn{xmethod worker}. To
2622 implement an xmethod, one has to implement a matcher and a
2623 corresponding worker for it (more than one worker can be
2624 implemented, each catering to a different overloaded instance of the
2625 method). Internally, @value{GDBN} invokes the @code{match} method of a
2626 matcher to match the class type and method name. On a match, the
2627 @code{match} method returns a list of matching @emph{worker} objects.
2628 Each worker object typically corresponds to an overloaded instance of
2629 the xmethod. They implement a @code{get_arg_types} method which
2630 returns a sequence of types corresponding to the arguments the xmethod
2631 requires. @value{GDBN} uses this sequence of types to perform
2632 overload resolution and picks a winning xmethod worker. A winner
2633 is also selected from among the methods @value{GDBN} finds in the
2634 C@t{++} source code. Next, the winning xmethod worker and the
2635 winning C@t{++} method are compared to select an overall winner. In
2636 case of a tie between a xmethod worker and a C@t{++} method, the
2637 xmethod worker is selected as the winner. That is, if a winning
2638 xmethod worker is found to be equivalent to the winning C@t{++}
2639 method, then the xmethod worker is treated as a replacement for
2640 the C@t{++} method. @value{GDBN} uses the overall winner to invoke the
2641 method. If the winning xmethod worker is the overall winner, then
2642 the corresponding xmethod is invoked via the @code{__call__} method
2643 of the worker object.
2644
2645 If one wants to implement an xmethod as a replacement for an
2646 existing C@t{++} method, then they have to implement an equivalent
2647 xmethod which has exactly the same name and takes arguments of
2648 exactly the same type as the C@t{++} method. If the user wants to
2649 invoke the C@t{++} method even though a replacement xmethod is
2650 available for that method, then they can disable the xmethod.
2651
2652 @xref{Xmethod API}, for API to implement xmethods in Python.
2653 @xref{Writing an Xmethod}, for implementing xmethods in Python.
2654
2655 @node Xmethod API
2656 @subsubsection Xmethod API
2657 @cindex xmethod API
2658
2659 The @value{GDBN} Python API provides classes, interfaces and functions
2660 to implement, register and manipulate xmethods.
2661 @xref{Xmethods In Python}.
2662
2663 An xmethod matcher should be an instance of a class derived from
2664 @code{XMethodMatcher} defined in the module @code{gdb.xmethod}, or an
2665 object with similar interface and attributes. An instance of
2666 @code{XMethodMatcher} has the following attributes:
2667
2668 @defvar name
2669 The name of the matcher.
2670 @end defvar
2671
2672 @defvar enabled
2673 A boolean value indicating whether the matcher is enabled or disabled.
2674 @end defvar
2675
2676 @defvar methods
2677 A list of named methods managed by the matcher. Each object in the list
2678 is an instance of the class @code{XMethod} defined in the module
2679 @code{gdb.xmethod}, or any object with the following attributes:
2680
2681 @table @code
2682
2683 @item name
2684 Name of the xmethod which should be unique for each xmethod
2685 managed by the matcher.
2686
2687 @item enabled
2688 A boolean value indicating whether the xmethod is enabled or
2689 disabled.
2690
2691 @end table
2692
2693 The class @code{XMethod} is a convenience class with same
2694 attributes as above along with the following constructor:
2695
2696 @defun XMethod.__init__ (self, name)
2697 Constructs an enabled xmethod with name @var{name}.
2698 @end defun
2699 @end defvar
2700
2701 @noindent
2702 The @code{XMethodMatcher} class has the following methods:
2703
2704 @defun XMethodMatcher.__init__ (self, name)
2705 Constructs an enabled xmethod matcher with name @var{name}. The
2706 @code{methods} attribute is initialized to @code{None}.
2707 @end defun
2708
2709 @defun XMethodMatcher.match (self, class_type, method_name)
2710 Derived classes should override this method. It should return a
2711 xmethod worker object (or a sequence of xmethod worker
2712 objects) matching the @var{class_type} and @var{method_name}.
2713 @var{class_type} is a @code{gdb.Type} object, and @var{method_name}
2714 is a string value. If the matcher manages named methods as listed in
2715 its @code{methods} attribute, then only those worker objects whose
2716 corresponding entries in the @code{methods} list are enabled should be
2717 returned.
2718 @end defun
2719
2720 An xmethod worker should be an instance of a class derived from
2721 @code{XMethodWorker} defined in the module @code{gdb.xmethod},
2722 or support the following interface:
2723
2724 @defun XMethodWorker.get_arg_types (self)
2725 This method returns a sequence of @code{gdb.Type} objects corresponding
2726 to the arguments that the xmethod takes. It can return an empty
2727 sequence or @code{None} if the xmethod does not take any arguments.
2728 If the xmethod takes a single argument, then a single
2729 @code{gdb.Type} object corresponding to it can be returned.
2730 @end defun
2731
2732 @defun XMethodWorker.get_result_type (self, *args)
2733 This method returns a @code{gdb.Type} object representing the type
2734 of the result of invoking this xmethod.
2735 The @var{args} argument is the same tuple of arguments that would be
2736 passed to the @code{__call__} method of this worker.
2737 @end defun
2738
2739 @defun XMethodWorker.__call__ (self, *args)
2740 This is the method which does the @emph{work} of the xmethod. The
2741 @var{args} arguments is the tuple of arguments to the xmethod. Each
2742 element in this tuple is a gdb.Value object. The first element is
2743 always the @code{this} pointer value.
2744 @end defun
2745
2746 For @value{GDBN} to lookup xmethods, the xmethod matchers
2747 should be registered using the following function defined in the module
2748 @code{gdb.xmethod}:
2749
2750 @defun register_xmethod_matcher (locus, matcher, replace=False)
2751 The @code{matcher} is registered with @code{locus}, replacing an
2752 existing matcher with the same name as @code{matcher} if
2753 @code{replace} is @code{True}. @code{locus} can be a
2754 @code{gdb.Objfile} object (@pxref{Objfiles In Python}), or a
2755 @code{gdb.Progspace} object (@pxref{Progspaces In Python}), or
2756 @code{None}. If it is @code{None}, then @code{matcher} is registered
2757 globally.
2758 @end defun
2759
2760 @node Writing an Xmethod
2761 @subsubsection Writing an Xmethod
2762 @cindex writing xmethods in Python
2763
2764 Implementing xmethods in Python will require implementing xmethod
2765 matchers and xmethod workers (@pxref{Xmethods In Python}). Consider
2766 the following C@t{++} class:
2767
2768 @smallexample
2769 class MyClass
2770 @{
2771 public:
2772 MyClass (int a) : a_(a) @{ @}
2773
2774 int geta (void) @{ return a_; @}
2775 int operator+ (int b);
2776
2777 private:
2778 int a_;
2779 @};
2780
2781 int
2782 MyClass::operator+ (int b)
2783 @{
2784 return a_ + b;
2785 @}
2786 @end smallexample
2787
2788 @noindent
2789 Let us define two xmethods for the class @code{MyClass}, one
2790 replacing the method @code{geta}, and another adding an overloaded
2791 flavor of @code{operator+} which takes a @code{MyClass} argument (the
2792 C@t{++} code above already has an overloaded @code{operator+}
2793 which takes an @code{int} argument). The xmethod matcher can be
2794 defined as follows:
2795
2796 @smallexample
2797 class MyClass_geta(gdb.xmethod.XMethod):
2798 def __init__(self):
2799 gdb.xmethod.XMethod.__init__(self, 'geta')
2800
2801 def get_worker(self, method_name):
2802 if method_name == 'geta':
2803 return MyClassWorker_geta()
2804
2805
2806 class MyClass_sum(gdb.xmethod.XMethod):
2807 def __init__(self):
2808 gdb.xmethod.XMethod.__init__(self, 'sum')
2809
2810 def get_worker(self, method_name):
2811 if method_name == 'operator+':
2812 return MyClassWorker_plus()
2813
2814
2815 class MyClassMatcher(gdb.xmethod.XMethodMatcher):
2816 def __init__(self):
2817 gdb.xmethod.XMethodMatcher.__init__(self, 'MyClassMatcher')
2818 # List of methods 'managed' by this matcher
2819 self.methods = [MyClass_geta(), MyClass_sum()]
2820
2821 def match(self, class_type, method_name):
2822 if class_type.tag != 'MyClass':
2823 return None
2824 workers = []
2825 for method in self.methods:
2826 if method.enabled:
2827 worker = method.get_worker(method_name)
2828 if worker:
2829 workers.append(worker)
2830
2831 return workers
2832 @end smallexample
2833
2834 @noindent
2835 Notice that the @code{match} method of @code{MyClassMatcher} returns
2836 a worker object of type @code{MyClassWorker_geta} for the @code{geta}
2837 method, and a worker object of type @code{MyClassWorker_plus} for the
2838 @code{operator+} method. This is done indirectly via helper classes
2839 derived from @code{gdb.xmethod.XMethod}. One does not need to use the
2840 @code{methods} attribute in a matcher as it is optional. However, if a
2841 matcher manages more than one xmethod, it is a good practice to list the
2842 xmethods in the @code{methods} attribute of the matcher. This will then
2843 facilitate enabling and disabling individual xmethods via the
2844 @code{enable/disable} commands. Notice also that a worker object is
2845 returned only if the corresponding entry in the @code{methods} attribute
2846 of the matcher is enabled.
2847
2848 The implementation of the worker classes returned by the matcher setup
2849 above is as follows:
2850
2851 @smallexample
2852 class MyClassWorker_geta(gdb.xmethod.XMethodWorker):
2853 def get_arg_types(self):
2854 return None
2855
2856 def get_result_type(self, obj):
2857 return gdb.lookup_type('int')
2858
2859 def __call__(self, obj):
2860 return obj['a_']
2861
2862
2863 class MyClassWorker_plus(gdb.xmethod.XMethodWorker):
2864 def get_arg_types(self):
2865 return gdb.lookup_type('MyClass')
2866
2867 def get_result_type(self, obj):
2868 return gdb.lookup_type('int')
2869
2870 def __call__(self, obj, other):
2871 return obj['a_'] + other['a_']
2872 @end smallexample
2873
2874 For @value{GDBN} to actually lookup a xmethod, it has to be
2875 registered with it. The matcher defined above is registered with
2876 @value{GDBN} globally as follows:
2877
2878 @smallexample
2879 gdb.xmethod.register_xmethod_matcher(None, MyClassMatcher())
2880 @end smallexample
2881
2882 If an object @code{obj} of type @code{MyClass} is initialized in C@t{++}
2883 code as follows:
2884
2885 @smallexample
2886 MyClass obj(5);
2887 @end smallexample
2888
2889 @noindent
2890 then, after loading the Python script defining the xmethod matchers
2891 and workers into @code{GDBN}, invoking the method @code{geta} or using
2892 the operator @code{+} on @code{obj} will invoke the xmethods
2893 defined above:
2894
2895 @smallexample
2896 (gdb) p obj.geta()
2897 $1 = 5
2898
2899 (gdb) p obj + obj
2900 $2 = 10
2901 @end smallexample
2902
2903 Consider another example with a C++ template class:
2904
2905 @smallexample
2906 template <class T>
2907 class MyTemplate
2908 @{
2909 public:
2910 MyTemplate () : dsize_(10), data_ (new T [10]) @{ @}
2911 ~MyTemplate () @{ delete [] data_; @}
2912
2913 int footprint (void)
2914 @{
2915 return sizeof (T) * dsize_ + sizeof (MyTemplate<T>);
2916 @}
2917
2918 private:
2919 int dsize_;
2920 T *data_;
2921 @};
2922 @end smallexample
2923
2924 Let us implement an xmethod for the above class which serves as a
2925 replacement for the @code{footprint} method. The full code listing
2926 of the xmethod workers and xmethod matchers is as follows:
2927
2928 @smallexample
2929 class MyTemplateWorker_footprint(gdb.xmethod.XMethodWorker):
2930 def __init__(self, class_type):
2931 self.class_type = class_type
2932
2933 def get_arg_types(self):
2934 return None
2935
2936 def get_result_type(self):
2937 return gdb.lookup_type('int')
2938
2939 def __call__(self, obj):
2940 return (self.class_type.sizeof +
2941 obj['dsize_'] *
2942 self.class_type.template_argument(0).sizeof)
2943
2944
2945 class MyTemplateMatcher_footprint(gdb.xmethod.XMethodMatcher):
2946 def __init__(self):
2947 gdb.xmethod.XMethodMatcher.__init__(self, 'MyTemplateMatcher')
2948
2949 def match(self, class_type, method_name):
2950 if (re.match('MyTemplate<[ \t\n]*[_a-zA-Z][ _a-zA-Z0-9]*>',
2951 class_type.tag) and
2952 method_name == 'footprint'):
2953 return MyTemplateWorker_footprint(class_type)
2954 @end smallexample
2955
2956 Notice that, in this example, we have not used the @code{methods}
2957 attribute of the matcher as the matcher manages only one xmethod. The
2958 user can enable/disable this xmethod by enabling/disabling the matcher
2959 itself.
2960
2961 @node Inferiors In Python
2962 @subsubsection Inferiors In Python
2963 @cindex inferiors in Python
2964
2965 @findex gdb.Inferior
2966 Programs which are being run under @value{GDBN} are called inferiors
2967 (@pxref{Inferiors Connections and Programs}). Python scripts can access
2968 information about and manipulate inferiors controlled by @value{GDBN}
2969 via objects of the @code{gdb.Inferior} class.
2970
2971 The following inferior-related functions are available in the @code{gdb}
2972 module:
2973
2974 @defun gdb.inferiors ()
2975 Return a tuple containing all inferior objects.
2976 @end defun
2977
2978 @defun gdb.selected_inferior ()
2979 Return an object representing the current inferior.
2980 @end defun
2981
2982 A @code{gdb.Inferior} object has the following attributes:
2983
2984 @defvar Inferior.num
2985 ID of inferior, as assigned by GDB.
2986 @end defvar
2987
2988 @defvar Inferior.pid
2989 Process ID of the inferior, as assigned by the underlying operating
2990 system.
2991 @end defvar
2992
2993 @defvar Inferior.was_attached
2994 Boolean signaling whether the inferior was created using `attach', or
2995 started by @value{GDBN} itself.
2996 @end defvar
2997
2998 @defvar Inferior.progspace
2999 The inferior's program space. @xref{Progspaces In Python}.
3000 @end defvar
3001
3002 A @code{gdb.Inferior} object has the following methods:
3003
3004 @defun Inferior.is_valid ()
3005 Returns @code{True} if the @code{gdb.Inferior} object is valid,
3006 @code{False} if not. A @code{gdb.Inferior} object will become invalid
3007 if the inferior no longer exists within @value{GDBN}. All other
3008 @code{gdb.Inferior} methods will throw an exception if it is invalid
3009 at the time the method is called.
3010 @end defun
3011
3012 @defun Inferior.threads ()
3013 This method returns a tuple holding all the threads which are valid
3014 when it is called. If there are no valid threads, the method will
3015 return an empty tuple.
3016 @end defun
3017
3018 @defun Inferior.architecture ()
3019 Return the @code{gdb.Architecture} (@pxref{Architectures In Python})
3020 for this inferior. This represents the architecture of the inferior
3021 as a whole. Some platforms can have multiple architectures in a
3022 single address space, so this may not match the architecture of a
3023 particular frame (@pxref{Frames In Python}).
3024 @end defun
3025
3026 @findex Inferior.read_memory
3027 @defun Inferior.read_memory (address, length)
3028 Read @var{length} addressable memory units from the inferior, starting at
3029 @var{address}. Returns a buffer object, which behaves much like an array
3030 or a string. It can be modified and given to the
3031 @code{Inferior.write_memory} function. In Python 3, the return
3032 value is a @code{memoryview} object.
3033 @end defun
3034
3035 @findex Inferior.write_memory
3036 @defun Inferior.write_memory (address, buffer @r{[}, length@r{]})
3037 Write the contents of @var{buffer} to the inferior, starting at
3038 @var{address}. The @var{buffer} parameter must be a Python object
3039 which supports the buffer protocol, i.e., a string, an array or the
3040 object returned from @code{Inferior.read_memory}. If given, @var{length}
3041 determines the number of addressable memory units from @var{buffer} to be
3042 written.
3043 @end defun
3044
3045 @findex gdb.search_memory
3046 @defun Inferior.search_memory (address, length, pattern)
3047 Search a region of the inferior memory starting at @var{address} with
3048 the given @var{length} using the search pattern supplied in
3049 @var{pattern}. The @var{pattern} parameter must be a Python object
3050 which supports the buffer protocol, i.e., a string, an array or the
3051 object returned from @code{gdb.read_memory}. Returns a Python @code{Long}
3052 containing the address where the pattern was found, or @code{None} if
3053 the pattern could not be found.
3054 @end defun
3055
3056 @findex Inferior.thread_from_handle
3057 @findex Inferior.thread_from_thread_handle
3058 @defun Inferior.thread_from_handle (handle)
3059 Return the thread object corresponding to @var{handle}, a thread
3060 library specific data structure such as @code{pthread_t} for pthreads
3061 library implementations.
3062
3063 The function @code{Inferior.thread_from_thread_handle} provides
3064 the same functionality, but use of @code{Inferior.thread_from_thread_handle}
3065 is deprecated.
3066 @end defun
3067
3068 @node Events In Python
3069 @subsubsection Events In Python
3070 @cindex inferior events in Python
3071
3072 @value{GDBN} provides a general event facility so that Python code can be
3073 notified of various state changes, particularly changes that occur in
3074 the inferior.
3075
3076 An @dfn{event} is just an object that describes some state change. The
3077 type of the object and its attributes will vary depending on the details
3078 of the change. All the existing events are described below.
3079
3080 In order to be notified of an event, you must register an event handler
3081 with an @dfn{event registry}. An event registry is an object in the
3082 @code{gdb.events} module which dispatches particular events. A registry
3083 provides methods to register and unregister event handlers:
3084
3085 @defun EventRegistry.connect (object)
3086 Add the given callable @var{object} to the registry. This object will be
3087 called when an event corresponding to this registry occurs.
3088 @end defun
3089
3090 @defun EventRegistry.disconnect (object)
3091 Remove the given @var{object} from the registry. Once removed, the object
3092 will no longer receive notifications of events.
3093 @end defun
3094
3095 Here is an example:
3096
3097 @smallexample
3098 def exit_handler (event):
3099 print "event type: exit"
3100 print "exit code: %d" % (event.exit_code)
3101
3102 gdb.events.exited.connect (exit_handler)
3103 @end smallexample
3104
3105 In the above example we connect our handler @code{exit_handler} to the
3106 registry @code{events.exited}. Once connected, @code{exit_handler} gets
3107 called when the inferior exits. The argument @dfn{event} in this example is
3108 of type @code{gdb.ExitedEvent}. As you can see in the example the
3109 @code{ExitedEvent} object has an attribute which indicates the exit code of
3110 the inferior.
3111
3112 The following is a listing of the event registries that are available and
3113 details of the events they emit:
3114
3115 @table @code
3116
3117 @item events.cont
3118 Emits @code{gdb.ThreadEvent}.
3119
3120 Some events can be thread specific when @value{GDBN} is running in non-stop
3121 mode. When represented in Python, these events all extend
3122 @code{gdb.ThreadEvent}. Note, this event is not emitted directly; instead,
3123 events which are emitted by this or other modules might extend this event.
3124 Examples of these events are @code{gdb.BreakpointEvent} and
3125 @code{gdb.ContinueEvent}.
3126
3127 @defvar ThreadEvent.inferior_thread
3128 In non-stop mode this attribute will be set to the specific thread which was
3129 involved in the emitted event. Otherwise, it will be set to @code{None}.
3130 @end defvar
3131
3132 Emits @code{gdb.ContinueEvent} which extends @code{gdb.ThreadEvent}.
3133
3134 This event indicates that the inferior has been continued after a stop. For
3135 inherited attribute refer to @code{gdb.ThreadEvent} above.
3136
3137 @item events.exited
3138 Emits @code{events.ExitedEvent} which indicates that the inferior has exited.
3139 @code{events.ExitedEvent} has two attributes:
3140 @defvar ExitedEvent.exit_code
3141 An integer representing the exit code, if available, which the inferior
3142 has returned. (The exit code could be unavailable if, for example,
3143 @value{GDBN} detaches from the inferior.) If the exit code is unavailable,
3144 the attribute does not exist.
3145 @end defvar
3146 @defvar ExitedEvent.inferior
3147 A reference to the inferior which triggered the @code{exited} event.
3148 @end defvar
3149
3150 @item events.stop
3151 Emits @code{gdb.StopEvent} which extends @code{gdb.ThreadEvent}.
3152
3153 Indicates that the inferior has stopped. All events emitted by this registry
3154 extend StopEvent. As a child of @code{gdb.ThreadEvent}, @code{gdb.StopEvent}
3155 will indicate the stopped thread when @value{GDBN} is running in non-stop
3156 mode. Refer to @code{gdb.ThreadEvent} above for more details.
3157
3158 Emits @code{gdb.SignalEvent} which extends @code{gdb.StopEvent}.
3159
3160 This event indicates that the inferior or one of its threads has received as
3161 signal. @code{gdb.SignalEvent} has the following attributes:
3162
3163 @defvar SignalEvent.stop_signal
3164 A string representing the signal received by the inferior. A list of possible
3165 signal values can be obtained by running the command @code{info signals} in
3166 the @value{GDBN} command prompt.
3167 @end defvar
3168
3169 Also emits @code{gdb.BreakpointEvent} which extends @code{gdb.StopEvent}.
3170
3171 @code{gdb.BreakpointEvent} event indicates that one or more breakpoints have
3172 been hit, and has the following attributes:
3173
3174 @defvar BreakpointEvent.breakpoints
3175 A sequence containing references to all the breakpoints (type
3176 @code{gdb.Breakpoint}) that were hit.
3177 @xref{Breakpoints In Python}, for details of the @code{gdb.Breakpoint} object.
3178 @end defvar
3179 @defvar BreakpointEvent.breakpoint
3180 A reference to the first breakpoint that was hit.
3181 This function is maintained for backward compatibility and is now deprecated
3182 in favor of the @code{gdb.BreakpointEvent.breakpoints} attribute.
3183 @end defvar
3184
3185 @item events.new_objfile
3186 Emits @code{gdb.NewObjFileEvent} which indicates that a new object file has
3187 been loaded by @value{GDBN}. @code{gdb.NewObjFileEvent} has one attribute:
3188
3189 @defvar NewObjFileEvent.new_objfile
3190 A reference to the object file (@code{gdb.Objfile}) which has been loaded.
3191 @xref{Objfiles In Python}, for details of the @code{gdb.Objfile} object.
3192 @end defvar
3193
3194 @item events.clear_objfiles
3195 Emits @code{gdb.ClearObjFilesEvent} which indicates that the list of object
3196 files for a program space has been reset.
3197 @code{gdb.ClearObjFilesEvent} has one attribute:
3198
3199 @defvar ClearObjFilesEvent.progspace
3200 A reference to the program space (@code{gdb.Progspace}) whose objfile list has
3201 been cleared. @xref{Progspaces In Python}.
3202 @end defvar
3203
3204 @item events.inferior_call
3205 Emits events just before and after a function in the inferior is
3206 called by @value{GDBN}. Before an inferior call, this emits an event
3207 of type @code{gdb.InferiorCallPreEvent}, and after an inferior call,
3208 this emits an event of type @code{gdb.InferiorCallPostEvent}.
3209
3210 @table @code
3211 @tindex gdb.InferiorCallPreEvent
3212 @item @code{gdb.InferiorCallPreEvent}
3213 Indicates that a function in the inferior is about to be called.
3214
3215 @defvar InferiorCallPreEvent.ptid
3216 The thread in which the call will be run.
3217 @end defvar
3218
3219 @defvar InferiorCallPreEvent.address
3220 The location of the function to be called.
3221 @end defvar
3222
3223 @tindex gdb.InferiorCallPostEvent
3224 @item @code{gdb.InferiorCallPostEvent}
3225 Indicates that a function in the inferior has just been called.
3226
3227 @defvar InferiorCallPostEvent.ptid
3228 The thread in which the call was run.
3229 @end defvar
3230
3231 @defvar InferiorCallPostEvent.address
3232 The location of the function that was called.
3233 @end defvar
3234 @end table
3235
3236 @item events.memory_changed
3237 Emits @code{gdb.MemoryChangedEvent} which indicates that the memory of the
3238 inferior has been modified by the @value{GDBN} user, for instance via a
3239 command like @w{@code{set *addr = value}}. The event has the following
3240 attributes:
3241
3242 @defvar MemoryChangedEvent.address
3243 The start address of the changed region.
3244 @end defvar
3245
3246 @defvar MemoryChangedEvent.length
3247 Length in bytes of the changed region.
3248 @end defvar
3249
3250 @item events.register_changed
3251 Emits @code{gdb.RegisterChangedEvent} which indicates that a register in the
3252 inferior has been modified by the @value{GDBN} user.
3253
3254 @defvar RegisterChangedEvent.frame
3255 A gdb.Frame object representing the frame in which the register was modified.
3256 @end defvar
3257 @defvar RegisterChangedEvent.regnum
3258 Denotes which register was modified.
3259 @end defvar
3260
3261 @item events.breakpoint_created
3262 This is emitted when a new breakpoint has been created. The argument
3263 that is passed is the new @code{gdb.Breakpoint} object.
3264
3265 @item events.breakpoint_modified
3266 This is emitted when a breakpoint has been modified in some way. The
3267 argument that is passed is the new @code{gdb.Breakpoint} object.
3268
3269 @item events.breakpoint_deleted
3270 This is emitted when a breakpoint has been deleted. The argument that
3271 is passed is the @code{gdb.Breakpoint} object. When this event is
3272 emitted, the @code{gdb.Breakpoint} object will already be in its
3273 invalid state; that is, the @code{is_valid} method will return
3274 @code{False}.
3275
3276 @item events.before_prompt
3277 This event carries no payload. It is emitted each time @value{GDBN}
3278 presents a prompt to the user.
3279
3280 @item events.new_inferior
3281 This is emitted when a new inferior is created. Note that the
3282 inferior is not necessarily running; in fact, it may not even have an
3283 associated executable.
3284
3285 The event is of type @code{gdb.NewInferiorEvent}. This has a single
3286 attribute:
3287
3288 @defvar NewInferiorEvent.inferior
3289 The new inferior, a @code{gdb.Inferior} object.
3290 @end defvar
3291
3292 @item events.inferior_deleted
3293 This is emitted when an inferior has been deleted. Note that this is
3294 not the same as process exit; it is notified when the inferior itself
3295 is removed, say via @code{remove-inferiors}.
3296
3297 The event is of type @code{gdb.InferiorDeletedEvent}. This has a single
3298 attribute:
3299
3300 @defvar NewInferiorEvent.inferior
3301 The inferior that is being removed, a @code{gdb.Inferior} object.
3302 @end defvar
3303
3304 @item events.new_thread
3305 This is emitted when @value{GDBN} notices a new thread. The event is of
3306 type @code{gdb.NewThreadEvent}, which extends @code{gdb.ThreadEvent}.
3307 This has a single attribute:
3308
3309 @defvar NewThreadEvent.inferior_thread
3310 The new thread.
3311 @end defvar
3312
3313 @end table
3314
3315 @node Threads In Python
3316 @subsubsection Threads In Python
3317 @cindex threads in python
3318
3319 @findex gdb.InferiorThread
3320 Python scripts can access information about, and manipulate inferior threads
3321 controlled by @value{GDBN}, via objects of the @code{gdb.InferiorThread} class.
3322
3323 The following thread-related functions are available in the @code{gdb}
3324 module:
3325
3326 @findex gdb.selected_thread
3327 @defun gdb.selected_thread ()
3328 This function returns the thread object for the selected thread. If there
3329 is no selected thread, this will return @code{None}.
3330 @end defun
3331
3332 To get the list of threads for an inferior, use the @code{Inferior.threads()}
3333 method. @xref{Inferiors In Python}.
3334
3335 A @code{gdb.InferiorThread} object has the following attributes:
3336
3337 @defvar InferiorThread.name
3338 The name of the thread. If the user specified a name using
3339 @code{thread name}, then this returns that name. Otherwise, if an
3340 OS-supplied name is available, then it is returned. Otherwise, this
3341 returns @code{None}.
3342
3343 This attribute can be assigned to. The new value must be a string
3344 object, which sets the new name, or @code{None}, which removes any
3345 user-specified thread name.
3346 @end defvar
3347
3348 @defvar InferiorThread.num
3349 The per-inferior number of the thread, as assigned by GDB.
3350 @end defvar
3351
3352 @defvar InferiorThread.global_num
3353 The global ID of the thread, as assigned by GDB. You can use this to
3354 make Python breakpoints thread-specific, for example
3355 (@pxref{python_breakpoint_thread,,The Breakpoint.thread attribute}).
3356 @end defvar
3357
3358 @defvar InferiorThread.ptid
3359 ID of the thread, as assigned by the operating system. This attribute is a
3360 tuple containing three integers. The first is the Process ID (PID); the second
3361 is the Lightweight Process ID (LWPID), and the third is the Thread ID (TID).
3362 Either the LWPID or TID may be 0, which indicates that the operating system
3363 does not use that identifier.
3364 @end defvar
3365
3366 @defvar InferiorThread.inferior
3367 The inferior this thread belongs to. This attribute is represented as
3368 a @code{gdb.Inferior} object. This attribute is not writable.
3369 @end defvar
3370
3371 A @code{gdb.InferiorThread} object has the following methods:
3372
3373 @defun InferiorThread.is_valid ()
3374 Returns @code{True} if the @code{gdb.InferiorThread} object is valid,
3375 @code{False} if not. A @code{gdb.InferiorThread} object will become
3376 invalid if the thread exits, or the inferior that the thread belongs
3377 is deleted. All other @code{gdb.InferiorThread} methods will throw an
3378 exception if it is invalid at the time the method is called.
3379 @end defun
3380
3381 @defun InferiorThread.switch ()
3382 This changes @value{GDBN}'s currently selected thread to the one represented
3383 by this object.
3384 @end defun
3385
3386 @defun InferiorThread.is_stopped ()
3387 Return a Boolean indicating whether the thread is stopped.
3388 @end defun
3389
3390 @defun InferiorThread.is_running ()
3391 Return a Boolean indicating whether the thread is running.
3392 @end defun
3393
3394 @defun InferiorThread.is_exited ()
3395 Return a Boolean indicating whether the thread is exited.
3396 @end defun
3397
3398 @defun InferiorThread.handle ()
3399 Return the thread object's handle, represented as a Python @code{bytes}
3400 object. A @code{gdb.Value} representation of the handle may be
3401 constructed via @code{gdb.Value(bufobj, type)} where @var{bufobj} is
3402 the Python @code{bytes} representation of the handle and @var{type} is
3403 a @code{gdb.Type} for the handle type.
3404 @end defun
3405
3406 @node Recordings In Python
3407 @subsubsection Recordings In Python
3408 @cindex recordings in python
3409
3410 The following recordings-related functions
3411 (@pxref{Process Record and Replay}) are available in the @code{gdb}
3412 module:
3413
3414 @defun gdb.start_recording (@r{[}method@r{]}, @r{[}format@r{]})
3415 Start a recording using the given @var{method} and @var{format}. If
3416 no @var{format} is given, the default format for the recording method
3417 is used. If no @var{method} is given, the default method will be used.
3418 Returns a @code{gdb.Record} object on success. Throw an exception on
3419 failure.
3420
3421 The following strings can be passed as @var{method}:
3422
3423 @itemize @bullet
3424 @item
3425 @code{"full"}
3426 @item
3427 @code{"btrace"}: Possible values for @var{format}: @code{"pt"},
3428 @code{"bts"} or leave out for default format.
3429 @end itemize
3430 @end defun
3431
3432 @defun gdb.current_recording ()
3433 Access a currently running recording. Return a @code{gdb.Record}
3434 object on success. Return @code{None} if no recording is currently
3435 active.
3436 @end defun
3437
3438 @defun gdb.stop_recording ()
3439 Stop the current recording. Throw an exception if no recording is
3440 currently active. All record objects become invalid after this call.
3441 @end defun
3442
3443 A @code{gdb.Record} object has the following attributes:
3444
3445 @defvar Record.method
3446 A string with the current recording method, e.g.@: @code{full} or
3447 @code{btrace}.
3448 @end defvar
3449
3450 @defvar Record.format
3451 A string with the current recording format, e.g.@: @code{bt}, @code{pts} or
3452 @code{None}.
3453 @end defvar
3454
3455 @defvar Record.begin
3456 A method specific instruction object representing the first instruction
3457 in this recording.
3458 @end defvar
3459
3460 @defvar Record.end
3461 A method specific instruction object representing the current
3462 instruction, that is not actually part of the recording.
3463 @end defvar
3464
3465 @defvar Record.replay_position
3466 The instruction representing the current replay position. If there is
3467 no replay active, this will be @code{None}.
3468 @end defvar
3469
3470 @defvar Record.instruction_history
3471 A list with all recorded instructions.
3472 @end defvar
3473
3474 @defvar Record.function_call_history
3475 A list with all recorded function call segments.
3476 @end defvar
3477
3478 A @code{gdb.Record} object has the following methods:
3479
3480 @defun Record.goto (instruction)
3481 Move the replay position to the given @var{instruction}.
3482 @end defun
3483
3484 The common @code{gdb.Instruction} class that recording method specific
3485 instruction objects inherit from, has the following attributes:
3486
3487 @defvar Instruction.pc
3488 An integer representing this instruction's address.
3489 @end defvar
3490
3491 @defvar Instruction.data
3492 A buffer with the raw instruction data. In Python 3, the return value is a
3493 @code{memoryview} object.
3494 @end defvar
3495
3496 @defvar Instruction.decoded
3497 A human readable string with the disassembled instruction.
3498 @end defvar
3499
3500 @defvar Instruction.size
3501 The size of the instruction in bytes.
3502 @end defvar
3503
3504 Additionally @code{gdb.RecordInstruction} has the following attributes:
3505
3506 @defvar RecordInstruction.number
3507 An integer identifying this instruction. @code{number} corresponds to
3508 the numbers seen in @code{record instruction-history}
3509 (@pxref{Process Record and Replay}).
3510 @end defvar
3511
3512 @defvar RecordInstruction.sal
3513 A @code{gdb.Symtab_and_line} object representing the associated symtab
3514 and line of this instruction. May be @code{None} if no debug information is
3515 available.
3516 @end defvar
3517
3518 @defvar RecordInstruction.is_speculative
3519 A boolean indicating whether the instruction was executed speculatively.
3520 @end defvar
3521
3522 If an error occured during recording or decoding a recording, this error is
3523 represented by a @code{gdb.RecordGap} object in the instruction list. It has
3524 the following attributes:
3525
3526 @defvar RecordGap.number
3527 An integer identifying this gap. @code{number} corresponds to the numbers seen
3528 in @code{record instruction-history} (@pxref{Process Record and Replay}).
3529 @end defvar
3530
3531 @defvar RecordGap.error_code
3532 A numerical representation of the reason for the gap. The value is specific to
3533 the current recording method.
3534 @end defvar
3535
3536 @defvar RecordGap.error_string
3537 A human readable string with the reason for the gap.
3538 @end defvar
3539
3540 A @code{gdb.RecordFunctionSegment} object has the following attributes:
3541
3542 @defvar RecordFunctionSegment.number
3543 An integer identifying this function segment. @code{number} corresponds to
3544 the numbers seen in @code{record function-call-history}
3545 (@pxref{Process Record and Replay}).
3546 @end defvar
3547
3548 @defvar RecordFunctionSegment.symbol
3549 A @code{gdb.Symbol} object representing the associated symbol. May be
3550 @code{None} if no debug information is available.
3551 @end defvar
3552
3553 @defvar RecordFunctionSegment.level
3554 An integer representing the function call's stack level. May be
3555 @code{None} if the function call is a gap.
3556 @end defvar
3557
3558 @defvar RecordFunctionSegment.instructions
3559 A list of @code{gdb.RecordInstruction} or @code{gdb.RecordGap} objects
3560 associated with this function call.
3561 @end defvar
3562
3563 @defvar RecordFunctionSegment.up
3564 A @code{gdb.RecordFunctionSegment} object representing the caller's
3565 function segment. If the call has not been recorded, this will be the
3566 function segment to which control returns. If neither the call nor the
3567 return have been recorded, this will be @code{None}.
3568 @end defvar
3569
3570 @defvar RecordFunctionSegment.prev
3571 A @code{gdb.RecordFunctionSegment} object representing the previous
3572 segment of this function call. May be @code{None}.
3573 @end defvar
3574
3575 @defvar RecordFunctionSegment.next
3576 A @code{gdb.RecordFunctionSegment} object representing the next segment of
3577 this function call. May be @code{None}.
3578 @end defvar
3579
3580 The following example demonstrates the usage of these objects and
3581 functions to create a function that will rewind a record to the last
3582 time a function in a different file was executed. This would typically
3583 be used to track the execution of user provided callback functions in a
3584 library which typically are not visible in a back trace.
3585
3586 @smallexample
3587 def bringback ():
3588 rec = gdb.current_recording ()
3589 if not rec:
3590 return
3591
3592 insn = rec.instruction_history
3593 if len (insn) == 0:
3594 return
3595
3596 try:
3597 position = insn.index (rec.replay_position)
3598 except:
3599 position = -1
3600 try:
3601 filename = insn[position].sal.symtab.fullname ()
3602 except:
3603 filename = None
3604
3605 for i in reversed (insn[:position]):
3606 try:
3607 current = i.sal.symtab.fullname ()
3608 except:
3609 current = None
3610
3611 if filename == current:
3612 continue
3613
3614 rec.goto (i)
3615 return
3616 @end smallexample
3617
3618 Another possible application is to write a function that counts the
3619 number of code executions in a given line range. This line range can
3620 contain parts of functions or span across several functions and is not
3621 limited to be contiguous.
3622
3623 @smallexample
3624 def countrange (filename, linerange):
3625 count = 0
3626
3627 def filter_only (file_name):
3628 for call in gdb.current_recording ().function_call_history:
3629 try:
3630 if file_name in call.symbol.symtab.fullname ():
3631 yield call
3632 except:
3633 pass
3634
3635 for c in filter_only (filename):
3636 for i in c.instructions:
3637 try:
3638 if i.sal.line in linerange:
3639 count += 1
3640 break;
3641 except:
3642 pass
3643
3644 return count
3645 @end smallexample
3646
3647 @node Commands In Python
3648 @subsubsection Commands In Python
3649
3650 @cindex commands in python
3651 @cindex python commands
3652 You can implement new @value{GDBN} CLI commands in Python. A CLI
3653 command is implemented using an instance of the @code{gdb.Command}
3654 class, most commonly using a subclass.
3655
3656 @defun Command.__init__ (name, @var{command_class} @r{[}, @var{completer_class} @r{[}, @var{prefix}@r{]]})
3657 The object initializer for @code{Command} registers the new command
3658 with @value{GDBN}. This initializer is normally invoked from the
3659 subclass' own @code{__init__} method.
3660
3661 @var{name} is the name of the command. If @var{name} consists of
3662 multiple words, then the initial words are looked for as prefix
3663 commands. In this case, if one of the prefix commands does not exist,
3664 an exception is raised.
3665
3666 There is no support for multi-line commands.
3667
3668 @var{command_class} should be one of the @samp{COMMAND_} constants
3669 defined below. This argument tells @value{GDBN} how to categorize the
3670 new command in the help system.
3671
3672 @var{completer_class} is an optional argument. If given, it should be
3673 one of the @samp{COMPLETE_} constants defined below. This argument
3674 tells @value{GDBN} how to perform completion for this command. If not
3675 given, @value{GDBN} will attempt to complete using the object's
3676 @code{complete} method (see below); if no such method is found, an
3677 error will occur when completion is attempted.
3678
3679 @var{prefix} is an optional argument. If @code{True}, then the new
3680 command is a prefix command; sub-commands of this command may be
3681 registered.
3682
3683 The help text for the new command is taken from the Python
3684 documentation string for the command's class, if there is one. If no
3685 documentation string is provided, the default value ``This command is
3686 not documented.'' is used.
3687 @end defun
3688
3689 @cindex don't repeat Python command
3690 @defun Command.dont_repeat ()
3691 By default, a @value{GDBN} command is repeated when the user enters a
3692 blank line at the command prompt. A command can suppress this
3693 behavior by invoking the @code{dont_repeat} method. This is similar
3694 to the user command @code{dont-repeat}, see @ref{Define, dont-repeat}.
3695 @end defun
3696
3697 @defun Command.invoke (argument, from_tty)
3698 This method is called by @value{GDBN} when this command is invoked.
3699
3700 @var{argument} is a string. It is the argument to the command, after
3701 leading and trailing whitespace has been stripped.
3702
3703 @var{from_tty} is a boolean argument. When true, this means that the
3704 command was entered by the user at the terminal; when false it means
3705 that the command came from elsewhere.
3706
3707 If this method throws an exception, it is turned into a @value{GDBN}
3708 @code{error} call. Otherwise, the return value is ignored.
3709
3710 @findex gdb.string_to_argv
3711 To break @var{argument} up into an argv-like string use
3712 @code{gdb.string_to_argv}. This function behaves identically to
3713 @value{GDBN}'s internal argument lexer @code{buildargv}.
3714 It is recommended to use this for consistency.
3715 Arguments are separated by spaces and may be quoted.
3716 Example:
3717
3718 @smallexample
3719 print gdb.string_to_argv ("1 2\ \\\"3 '4 \"5' \"6 '7\"")
3720 ['1', '2 "3', '4 "5', "6 '7"]
3721 @end smallexample
3722
3723 @end defun
3724
3725 @cindex completion of Python commands
3726 @defun Command.complete (text, word)
3727 This method is called by @value{GDBN} when the user attempts
3728 completion on this command. All forms of completion are handled by
3729 this method, that is, the @key{TAB} and @key{M-?} key bindings
3730 (@pxref{Completion}), and the @code{complete} command (@pxref{Help,
3731 complete}).
3732
3733 The arguments @var{text} and @var{word} are both strings; @var{text}
3734 holds the complete command line up to the cursor's location, while
3735 @var{word} holds the last word of the command line; this is computed
3736 using a word-breaking heuristic.
3737
3738 The @code{complete} method can return several values:
3739 @itemize @bullet
3740 @item
3741 If the return value is a sequence, the contents of the sequence are
3742 used as the completions. It is up to @code{complete} to ensure that the
3743 contents actually do complete the word. A zero-length sequence is
3744 allowed, it means that there were no completions available. Only
3745 string elements of the sequence are used; other elements in the
3746 sequence are ignored.
3747
3748 @item
3749 If the return value is one of the @samp{COMPLETE_} constants defined
3750 below, then the corresponding @value{GDBN}-internal completion
3751 function is invoked, and its result is used.
3752
3753 @item
3754 All other results are treated as though there were no available
3755 completions.
3756 @end itemize
3757 @end defun
3758
3759 When a new command is registered, it must be declared as a member of
3760 some general class of commands. This is used to classify top-level
3761 commands in the on-line help system; note that prefix commands are not
3762 listed under their own category but rather that of their top-level
3763 command. The available classifications are represented by constants
3764 defined in the @code{gdb} module:
3765
3766 @table @code
3767 @findex COMMAND_NONE
3768 @findex gdb.COMMAND_NONE
3769 @item gdb.COMMAND_NONE
3770 The command does not belong to any particular class. A command in
3771 this category will not be displayed in any of the help categories.
3772
3773 @findex COMMAND_RUNNING
3774 @findex gdb.COMMAND_RUNNING
3775 @item gdb.COMMAND_RUNNING
3776 The command is related to running the inferior. For example,
3777 @code{start}, @code{step}, and @code{continue} are in this category.
3778 Type @kbd{help running} at the @value{GDBN} prompt to see a list of
3779 commands in this category.
3780
3781 @findex COMMAND_DATA
3782 @findex gdb.COMMAND_DATA
3783 @item gdb.COMMAND_DATA
3784 The command is related to data or variables. For example,
3785 @code{call}, @code{find}, and @code{print} are in this category. Type
3786 @kbd{help data} at the @value{GDBN} prompt to see a list of commands
3787 in this category.
3788
3789 @findex COMMAND_STACK
3790 @findex gdb.COMMAND_STACK
3791 @item gdb.COMMAND_STACK
3792 The command has to do with manipulation of the stack. For example,
3793 @code{backtrace}, @code{frame}, and @code{return} are in this
3794 category. Type @kbd{help stack} at the @value{GDBN} prompt to see a
3795 list of commands in this category.
3796
3797 @findex COMMAND_FILES
3798 @findex gdb.COMMAND_FILES
3799 @item gdb.COMMAND_FILES
3800 This class is used for file-related commands. For example,
3801 @code{file}, @code{list} and @code{section} are in this category.
3802 Type @kbd{help files} at the @value{GDBN} prompt to see a list of
3803 commands in this category.
3804
3805 @findex COMMAND_SUPPORT
3806 @findex gdb.COMMAND_SUPPORT
3807 @item gdb.COMMAND_SUPPORT
3808 This should be used for ``support facilities'', generally meaning
3809 things that are useful to the user when interacting with @value{GDBN},
3810 but not related to the state of the inferior. For example,
3811 @code{help}, @code{make}, and @code{shell} are in this category. Type
3812 @kbd{help support} at the @value{GDBN} prompt to see a list of
3813 commands in this category.
3814
3815 @findex COMMAND_STATUS
3816 @findex gdb.COMMAND_STATUS
3817 @item gdb.COMMAND_STATUS
3818 The command is an @samp{info}-related command, that is, related to the
3819 state of @value{GDBN} itself. For example, @code{info}, @code{macro},
3820 and @code{show} are in this category. Type @kbd{help status} at the
3821 @value{GDBN} prompt to see a list of commands in this category.
3822
3823 @findex COMMAND_BREAKPOINTS
3824 @findex gdb.COMMAND_BREAKPOINTS
3825 @item gdb.COMMAND_BREAKPOINTS
3826 The command has to do with breakpoints. For example, @code{break},
3827 @code{clear}, and @code{delete} are in this category. Type @kbd{help
3828 breakpoints} at the @value{GDBN} prompt to see a list of commands in
3829 this category.
3830
3831 @findex COMMAND_TRACEPOINTS
3832 @findex gdb.COMMAND_TRACEPOINTS
3833 @item gdb.COMMAND_TRACEPOINTS
3834 The command has to do with tracepoints. For example, @code{trace},
3835 @code{actions}, and @code{tfind} are in this category. Type
3836 @kbd{help tracepoints} at the @value{GDBN} prompt to see a list of
3837 commands in this category.
3838
3839 @findex COMMAND_TUI
3840 @findex gdb.COMMAND_TUI
3841 @item gdb.COMMAND_TUI
3842 The command has to do with the text user interface (@pxref{TUI}).
3843 Type @kbd{help tui} at the @value{GDBN} prompt to see a list of
3844 commands in this category.
3845
3846 @findex COMMAND_USER
3847 @findex gdb.COMMAND_USER
3848 @item gdb.COMMAND_USER
3849 The command is a general purpose command for the user, and typically
3850 does not fit in one of the other categories.
3851 Type @kbd{help user-defined} at the @value{GDBN} prompt to see
3852 a list of commands in this category, as well as the list of gdb macros
3853 (@pxref{Sequences}).
3854
3855 @findex COMMAND_OBSCURE
3856 @findex gdb.COMMAND_OBSCURE
3857 @item gdb.COMMAND_OBSCURE
3858 The command is only used in unusual circumstances, or is not of
3859 general interest to users. For example, @code{checkpoint},
3860 @code{fork}, and @code{stop} are in this category. Type @kbd{help
3861 obscure} at the @value{GDBN} prompt to see a list of commands in this
3862 category.
3863
3864 @findex COMMAND_MAINTENANCE
3865 @findex gdb.COMMAND_MAINTENANCE
3866 @item gdb.COMMAND_MAINTENANCE
3867 The command is only useful to @value{GDBN} maintainers. The
3868 @code{maintenance} and @code{flushregs} commands are in this category.
3869 Type @kbd{help internals} at the @value{GDBN} prompt to see a list of
3870 commands in this category.
3871 @end table
3872
3873 A new command can use a predefined completion function, either by
3874 specifying it via an argument at initialization, or by returning it
3875 from the @code{complete} method. These predefined completion
3876 constants are all defined in the @code{gdb} module:
3877
3878 @vtable @code
3879 @vindex COMPLETE_NONE
3880 @item gdb.COMPLETE_NONE
3881 This constant means that no completion should be done.
3882
3883 @vindex COMPLETE_FILENAME
3884 @item gdb.COMPLETE_FILENAME
3885 This constant means that filename completion should be performed.
3886
3887 @vindex COMPLETE_LOCATION
3888 @item gdb.COMPLETE_LOCATION
3889 This constant means that location completion should be done.
3890 @xref{Specify Location}.
3891
3892 @vindex COMPLETE_COMMAND
3893 @item gdb.COMPLETE_COMMAND
3894 This constant means that completion should examine @value{GDBN}
3895 command names.
3896
3897 @vindex COMPLETE_SYMBOL
3898 @item gdb.COMPLETE_SYMBOL
3899 This constant means that completion should be done using symbol names
3900 as the source.
3901
3902 @vindex COMPLETE_EXPRESSION
3903 @item gdb.COMPLETE_EXPRESSION
3904 This constant means that completion should be done on expressions.
3905 Often this means completing on symbol names, but some language
3906 parsers also have support for completing on field names.
3907 @end vtable
3908
3909 The following code snippet shows how a trivial CLI command can be
3910 implemented in Python:
3911
3912 @smallexample
3913 class HelloWorld (gdb.Command):
3914 """Greet the whole world."""
3915
3916 def __init__ (self):
3917 super (HelloWorld, self).__init__ ("hello-world", gdb.COMMAND_USER)
3918
3919 def invoke (self, arg, from_tty):
3920 print "Hello, World!"
3921
3922 HelloWorld ()
3923 @end smallexample
3924
3925 The last line instantiates the class, and is necessary to trigger the
3926 registration of the command with @value{GDBN}. Depending on how the
3927 Python code is read into @value{GDBN}, you may need to import the
3928 @code{gdb} module explicitly.
3929
3930 @node Parameters In Python
3931 @subsubsection Parameters In Python
3932
3933 @cindex parameters in python
3934 @cindex python parameters
3935 @tindex gdb.Parameter
3936 @tindex Parameter
3937 You can implement new @value{GDBN} parameters using Python. A new
3938 parameter is implemented as an instance of the @code{gdb.Parameter}
3939 class.
3940
3941 Parameters are exposed to the user via the @code{set} and
3942 @code{show} commands. @xref{Help}.
3943
3944 There are many parameters that already exist and can be set in
3945 @value{GDBN}. Two examples are: @code{set follow fork} and
3946 @code{set charset}. Setting these parameters influences certain
3947 behavior in @value{GDBN}. Similarly, you can define parameters that
3948 can be used to influence behavior in custom Python scripts and commands.
3949
3950 @defun Parameter.__init__ (name, @var{command-class}, @var{parameter-class} @r{[}, @var{enum-sequence}@r{]})
3951 The object initializer for @code{Parameter} registers the new
3952 parameter with @value{GDBN}. This initializer is normally invoked
3953 from the subclass' own @code{__init__} method.
3954
3955 @var{name} is the name of the new parameter. If @var{name} consists
3956 of multiple words, then the initial words are looked for as prefix
3957 parameters. An example of this can be illustrated with the
3958 @code{set print} set of parameters. If @var{name} is
3959 @code{print foo}, then @code{print} will be searched as the prefix
3960 parameter. In this case the parameter can subsequently be accessed in
3961 @value{GDBN} as @code{set print foo}.
3962
3963 If @var{name} consists of multiple words, and no prefix parameter group
3964 can be found, an exception is raised.
3965
3966 @var{command-class} should be one of the @samp{COMMAND_} constants
3967 (@pxref{Commands In Python}). This argument tells @value{GDBN} how to
3968 categorize the new parameter in the help system.
3969
3970 @var{parameter-class} should be one of the @samp{PARAM_} constants
3971 defined below. This argument tells @value{GDBN} the type of the new
3972 parameter; this information is used for input validation and
3973 completion.
3974
3975 If @var{parameter-class} is @code{PARAM_ENUM}, then
3976 @var{enum-sequence} must be a sequence of strings. These strings
3977 represent the possible values for the parameter.
3978
3979 If @var{parameter-class} is not @code{PARAM_ENUM}, then the presence
3980 of a fourth argument will cause an exception to be thrown.
3981
3982 The help text for the new parameter is taken from the Python
3983 documentation string for the parameter's class, if there is one. If
3984 there is no documentation string, a default value is used.
3985 @end defun
3986
3987 @defvar Parameter.set_doc
3988 If this attribute exists, and is a string, then its value is used as
3989 the help text for this parameter's @code{set} command. The value is
3990 examined when @code{Parameter.__init__} is invoked; subsequent changes
3991 have no effect.
3992 @end defvar
3993
3994 @defvar Parameter.show_doc
3995 If this attribute exists, and is a string, then its value is used as
3996 the help text for this parameter's @code{show} command. The value is
3997 examined when @code{Parameter.__init__} is invoked; subsequent changes
3998 have no effect.
3999 @end defvar
4000
4001 @defvar Parameter.value
4002 The @code{value} attribute holds the underlying value of the
4003 parameter. It can be read and assigned to just as any other
4004 attribute. @value{GDBN} does validation when assignments are made.
4005 @end defvar
4006
4007 There are two methods that may be implemented in any @code{Parameter}
4008 class. These are:
4009
4010 @defun Parameter.get_set_string (self)
4011 If this method exists, @value{GDBN} will call it when a
4012 @var{parameter}'s value has been changed via the @code{set} API (for
4013 example, @kbd{set foo off}). The @code{value} attribute has already
4014 been populated with the new value and may be used in output. This
4015 method must return a string. If the returned string is not empty,
4016 @value{GDBN} will present it to the user.
4017
4018 If this method raises the @code{gdb.GdbError} exception
4019 (@pxref{Exception Handling}), then @value{GDBN} will print the
4020 exception's string and the @code{set} command will fail. Note,
4021 however, that the @code{value} attribute will not be reset in this
4022 case. So, if your parameter must validate values, it should store the
4023 old value internally and reset the exposed value, like so:
4024
4025 @smallexample
4026 class ExampleParam (gdb.Parameter):
4027 def __init__ (self, name):
4028 super (ExampleParam, self).__init__ (name,
4029 gdb.COMMAND_DATA,
4030 gdb.PARAM_BOOLEAN)
4031 self.value = True
4032 self.saved_value = True
4033 def validate(self):
4034 return False
4035 def get_set_string (self):
4036 if not self.validate():
4037 self.value = self.saved_value
4038 raise gdb.GdbError('Failed to validate')
4039 self.saved_value = self.value
4040 @end smallexample
4041 @end defun
4042
4043 @defun Parameter.get_show_string (self, svalue)
4044 @value{GDBN} will call this method when a @var{parameter}'s
4045 @code{show} API has been invoked (for example, @kbd{show foo}). The
4046 argument @code{svalue} receives the string representation of the
4047 current value. This method must return a string.
4048 @end defun
4049
4050 When a new parameter is defined, its type must be specified. The
4051 available types are represented by constants defined in the @code{gdb}
4052 module:
4053
4054 @table @code
4055 @findex PARAM_BOOLEAN
4056 @findex gdb.PARAM_BOOLEAN
4057 @item gdb.PARAM_BOOLEAN
4058 The value is a plain boolean. The Python boolean values, @code{True}
4059 and @code{False} are the only valid values.
4060
4061 @findex PARAM_AUTO_BOOLEAN
4062 @findex gdb.PARAM_AUTO_BOOLEAN
4063 @item gdb.PARAM_AUTO_BOOLEAN
4064 The value has three possible states: true, false, and @samp{auto}. In
4065 Python, true and false are represented using boolean constants, and
4066 @samp{auto} is represented using @code{None}.
4067
4068 @findex PARAM_UINTEGER
4069 @findex gdb.PARAM_UINTEGER
4070 @item gdb.PARAM_UINTEGER
4071 The value is an unsigned integer. The value of 0 should be
4072 interpreted to mean ``unlimited''.
4073
4074 @findex PARAM_INTEGER
4075 @findex gdb.PARAM_INTEGER
4076 @item gdb.PARAM_INTEGER
4077 The value is a signed integer. The value of 0 should be interpreted
4078 to mean ``unlimited''.
4079
4080 @findex PARAM_STRING
4081 @findex gdb.PARAM_STRING
4082 @item gdb.PARAM_STRING
4083 The value is a string. When the user modifies the string, any escape
4084 sequences, such as @samp{\t}, @samp{\f}, and octal escapes, are
4085 translated into corresponding characters and encoded into the current
4086 host charset.
4087
4088 @findex PARAM_STRING_NOESCAPE
4089 @findex gdb.PARAM_STRING_NOESCAPE
4090 @item gdb.PARAM_STRING_NOESCAPE
4091 The value is a string. When the user modifies the string, escapes are
4092 passed through untranslated.
4093
4094 @findex PARAM_OPTIONAL_FILENAME
4095 @findex gdb.PARAM_OPTIONAL_FILENAME
4096 @item gdb.PARAM_OPTIONAL_FILENAME
4097 The value is a either a filename (a string), or @code{None}.
4098
4099 @findex PARAM_FILENAME
4100 @findex gdb.PARAM_FILENAME
4101 @item gdb.PARAM_FILENAME
4102 The value is a filename. This is just like
4103 @code{PARAM_STRING_NOESCAPE}, but uses file names for completion.
4104
4105 @findex PARAM_ZINTEGER
4106 @findex gdb.PARAM_ZINTEGER
4107 @item gdb.PARAM_ZINTEGER
4108 The value is an integer. This is like @code{PARAM_INTEGER}, except 0
4109 is interpreted as itself.
4110
4111 @findex PARAM_ZUINTEGER
4112 @findex gdb.PARAM_ZUINTEGER
4113 @item gdb.PARAM_ZUINTEGER
4114 The value is an unsigned integer. This is like @code{PARAM_INTEGER},
4115 except 0 is interpreted as itself, and the value cannot be negative.
4116
4117 @findex PARAM_ZUINTEGER_UNLIMITED
4118 @findex gdb.PARAM_ZUINTEGER_UNLIMITED
4119 @item gdb.PARAM_ZUINTEGER_UNLIMITED
4120 The value is a signed integer. This is like @code{PARAM_ZUINTEGER},
4121 except the special value -1 should be interpreted to mean
4122 ``unlimited''. Other negative values are not allowed.
4123
4124 @findex PARAM_ENUM
4125 @findex gdb.PARAM_ENUM
4126 @item gdb.PARAM_ENUM
4127 The value is a string, which must be one of a collection string
4128 constants provided when the parameter is created.
4129 @end table
4130
4131 @node Functions In Python
4132 @subsubsection Writing new convenience functions
4133
4134 @cindex writing convenience functions
4135 @cindex convenience functions in python
4136 @cindex python convenience functions
4137 @tindex gdb.Function
4138 @tindex Function
4139 You can implement new convenience functions (@pxref{Convenience Vars})
4140 in Python. A convenience function is an instance of a subclass of the
4141 class @code{gdb.Function}.
4142
4143 @defun Function.__init__ (name)
4144 The initializer for @code{Function} registers the new function with
4145 @value{GDBN}. The argument @var{name} is the name of the function,
4146 a string. The function will be visible to the user as a convenience
4147 variable of type @code{internal function}, whose name is the same as
4148 the given @var{name}.
4149
4150 The documentation for the new function is taken from the documentation
4151 string for the new class.
4152 @end defun
4153
4154 @defun Function.invoke (@var{*args})
4155 When a convenience function is evaluated, its arguments are converted
4156 to instances of @code{gdb.Value}, and then the function's
4157 @code{invoke} method is called. Note that @value{GDBN} does not
4158 predetermine the arity of convenience functions. Instead, all
4159 available arguments are passed to @code{invoke}, following the
4160 standard Python calling convention. In particular, a convenience
4161 function can have default values for parameters without ill effect.
4162
4163 The return value of this method is used as its value in the enclosing
4164 expression. If an ordinary Python value is returned, it is converted
4165 to a @code{gdb.Value} following the usual rules.
4166 @end defun
4167
4168 The following code snippet shows how a trivial convenience function can
4169 be implemented in Python:
4170
4171 @smallexample
4172 class Greet (gdb.Function):
4173 """Return string to greet someone.
4174 Takes a name as argument."""
4175
4176 def __init__ (self):
4177 super (Greet, self).__init__ ("greet")
4178
4179 def invoke (self, name):
4180 return "Hello, %s!" % name.string ()
4181
4182 Greet ()
4183 @end smallexample
4184
4185 The last line instantiates the class, and is necessary to trigger the
4186 registration of the function with @value{GDBN}. Depending on how the
4187 Python code is read into @value{GDBN}, you may need to import the
4188 @code{gdb} module explicitly.
4189
4190 Now you can use the function in an expression:
4191
4192 @smallexample
4193 (gdb) print $greet("Bob")
4194 $1 = "Hello, Bob!"
4195 @end smallexample
4196
4197 @node Progspaces In Python
4198 @subsubsection Program Spaces In Python
4199
4200 @cindex progspaces in python
4201 @tindex gdb.Progspace
4202 @tindex Progspace
4203 A program space, or @dfn{progspace}, represents a symbolic view
4204 of an address space.
4205 It consists of all of the objfiles of the program.
4206 @xref{Objfiles In Python}.
4207 @xref{Inferiors Connections and Programs, program spaces}, for more details
4208 about program spaces.
4209
4210 The following progspace-related functions are available in the
4211 @code{gdb} module:
4212
4213 @findex gdb.current_progspace
4214 @defun gdb.current_progspace ()
4215 This function returns the program space of the currently selected inferior.
4216 @xref{Inferiors Connections and Programs}. This is identical to
4217 @code{gdb.selected_inferior().progspace} (@pxref{Inferiors In Python}) and is
4218 included for historical compatibility.
4219 @end defun
4220
4221 @findex gdb.progspaces
4222 @defun gdb.progspaces ()
4223 Return a sequence of all the progspaces currently known to @value{GDBN}.
4224 @end defun
4225
4226 Each progspace is represented by an instance of the @code{gdb.Progspace}
4227 class.
4228
4229 @defvar Progspace.filename
4230 The file name of the progspace as a string.
4231 @end defvar
4232
4233 @defvar Progspace.pretty_printers
4234 The @code{pretty_printers} attribute is a list of functions. It is
4235 used to look up pretty-printers. A @code{Value} is passed to each
4236 function in order; if the function returns @code{None}, then the
4237 search continues. Otherwise, the return value should be an object
4238 which is used to format the value. @xref{Pretty Printing API}, for more
4239 information.
4240 @end defvar
4241
4242 @defvar Progspace.type_printers
4243 The @code{type_printers} attribute is a list of type printer objects.
4244 @xref{Type Printing API}, for more information.
4245 @end defvar
4246
4247 @defvar Progspace.frame_filters
4248 The @code{frame_filters} attribute is a dictionary of frame filter
4249 objects. @xref{Frame Filter API}, for more information.
4250 @end defvar
4251
4252 A program space has the following methods:
4253
4254 @findex Progspace.block_for_pc
4255 @defun Progspace.block_for_pc (pc)
4256 Return the innermost @code{gdb.Block} containing the given @var{pc}
4257 value. If the block cannot be found for the @var{pc} value specified,
4258 the function will return @code{None}.
4259 @end defun
4260
4261 @findex Progspace.find_pc_line
4262 @defun Progspace.find_pc_line (pc)
4263 Return the @code{gdb.Symtab_and_line} object corresponding to the
4264 @var{pc} value. @xref{Symbol Tables In Python}. If an invalid value
4265 of @var{pc} is passed as an argument, then the @code{symtab} and
4266 @code{line} attributes of the returned @code{gdb.Symtab_and_line}
4267 object will be @code{None} and 0 respectively.
4268 @end defun
4269
4270 @findex Progspace.is_valid
4271 @defun Progspace.is_valid ()
4272 Returns @code{True} if the @code{gdb.Progspace} object is valid,
4273 @code{False} if not. A @code{gdb.Progspace} object can become invalid
4274 if the program space file it refers to is not referenced by any
4275 inferior. All other @code{gdb.Progspace} methods will throw an
4276 exception if it is invalid at the time the method is called.
4277 @end defun
4278
4279 @findex Progspace.objfiles
4280 @defun Progspace.objfiles ()
4281 Return a sequence of all the objfiles referenced by this program
4282 space. @xref{Objfiles In Python}.
4283 @end defun
4284
4285 @findex Progspace.solib_name
4286 @defun Progspace.solib_name (address)
4287 Return the name of the shared library holding the given @var{address}
4288 as a string, or @code{None}.
4289 @end defun
4290
4291 One may add arbitrary attributes to @code{gdb.Progspace} objects
4292 in the usual Python way.
4293 This is useful if, for example, one needs to do some extra record keeping
4294 associated with the program space.
4295
4296 In this contrived example, we want to perform some processing when
4297 an objfile with a certain symbol is loaded, but we only want to do
4298 this once because it is expensive. To achieve this we record the results
4299 with the program space because we can't predict when the desired objfile
4300 will be loaded.
4301
4302 @smallexample
4303 (gdb) python
4304 def clear_objfiles_handler(event):
4305 event.progspace.expensive_computation = None
4306 def expensive(symbol):
4307 """A mock routine to perform an "expensive" computation on symbol."""
4308 print "Computing the answer to the ultimate question ..."
4309 return 42
4310 def new_objfile_handler(event):
4311 objfile = event.new_objfile
4312 progspace = objfile.progspace
4313 if not hasattr(progspace, 'expensive_computation') or \
4314 progspace.expensive_computation is None:
4315 # We use 'main' for the symbol to keep the example simple.
4316 # Note: There's no current way to constrain the lookup
4317 # to one objfile.
4318 symbol = gdb.lookup_global_symbol('main')
4319 if symbol is not None:
4320 progspace.expensive_computation = expensive(symbol)
4321 gdb.events.clear_objfiles.connect(clear_objfiles_handler)
4322 gdb.events.new_objfile.connect(new_objfile_handler)
4323 end
4324 (gdb) file /tmp/hello
4325 Reading symbols from /tmp/hello...
4326 Computing the answer to the ultimate question ...
4327 (gdb) python print gdb.current_progspace().expensive_computation
4328 42
4329 (gdb) run
4330 Starting program: /tmp/hello
4331 Hello.
4332 [Inferior 1 (process 4242) exited normally]
4333 @end smallexample
4334
4335 @node Objfiles In Python
4336 @subsubsection Objfiles In Python
4337
4338 @cindex objfiles in python
4339 @tindex gdb.Objfile
4340 @tindex Objfile
4341 @value{GDBN} loads symbols for an inferior from various
4342 symbol-containing files (@pxref{Files}). These include the primary
4343 executable file, any shared libraries used by the inferior, and any
4344 separate debug info files (@pxref{Separate Debug Files}).
4345 @value{GDBN} calls these symbol-containing files @dfn{objfiles}.
4346
4347 The following objfile-related functions are available in the
4348 @code{gdb} module:
4349
4350 @findex gdb.current_objfile
4351 @defun gdb.current_objfile ()
4352 When auto-loading a Python script (@pxref{Python Auto-loading}), @value{GDBN}
4353 sets the ``current objfile'' to the corresponding objfile. This
4354 function returns the current objfile. If there is no current objfile,
4355 this function returns @code{None}.
4356 @end defun
4357
4358 @findex gdb.objfiles
4359 @defun gdb.objfiles ()
4360 Return a sequence of objfiles referenced by the current program space.
4361 @xref{Objfiles In Python}, and @ref{Progspaces In Python}. This is identical
4362 to @code{gdb.selected_inferior().progspace.objfiles()} and is included for
4363 historical compatibility.
4364 @end defun
4365
4366 @findex gdb.lookup_objfile
4367 @defun gdb.lookup_objfile (name @r{[}, by_build_id{]})
4368 Look up @var{name}, a file name or build ID, in the list of objfiles
4369 for the current program space (@pxref{Progspaces In Python}).
4370 If the objfile is not found throw the Python @code{ValueError} exception.
4371
4372 If @var{name} is a relative file name, then it will match any
4373 source file name with the same trailing components. For example, if
4374 @var{name} is @samp{gcc/expr.c}, then it will match source file
4375 name of @file{/build/trunk/gcc/expr.c}, but not
4376 @file{/build/trunk/libcpp/expr.c} or @file{/build/trunk/gcc/x-expr.c}.
4377
4378 If @var{by_build_id} is provided and is @code{True} then @var{name}
4379 is the build ID of the objfile. Otherwise, @var{name} is a file name.
4380 This is supported only on some operating systems, notably those which use
4381 the ELF format for binary files and the @sc{gnu} Binutils. For more details
4382 about this feature, see the description of the @option{--build-id}
4383 command-line option in @ref{Options, , Command Line Options, ld,
4384 The GNU Linker}.
4385 @end defun
4386
4387 Each objfile is represented by an instance of the @code{gdb.Objfile}
4388 class.
4389
4390 @defvar Objfile.filename
4391 The file name of the objfile as a string, with symbolic links resolved.
4392
4393 The value is @code{None} if the objfile is no longer valid.
4394 See the @code{gdb.Objfile.is_valid} method, described below.
4395 @end defvar
4396
4397 @defvar Objfile.username
4398 The file name of the objfile as specified by the user as a string.
4399
4400 The value is @code{None} if the objfile is no longer valid.
4401 See the @code{gdb.Objfile.is_valid} method, described below.
4402 @end defvar
4403
4404 @defvar Objfile.owner
4405 For separate debug info objfiles this is the corresponding @code{gdb.Objfile}
4406 object that debug info is being provided for.
4407 Otherwise this is @code{None}.
4408 Separate debug info objfiles are added with the
4409 @code{gdb.Objfile.add_separate_debug_file} method, described below.
4410 @end defvar
4411
4412 @defvar Objfile.build_id
4413 The build ID of the objfile as a string.
4414 If the objfile does not have a build ID then the value is @code{None}.
4415
4416 This is supported only on some operating systems, notably those which use
4417 the ELF format for binary files and the @sc{gnu} Binutils. For more details
4418 about this feature, see the description of the @option{--build-id}
4419 command-line option in @ref{Options, , Command Line Options, ld,
4420 The GNU Linker}.
4421 @end defvar
4422
4423 @defvar Objfile.progspace
4424 The containing program space of the objfile as a @code{gdb.Progspace}
4425 object. @xref{Progspaces In Python}.
4426 @end defvar
4427
4428 @defvar Objfile.pretty_printers
4429 The @code{pretty_printers} attribute is a list of functions. It is
4430 used to look up pretty-printers. A @code{Value} is passed to each
4431 function in order; if the function returns @code{None}, then the
4432 search continues. Otherwise, the return value should be an object
4433 which is used to format the value. @xref{Pretty Printing API}, for more
4434 information.
4435 @end defvar
4436
4437 @defvar Objfile.type_printers
4438 The @code{type_printers} attribute is a list of type printer objects.
4439 @xref{Type Printing API}, for more information.
4440 @end defvar
4441
4442 @defvar Objfile.frame_filters
4443 The @code{frame_filters} attribute is a dictionary of frame filter
4444 objects. @xref{Frame Filter API}, for more information.
4445 @end defvar
4446
4447 One may add arbitrary attributes to @code{gdb.Objfile} objects
4448 in the usual Python way.
4449 This is useful if, for example, one needs to do some extra record keeping
4450 associated with the objfile.
4451
4452 In this contrived example we record the time when @value{GDBN}
4453 loaded the objfile.
4454
4455 @smallexample
4456 (gdb) python
4457 import datetime
4458 def new_objfile_handler(event):
4459 # Set the time_loaded attribute of the new objfile.
4460 event.new_objfile.time_loaded = datetime.datetime.today()
4461 gdb.events.new_objfile.connect(new_objfile_handler)
4462 end
4463 (gdb) file ./hello
4464 Reading symbols from ./hello...
4465 (gdb) python print gdb.objfiles()[0].time_loaded
4466 2014-10-09 11:41:36.770345
4467 @end smallexample
4468
4469 A @code{gdb.Objfile} object has the following methods:
4470
4471 @defun Objfile.is_valid ()
4472 Returns @code{True} if the @code{gdb.Objfile} object is valid,
4473 @code{False} if not. A @code{gdb.Objfile} object can become invalid
4474 if the object file it refers to is not loaded in @value{GDBN} any
4475 longer. All other @code{gdb.Objfile} methods will throw an exception
4476 if it is invalid at the time the method is called.
4477 @end defun
4478
4479 @defun Objfile.add_separate_debug_file (file)
4480 Add @var{file} to the list of files that @value{GDBN} will search for
4481 debug information for the objfile.
4482 This is useful when the debug info has been removed from the program
4483 and stored in a separate file. @value{GDBN} has built-in support for
4484 finding separate debug info files (@pxref{Separate Debug Files}), but if
4485 the file doesn't live in one of the standard places that @value{GDBN}
4486 searches then this function can be used to add a debug info file
4487 from a different place.
4488 @end defun
4489
4490 @defun Objfile.lookup_global_symbol (name @r{[}, domain@r{]})
4491 Search for a global symbol named @var{name} in this objfile. Optionally, the
4492 search scope can be restricted with the @var{domain} argument.
4493 The @var{domain} argument must be a domain constant defined in the @code{gdb}
4494 module and described in @ref{Symbols In Python}. This function is similar to
4495 @code{gdb.lookup_global_symbol}, except that the search is limited to this
4496 objfile.
4497
4498 The result is a @code{gdb.Symbol} object or @code{None} if the symbol
4499 is not found.
4500 @end defun
4501
4502 @defun Objfile.lookup_static_symbol (name @r{[}, domain@r{]})
4503 Like @code{Objfile.lookup_global_symbol}, but searches for a global
4504 symbol with static linkage named @var{name} in this objfile.
4505 @end defun
4506
4507 @node Frames In Python
4508 @subsubsection Accessing inferior stack frames from Python
4509
4510 @cindex frames in python
4511 When the debugged program stops, @value{GDBN} is able to analyze its call
4512 stack (@pxref{Frames,,Stack frames}). The @code{gdb.Frame} class
4513 represents a frame in the stack. A @code{gdb.Frame} object is only valid
4514 while its corresponding frame exists in the inferior's stack. If you try
4515 to use an invalid frame object, @value{GDBN} will throw a @code{gdb.error}
4516 exception (@pxref{Exception Handling}).
4517
4518 Two @code{gdb.Frame} objects can be compared for equality with the @code{==}
4519 operator, like:
4520
4521 @smallexample
4522 (@value{GDBP}) python print gdb.newest_frame() == gdb.selected_frame ()
4523 True
4524 @end smallexample
4525
4526 The following frame-related functions are available in the @code{gdb} module:
4527
4528 @findex gdb.selected_frame
4529 @defun gdb.selected_frame ()
4530 Return the selected frame object. (@pxref{Selection,,Selecting a Frame}).
4531 @end defun
4532
4533 @findex gdb.newest_frame
4534 @defun gdb.newest_frame ()
4535 Return the newest frame object for the selected thread.
4536 @end defun
4537
4538 @defun gdb.frame_stop_reason_string (reason)
4539 Return a string explaining the reason why @value{GDBN} stopped unwinding
4540 frames, as expressed by the given @var{reason} code (an integer, see the
4541 @code{unwind_stop_reason} method further down in this section).
4542 @end defun
4543
4544 @findex gdb.invalidate_cached_frames
4545 @defun gdb.invalidate_cached_frames
4546 @value{GDBN} internally keeps a cache of the frames that have been
4547 unwound. This function invalidates this cache.
4548
4549 This function should not generally be called by ordinary Python code.
4550 It is documented for the sake of completeness.
4551 @end defun
4552
4553 A @code{gdb.Frame} object has the following methods:
4554
4555 @defun Frame.is_valid ()
4556 Returns true if the @code{gdb.Frame} object is valid, false if not.
4557 A frame object can become invalid if the frame it refers to doesn't
4558 exist anymore in the inferior. All @code{gdb.Frame} methods will throw
4559 an exception if it is invalid at the time the method is called.
4560 @end defun
4561
4562 @defun Frame.name ()
4563 Returns the function name of the frame, or @code{None} if it can't be
4564 obtained.
4565 @end defun
4566
4567 @defun Frame.architecture ()
4568 Returns the @code{gdb.Architecture} object corresponding to the frame's
4569 architecture. @xref{Architectures In Python}.
4570 @end defun
4571
4572 @defun Frame.type ()
4573 Returns the type of the frame. The value can be one of:
4574 @table @code
4575 @item gdb.NORMAL_FRAME
4576 An ordinary stack frame.
4577
4578 @item gdb.DUMMY_FRAME
4579 A fake stack frame that was created by @value{GDBN} when performing an
4580 inferior function call.
4581
4582 @item gdb.INLINE_FRAME
4583 A frame representing an inlined function. The function was inlined
4584 into a @code{gdb.NORMAL_FRAME} that is older than this one.
4585
4586 @item gdb.TAILCALL_FRAME
4587 A frame representing a tail call. @xref{Tail Call Frames}.
4588
4589 @item gdb.SIGTRAMP_FRAME
4590 A signal trampoline frame. This is the frame created by the OS when
4591 it calls into a signal handler.
4592
4593 @item gdb.ARCH_FRAME
4594 A fake stack frame representing a cross-architecture call.
4595
4596 @item gdb.SENTINEL_FRAME
4597 This is like @code{gdb.NORMAL_FRAME}, but it is only used for the
4598 newest frame.
4599 @end table
4600 @end defun
4601
4602 @defun Frame.unwind_stop_reason ()
4603 Return an integer representing the reason why it's not possible to find
4604 more frames toward the outermost frame. Use
4605 @code{gdb.frame_stop_reason_string} to convert the value returned by this
4606 function to a string. The value can be one of:
4607
4608 @table @code
4609 @item gdb.FRAME_UNWIND_NO_REASON
4610 No particular reason (older frames should be available).
4611
4612 @item gdb.FRAME_UNWIND_NULL_ID
4613 The previous frame's analyzer returns an invalid result. This is no
4614 longer used by @value{GDBN}, and is kept only for backward
4615 compatibility.
4616
4617 @item gdb.FRAME_UNWIND_OUTERMOST
4618 This frame is the outermost.
4619
4620 @item gdb.FRAME_UNWIND_UNAVAILABLE
4621 Cannot unwind further, because that would require knowing the
4622 values of registers or memory that have not been collected.
4623
4624 @item gdb.FRAME_UNWIND_INNER_ID
4625 This frame ID looks like it ought to belong to a NEXT frame,
4626 but we got it for a PREV frame. Normally, this is a sign of
4627 unwinder failure. It could also indicate stack corruption.
4628
4629 @item gdb.FRAME_UNWIND_SAME_ID
4630 This frame has the same ID as the previous one. That means
4631 that unwinding further would almost certainly give us another
4632 frame with exactly the same ID, so break the chain. Normally,
4633 this is a sign of unwinder failure. It could also indicate
4634 stack corruption.
4635
4636 @item gdb.FRAME_UNWIND_NO_SAVED_PC
4637 The frame unwinder did not find any saved PC, but we needed
4638 one to unwind further.
4639
4640 @item gdb.FRAME_UNWIND_MEMORY_ERROR
4641 The frame unwinder caused an error while trying to access memory.
4642
4643 @item gdb.FRAME_UNWIND_FIRST_ERROR
4644 Any stop reason greater or equal to this value indicates some kind
4645 of error. This special value facilitates writing code that tests
4646 for errors in unwinding in a way that will work correctly even if
4647 the list of the other values is modified in future @value{GDBN}
4648 versions. Using it, you could write:
4649 @smallexample
4650 reason = gdb.selected_frame().unwind_stop_reason ()
4651 reason_str = gdb.frame_stop_reason_string (reason)
4652 if reason >= gdb.FRAME_UNWIND_FIRST_ERROR:
4653 print "An error occured: %s" % reason_str
4654 @end smallexample
4655 @end table
4656
4657 @end defun
4658
4659 @defun Frame.pc ()
4660 Returns the frame's resume address.
4661 @end defun
4662
4663 @defun Frame.block ()
4664 Return the frame's code block. @xref{Blocks In Python}. If the frame
4665 does not have a block -- for example, if there is no debugging
4666 information for the code in question -- then this will throw an
4667 exception.
4668 @end defun
4669
4670 @defun Frame.function ()
4671 Return the symbol for the function corresponding to this frame.
4672 @xref{Symbols In Python}.
4673 @end defun
4674
4675 @defun Frame.older ()
4676 Return the frame that called this frame.
4677 @end defun
4678
4679 @defun Frame.newer ()
4680 Return the frame called by this frame.
4681 @end defun
4682
4683 @defun Frame.find_sal ()
4684 Return the frame's symtab and line object.
4685 @xref{Symbol Tables In Python}.
4686 @end defun
4687
4688 @anchor{gdbpy_frame_read_register}
4689 @defun Frame.read_register (register)
4690 Return the value of @var{register} in this frame. The @var{register}
4691 argument must be a string (e.g., @code{'sp'} or @code{'rax'}).
4692 Returns a @code{Gdb.Value} object. Throws an exception if @var{register}
4693 does not exist.
4694 @end defun
4695
4696 @defun Frame.read_var (variable @r{[}, block@r{]})
4697 Return the value of @var{variable} in this frame. If the optional
4698 argument @var{block} is provided, search for the variable from that
4699 block; otherwise start at the frame's current block (which is
4700 determined by the frame's current program counter). The @var{variable}
4701 argument must be a string or a @code{gdb.Symbol} object; @var{block} must be a
4702 @code{gdb.Block} object.
4703 @end defun
4704
4705 @defun Frame.select ()
4706 Set this frame to be the selected frame. @xref{Stack, ,Examining the
4707 Stack}.
4708 @end defun
4709
4710 @node Blocks In Python
4711 @subsubsection Accessing blocks from Python
4712
4713 @cindex blocks in python
4714 @tindex gdb.Block
4715
4716 In @value{GDBN}, symbols are stored in blocks. A block corresponds
4717 roughly to a scope in the source code. Blocks are organized
4718 hierarchically, and are represented individually in Python as a
4719 @code{gdb.Block}. Blocks rely on debugging information being
4720 available.
4721
4722 A frame has a block. Please see @ref{Frames In Python}, for a more
4723 in-depth discussion of frames.
4724
4725 The outermost block is known as the @dfn{global block}. The global
4726 block typically holds public global variables and functions.
4727
4728 The block nested just inside the global block is the @dfn{static
4729 block}. The static block typically holds file-scoped variables and
4730 functions.
4731
4732 @value{GDBN} provides a method to get a block's superblock, but there
4733 is currently no way to examine the sub-blocks of a block, or to
4734 iterate over all the blocks in a symbol table (@pxref{Symbol Tables In
4735 Python}).
4736
4737 Here is a short example that should help explain blocks:
4738
4739 @smallexample
4740 /* This is in the global block. */
4741 int global;
4742
4743 /* This is in the static block. */
4744 static int file_scope;
4745
4746 /* 'function' is in the global block, and 'argument' is
4747 in a block nested inside of 'function'. */
4748 int function (int argument)
4749 @{
4750 /* 'local' is in a block inside 'function'. It may or may
4751 not be in the same block as 'argument'. */
4752 int local;
4753
4754 @{
4755 /* 'inner' is in a block whose superblock is the one holding
4756 'local'. */
4757 int inner;
4758
4759 /* If this call is expanded by the compiler, you may see
4760 a nested block here whose function is 'inline_function'
4761 and whose superblock is the one holding 'inner'. */
4762 inline_function ();
4763 @}
4764 @}
4765 @end smallexample
4766
4767 A @code{gdb.Block} is iterable. The iterator returns the symbols
4768 (@pxref{Symbols In Python}) local to the block. Python programs
4769 should not assume that a specific block object will always contain a
4770 given symbol, since changes in @value{GDBN} features and
4771 infrastructure may cause symbols move across blocks in a symbol
4772 table. You can also use Python's @dfn{dictionary syntax} to access
4773 variables in this block, e.g.:
4774
4775 @smallexample
4776 symbol = some_block['variable'] # symbol is of type gdb.Symbol
4777 @end smallexample
4778
4779 The following block-related functions are available in the @code{gdb}
4780 module:
4781
4782 @findex gdb.block_for_pc
4783 @defun gdb.block_for_pc (pc)
4784 Return the innermost @code{gdb.Block} containing the given @var{pc}
4785 value. If the block cannot be found for the @var{pc} value specified,
4786 the function will return @code{None}. This is identical to
4787 @code{gdb.current_progspace().block_for_pc(pc)} and is included for
4788 historical compatibility.
4789 @end defun
4790
4791 A @code{gdb.Block} object has the following methods:
4792
4793 @defun Block.is_valid ()
4794 Returns @code{True} if the @code{gdb.Block} object is valid,
4795 @code{False} if not. A block object can become invalid if the block it
4796 refers to doesn't exist anymore in the inferior. All other
4797 @code{gdb.Block} methods will throw an exception if it is invalid at
4798 the time the method is called. The block's validity is also checked
4799 during iteration over symbols of the block.
4800 @end defun
4801
4802 A @code{gdb.Block} object has the following attributes:
4803
4804 @defvar Block.start
4805 The start address of the block. This attribute is not writable.
4806 @end defvar
4807
4808 @defvar Block.end
4809 One past the last address that appears in the block. This attribute
4810 is not writable.
4811 @end defvar
4812
4813 @defvar Block.function
4814 The name of the block represented as a @code{gdb.Symbol}. If the
4815 block is not named, then this attribute holds @code{None}. This
4816 attribute is not writable.
4817
4818 For ordinary function blocks, the superblock is the static block.
4819 However, you should note that it is possible for a function block to
4820 have a superblock that is not the static block -- for instance this
4821 happens for an inlined function.
4822 @end defvar
4823
4824 @defvar Block.superblock
4825 The block containing this block. If this parent block does not exist,
4826 this attribute holds @code{None}. This attribute is not writable.
4827 @end defvar
4828
4829 @defvar Block.global_block
4830 The global block associated with this block. This attribute is not
4831 writable.
4832 @end defvar
4833
4834 @defvar Block.static_block
4835 The static block associated with this block. This attribute is not
4836 writable.
4837 @end defvar
4838
4839 @defvar Block.is_global
4840 @code{True} if the @code{gdb.Block} object is a global block,
4841 @code{False} if not. This attribute is not
4842 writable.
4843 @end defvar
4844
4845 @defvar Block.is_static
4846 @code{True} if the @code{gdb.Block} object is a static block,
4847 @code{False} if not. This attribute is not writable.
4848 @end defvar
4849
4850 @node Symbols In Python
4851 @subsubsection Python representation of Symbols
4852
4853 @cindex symbols in python
4854 @tindex gdb.Symbol
4855
4856 @value{GDBN} represents every variable, function and type as an
4857 entry in a symbol table. @xref{Symbols, ,Examining the Symbol Table}.
4858 Similarly, Python represents these symbols in @value{GDBN} with the
4859 @code{gdb.Symbol} object.
4860
4861 The following symbol-related functions are available in the @code{gdb}
4862 module:
4863
4864 @findex gdb.lookup_symbol
4865 @defun gdb.lookup_symbol (name @r{[}, block @r{[}, domain@r{]]})
4866 This function searches for a symbol by name. The search scope can be
4867 restricted to the parameters defined in the optional domain and block
4868 arguments.
4869
4870 @var{name} is the name of the symbol. It must be a string. The
4871 optional @var{block} argument restricts the search to symbols visible
4872 in that @var{block}. The @var{block} argument must be a
4873 @code{gdb.Block} object. If omitted, the block for the current frame
4874 is used. The optional @var{domain} argument restricts
4875 the search to the domain type. The @var{domain} argument must be a
4876 domain constant defined in the @code{gdb} module and described later
4877 in this chapter.
4878
4879 The result is a tuple of two elements.
4880 The first element is a @code{gdb.Symbol} object or @code{None} if the symbol
4881 is not found.
4882 If the symbol is found, the second element is @code{True} if the symbol
4883 is a field of a method's object (e.g., @code{this} in C@t{++}),
4884 otherwise it is @code{False}.
4885 If the symbol is not found, the second element is @code{False}.
4886 @end defun
4887
4888 @findex gdb.lookup_global_symbol
4889 @defun gdb.lookup_global_symbol (name @r{[}, domain@r{]})
4890 This function searches for a global symbol by name.
4891 The search scope can be restricted to by the domain argument.
4892
4893 @var{name} is the name of the symbol. It must be a string.
4894 The optional @var{domain} argument restricts the search to the domain type.
4895 The @var{domain} argument must be a domain constant defined in the @code{gdb}
4896 module and described later in this chapter.
4897
4898 The result is a @code{gdb.Symbol} object or @code{None} if the symbol
4899 is not found.
4900 @end defun
4901
4902 @findex gdb.lookup_static_symbol
4903 @defun gdb.lookup_static_symbol (name @r{[}, domain@r{]})
4904 This function searches for a global symbol with static linkage by name.
4905 The search scope can be restricted to by the domain argument.
4906
4907 @var{name} is the name of the symbol. It must be a string.
4908 The optional @var{domain} argument restricts the search to the domain type.
4909 The @var{domain} argument must be a domain constant defined in the @code{gdb}
4910 module and described later in this chapter.
4911
4912 The result is a @code{gdb.Symbol} object or @code{None} if the symbol
4913 is not found.
4914
4915 Note that this function will not find function-scoped static variables. To look
4916 up such variables, iterate over the variables of the function's
4917 @code{gdb.Block} and check that @code{block.addr_class} is
4918 @code{gdb.SYMBOL_LOC_STATIC}.
4919
4920 There can be multiple global symbols with static linkage with the same
4921 name. This function will only return the first matching symbol that
4922 it finds. Which symbol is found depends on where @value{GDBN} is
4923 currently stopped, as @value{GDBN} will first search for matching
4924 symbols in the current object file, and then search all other object
4925 files. If the application is not yet running then @value{GDBN} will
4926 search all object files in the order they appear in the debug
4927 information.
4928 @end defun
4929
4930 @findex gdb.lookup_static_symbols
4931 @defun gdb.lookup_static_symbols (name @r{[}, domain@r{]})
4932 Similar to @code{gdb.lookup_static_symbol}, this function searches for
4933 global symbols with static linkage by name, and optionally restricted
4934 by the domain argument. However, this function returns a list of all
4935 matching symbols found, not just the first one.
4936
4937 @var{name} is the name of the symbol. It must be a string.
4938 The optional @var{domain} argument restricts the search to the domain type.
4939 The @var{domain} argument must be a domain constant defined in the @code{gdb}
4940 module and described later in this chapter.
4941
4942 The result is a list of @code{gdb.Symbol} objects which could be empty
4943 if no matching symbols were found.
4944
4945 Note that this function will not find function-scoped static variables. To look
4946 up such variables, iterate over the variables of the function's
4947 @code{gdb.Block} and check that @code{block.addr_class} is
4948 @code{gdb.SYMBOL_LOC_STATIC}.
4949 @end defun
4950
4951 A @code{gdb.Symbol} object has the following attributes:
4952
4953 @defvar Symbol.type
4954 The type of the symbol or @code{None} if no type is recorded.
4955 This attribute is represented as a @code{gdb.Type} object.
4956 @xref{Types In Python}. This attribute is not writable.
4957 @end defvar
4958
4959 @defvar Symbol.symtab
4960 The symbol table in which the symbol appears. This attribute is
4961 represented as a @code{gdb.Symtab} object. @xref{Symbol Tables In
4962 Python}. This attribute is not writable.
4963 @end defvar
4964
4965 @defvar Symbol.line
4966 The line number in the source code at which the symbol was defined.
4967 This is an integer.
4968 @end defvar
4969
4970 @defvar Symbol.name
4971 The name of the symbol as a string. This attribute is not writable.
4972 @end defvar
4973
4974 @defvar Symbol.linkage_name
4975 The name of the symbol, as used by the linker (i.e., may be mangled).
4976 This attribute is not writable.
4977 @end defvar
4978
4979 @defvar Symbol.print_name
4980 The name of the symbol in a form suitable for output. This is either
4981 @code{name} or @code{linkage_name}, depending on whether the user
4982 asked @value{GDBN} to display demangled or mangled names.
4983 @end defvar
4984
4985 @defvar Symbol.addr_class
4986 The address class of the symbol. This classifies how to find the value
4987 of a symbol. Each address class is a constant defined in the
4988 @code{gdb} module and described later in this chapter.
4989 @end defvar
4990
4991 @defvar Symbol.needs_frame
4992 This is @code{True} if evaluating this symbol's value requires a frame
4993 (@pxref{Frames In Python}) and @code{False} otherwise. Typically,
4994 local variables will require a frame, but other symbols will not.
4995 @end defvar
4996
4997 @defvar Symbol.is_argument
4998 @code{True} if the symbol is an argument of a function.
4999 @end defvar
5000
5001 @defvar Symbol.is_constant
5002 @code{True} if the symbol is a constant.
5003 @end defvar
5004
5005 @defvar Symbol.is_function
5006 @code{True} if the symbol is a function or a method.
5007 @end defvar
5008
5009 @defvar Symbol.is_variable
5010 @code{True} if the symbol is a variable.
5011 @end defvar
5012
5013 A @code{gdb.Symbol} object has the following methods:
5014
5015 @defun Symbol.is_valid ()
5016 Returns @code{True} if the @code{gdb.Symbol} object is valid,
5017 @code{False} if not. A @code{gdb.Symbol} object can become invalid if
5018 the symbol it refers to does not exist in @value{GDBN} any longer.
5019 All other @code{gdb.Symbol} methods will throw an exception if it is
5020 invalid at the time the method is called.
5021 @end defun
5022
5023 @defun Symbol.value (@r{[}frame@r{]})
5024 Compute the value of the symbol, as a @code{gdb.Value}. For
5025 functions, this computes the address of the function, cast to the
5026 appropriate type. If the symbol requires a frame in order to compute
5027 its value, then @var{frame} must be given. If @var{frame} is not
5028 given, or if @var{frame} is invalid, then this method will throw an
5029 exception.
5030 @end defun
5031
5032 The available domain categories in @code{gdb.Symbol} are represented
5033 as constants in the @code{gdb} module:
5034
5035 @vtable @code
5036 @vindex SYMBOL_UNDEF_DOMAIN
5037 @item gdb.SYMBOL_UNDEF_DOMAIN
5038 This is used when a domain has not been discovered or none of the
5039 following domains apply. This usually indicates an error either
5040 in the symbol information or in @value{GDBN}'s handling of symbols.
5041
5042 @vindex SYMBOL_VAR_DOMAIN
5043 @item gdb.SYMBOL_VAR_DOMAIN
5044 This domain contains variables, function names, typedef names and enum
5045 type values.
5046
5047 @vindex SYMBOL_STRUCT_DOMAIN
5048 @item gdb.SYMBOL_STRUCT_DOMAIN
5049 This domain holds struct, union and enum type names.
5050
5051 @vindex SYMBOL_LABEL_DOMAIN
5052 @item gdb.SYMBOL_LABEL_DOMAIN
5053 This domain contains names of labels (for gotos).
5054
5055 @vindex SYMBOL_MODULE_DOMAIN
5056 @item gdb.SYMBOL_MODULE_DOMAIN
5057 This domain contains names of Fortran module types.
5058
5059 @vindex SYMBOL_COMMON_BLOCK_DOMAIN
5060 @item gdb.SYMBOL_COMMON_BLOCK_DOMAIN
5061 This domain contains names of Fortran common blocks.
5062 @end vtable
5063
5064 The available address class categories in @code{gdb.Symbol} are represented
5065 as constants in the @code{gdb} module:
5066
5067 @vtable @code
5068 @vindex SYMBOL_LOC_UNDEF
5069 @item gdb.SYMBOL_LOC_UNDEF
5070 If this is returned by address class, it indicates an error either in
5071 the symbol information or in @value{GDBN}'s handling of symbols.
5072
5073 @vindex SYMBOL_LOC_CONST
5074 @item gdb.SYMBOL_LOC_CONST
5075 Value is constant int.
5076
5077 @vindex SYMBOL_LOC_STATIC
5078 @item gdb.SYMBOL_LOC_STATIC
5079 Value is at a fixed address.
5080
5081 @vindex SYMBOL_LOC_REGISTER
5082 @item gdb.SYMBOL_LOC_REGISTER
5083 Value is in a register.
5084
5085 @vindex SYMBOL_LOC_ARG
5086 @item gdb.SYMBOL_LOC_ARG
5087 Value is an argument. This value is at the offset stored within the
5088 symbol inside the frame's argument list.
5089
5090 @vindex SYMBOL_LOC_REF_ARG
5091 @item gdb.SYMBOL_LOC_REF_ARG
5092 Value address is stored in the frame's argument list. Just like
5093 @code{LOC_ARG} except that the value's address is stored at the
5094 offset, not the value itself.
5095
5096 @vindex SYMBOL_LOC_REGPARM_ADDR
5097 @item gdb.SYMBOL_LOC_REGPARM_ADDR
5098 Value is a specified register. Just like @code{LOC_REGISTER} except
5099 the register holds the address of the argument instead of the argument
5100 itself.
5101
5102 @vindex SYMBOL_LOC_LOCAL
5103 @item gdb.SYMBOL_LOC_LOCAL
5104 Value is a local variable.
5105
5106 @vindex SYMBOL_LOC_TYPEDEF
5107 @item gdb.SYMBOL_LOC_TYPEDEF
5108 Value not used. Symbols in the domain @code{SYMBOL_STRUCT_DOMAIN} all
5109 have this class.
5110
5111 @vindex SYMBOL_LOC_BLOCK
5112 @item gdb.SYMBOL_LOC_BLOCK
5113 Value is a block.
5114
5115 @vindex SYMBOL_LOC_CONST_BYTES
5116 @item gdb.SYMBOL_LOC_CONST_BYTES
5117 Value is a byte-sequence.
5118
5119 @vindex SYMBOL_LOC_UNRESOLVED
5120 @item gdb.SYMBOL_LOC_UNRESOLVED
5121 Value is at a fixed address, but the address of the variable has to be
5122 determined from the minimal symbol table whenever the variable is
5123 referenced.
5124
5125 @vindex SYMBOL_LOC_OPTIMIZED_OUT
5126 @item gdb.SYMBOL_LOC_OPTIMIZED_OUT
5127 The value does not actually exist in the program.
5128
5129 @vindex SYMBOL_LOC_COMPUTED
5130 @item gdb.SYMBOL_LOC_COMPUTED
5131 The value's address is a computed location.
5132
5133 @vindex SYMBOL_LOC_COMPUTED
5134 @item gdb.SYMBOL_LOC_COMPUTED
5135 The value's address is a symbol. This is only used for Fortran common
5136 blocks.
5137 @end vtable
5138
5139 @node Symbol Tables In Python
5140 @subsubsection Symbol table representation in Python
5141
5142 @cindex symbol tables in python
5143 @tindex gdb.Symtab
5144 @tindex gdb.Symtab_and_line
5145
5146 Access to symbol table data maintained by @value{GDBN} on the inferior
5147 is exposed to Python via two objects: @code{gdb.Symtab_and_line} and
5148 @code{gdb.Symtab}. Symbol table and line data for a frame is returned
5149 from the @code{find_sal} method in @code{gdb.Frame} object.
5150 @xref{Frames In Python}.
5151
5152 For more information on @value{GDBN}'s symbol table management, see
5153 @ref{Symbols, ,Examining the Symbol Table}, for more information.
5154
5155 A @code{gdb.Symtab_and_line} object has the following attributes:
5156
5157 @defvar Symtab_and_line.symtab
5158 The symbol table object (@code{gdb.Symtab}) for this frame.
5159 This attribute is not writable.
5160 @end defvar
5161
5162 @defvar Symtab_and_line.pc
5163 Indicates the start of the address range occupied by code for the
5164 current source line. This attribute is not writable.
5165 @end defvar
5166
5167 @defvar Symtab_and_line.last
5168 Indicates the end of the address range occupied by code for the current
5169 source line. This attribute is not writable.
5170 @end defvar
5171
5172 @defvar Symtab_and_line.line
5173 Indicates the current line number for this object. This
5174 attribute is not writable.
5175 @end defvar
5176
5177 A @code{gdb.Symtab_and_line} object has the following methods:
5178
5179 @defun Symtab_and_line.is_valid ()
5180 Returns @code{True} if the @code{gdb.Symtab_and_line} object is valid,
5181 @code{False} if not. A @code{gdb.Symtab_and_line} object can become
5182 invalid if the Symbol table and line object it refers to does not
5183 exist in @value{GDBN} any longer. All other
5184 @code{gdb.Symtab_and_line} methods will throw an exception if it is
5185 invalid at the time the method is called.
5186 @end defun
5187
5188 A @code{gdb.Symtab} object has the following attributes:
5189
5190 @defvar Symtab.filename
5191 The symbol table's source filename. This attribute is not writable.
5192 @end defvar
5193
5194 @defvar Symtab.objfile
5195 The symbol table's backing object file. @xref{Objfiles In Python}.
5196 This attribute is not writable.
5197 @end defvar
5198
5199 @defvar Symtab.producer
5200 The name and possibly version number of the program that
5201 compiled the code in the symbol table.
5202 The contents of this string is up to the compiler.
5203 If no producer information is available then @code{None} is returned.
5204 This attribute is not writable.
5205 @end defvar
5206
5207 A @code{gdb.Symtab} object has the following methods:
5208
5209 @defun Symtab.is_valid ()
5210 Returns @code{True} if the @code{gdb.Symtab} object is valid,
5211 @code{False} if not. A @code{gdb.Symtab} object can become invalid if
5212 the symbol table it refers to does not exist in @value{GDBN} any
5213 longer. All other @code{gdb.Symtab} methods will throw an exception
5214 if it is invalid at the time the method is called.
5215 @end defun
5216
5217 @defun Symtab.fullname ()
5218 Return the symbol table's source absolute file name.
5219 @end defun
5220
5221 @defun Symtab.global_block ()
5222 Return the global block of the underlying symbol table.
5223 @xref{Blocks In Python}.
5224 @end defun
5225
5226 @defun Symtab.static_block ()
5227 Return the static block of the underlying symbol table.
5228 @xref{Blocks In Python}.
5229 @end defun
5230
5231 @defun Symtab.linetable ()
5232 Return the line table associated with the symbol table.
5233 @xref{Line Tables In Python}.
5234 @end defun
5235
5236 @node Line Tables In Python
5237 @subsubsection Manipulating line tables using Python
5238
5239 @cindex line tables in python
5240 @tindex gdb.LineTable
5241
5242 Python code can request and inspect line table information from a
5243 symbol table that is loaded in @value{GDBN}. A line table is a
5244 mapping of source lines to their executable locations in memory. To
5245 acquire the line table information for a particular symbol table, use
5246 the @code{linetable} function (@pxref{Symbol Tables In Python}).
5247
5248 A @code{gdb.LineTable} is iterable. The iterator returns
5249 @code{LineTableEntry} objects that correspond to the source line and
5250 address for each line table entry. @code{LineTableEntry} objects have
5251 the following attributes:
5252
5253 @defvar LineTableEntry.line
5254 The source line number for this line table entry. This number
5255 corresponds to the actual line of source. This attribute is not
5256 writable.
5257 @end defvar
5258
5259 @defvar LineTableEntry.pc
5260 The address that is associated with the line table entry where the
5261 executable code for that source line resides in memory. This
5262 attribute is not writable.
5263 @end defvar
5264
5265 As there can be multiple addresses for a single source line, you may
5266 receive multiple @code{LineTableEntry} objects with matching
5267 @code{line} attributes, but with different @code{pc} attributes. The
5268 iterator is sorted in ascending @code{pc} order. Here is a small
5269 example illustrating iterating over a line table.
5270
5271 @smallexample
5272 symtab = gdb.selected_frame().find_sal().symtab
5273 linetable = symtab.linetable()
5274 for line in linetable:
5275 print "Line: "+str(line.line)+" Address: "+hex(line.pc)
5276 @end smallexample
5277
5278 This will have the following output:
5279
5280 @smallexample
5281 Line: 33 Address: 0x4005c8L
5282 Line: 37 Address: 0x4005caL
5283 Line: 39 Address: 0x4005d2L
5284 Line: 40 Address: 0x4005f8L
5285 Line: 42 Address: 0x4005ffL
5286 Line: 44 Address: 0x400608L
5287 Line: 42 Address: 0x40060cL
5288 Line: 45 Address: 0x400615L
5289 @end smallexample
5290
5291 In addition to being able to iterate over a @code{LineTable}, it also
5292 has the following direct access methods:
5293
5294 @defun LineTable.line (line)
5295 Return a Python @code{Tuple} of @code{LineTableEntry} objects for any
5296 entries in the line table for the given @var{line}, which specifies
5297 the source code line. If there are no entries for that source code
5298 @var{line}, the Python @code{None} is returned.
5299 @end defun
5300
5301 @defun LineTable.has_line (line)
5302 Return a Python @code{Boolean} indicating whether there is an entry in
5303 the line table for this source line. Return @code{True} if an entry
5304 is found, or @code{False} if not.
5305 @end defun
5306
5307 @defun LineTable.source_lines ()
5308 Return a Python @code{List} of the source line numbers in the symbol
5309 table. Only lines with executable code locations are returned. The
5310 contents of the @code{List} will just be the source line entries
5311 represented as Python @code{Long} values.
5312 @end defun
5313
5314 @node Breakpoints In Python
5315 @subsubsection Manipulating breakpoints using Python
5316
5317 @cindex breakpoints in python
5318 @tindex gdb.Breakpoint
5319
5320 Python code can manipulate breakpoints via the @code{gdb.Breakpoint}
5321 class.
5322
5323 A breakpoint can be created using one of the two forms of the
5324 @code{gdb.Breakpoint} constructor. The first one accepts a string
5325 like one would pass to the @code{break}
5326 (@pxref{Set Breaks,,Setting Breakpoints}) and @code{watch}
5327 (@pxref{Set Watchpoints, , Setting Watchpoints}) commands, and can be used to
5328 create both breakpoints and watchpoints. The second accepts separate Python
5329 arguments similar to @ref{Explicit Locations}, and can only be used to create
5330 breakpoints.
5331
5332 @defun Breakpoint.__init__ (spec @r{[}, type @r{][}, wp_class @r{][}, internal @r{][}, temporary @r{][}, qualified @r{]})
5333 Create a new breakpoint according to @var{spec}, which is a string naming the
5334 location of a breakpoint, or an expression that defines a watchpoint. The
5335 string should describe a location in a format recognized by the @code{break}
5336 command (@pxref{Set Breaks,,Setting Breakpoints}) or, in the case of a
5337 watchpoint, by the @code{watch} command
5338 (@pxref{Set Watchpoints, , Setting Watchpoints}).
5339
5340 The optional @var{type} argument specifies the type of the breakpoint to create,
5341 as defined below.
5342
5343 The optional @var{wp_class} argument defines the class of watchpoint to create,
5344 if @var{type} is @code{gdb.BP_WATCHPOINT}. If @var{wp_class} is omitted, it
5345 defaults to @code{gdb.WP_WRITE}.
5346
5347 The optional @var{internal} argument allows the breakpoint to become invisible
5348 to the user. The breakpoint will neither be reported when created, nor will it
5349 be listed in the output from @code{info breakpoints} (but will be listed with
5350 the @code{maint info breakpoints} command).
5351
5352 The optional @var{temporary} argument makes the breakpoint a temporary
5353 breakpoint. Temporary breakpoints are deleted after they have been hit. Any
5354 further access to the Python breakpoint after it has been hit will result in a
5355 runtime error (as that breakpoint has now been automatically deleted).
5356
5357 The optional @var{qualified} argument is a boolean that allows interpreting
5358 the function passed in @code{spec} as a fully-qualified name. It is equivalent
5359 to @code{break}'s @code{-qualified} flag (@pxref{Linespec Locations} and
5360 @ref{Explicit Locations}).
5361
5362 @end defun
5363
5364 @defun Breakpoint.__init__ (@r{[} source @r{][}, function @r{][}, label @r{][}, line @r{]}, @r{][} internal @r{][}, temporary @r{][}, qualified @r{]})
5365 This second form of creating a new breakpoint specifies the explicit
5366 location (@pxref{Explicit Locations}) using keywords. The new breakpoint will
5367 be created in the specified source file @var{source}, at the specified
5368 @var{function}, @var{label} and @var{line}.
5369
5370 @var{internal}, @var{temporary} and @var{qualified} have the same usage as
5371 explained previously.
5372 @end defun
5373
5374 The available types are represented by constants defined in the @code{gdb}
5375 module:
5376
5377 @vtable @code
5378 @vindex BP_BREAKPOINT
5379 @item gdb.BP_BREAKPOINT
5380 Normal code breakpoint.
5381
5382 @vindex BP_WATCHPOINT
5383 @item gdb.BP_WATCHPOINT
5384 Watchpoint breakpoint.
5385
5386 @vindex BP_HARDWARE_WATCHPOINT
5387 @item gdb.BP_HARDWARE_WATCHPOINT
5388 Hardware assisted watchpoint.
5389
5390 @vindex BP_READ_WATCHPOINT
5391 @item gdb.BP_READ_WATCHPOINT
5392 Hardware assisted read watchpoint.
5393
5394 @vindex BP_ACCESS_WATCHPOINT
5395 @item gdb.BP_ACCESS_WATCHPOINT
5396 Hardware assisted access watchpoint.
5397 @end vtable
5398
5399 The available watchpoint types represented by constants are defined in the
5400 @code{gdb} module:
5401
5402 @vtable @code
5403 @vindex WP_READ
5404 @item gdb.WP_READ
5405 Read only watchpoint.
5406
5407 @vindex WP_WRITE
5408 @item gdb.WP_WRITE
5409 Write only watchpoint.
5410
5411 @vindex WP_ACCESS
5412 @item gdb.WP_ACCESS
5413 Read/Write watchpoint.
5414 @end vtable
5415
5416 @defun Breakpoint.stop (self)
5417 The @code{gdb.Breakpoint} class can be sub-classed and, in
5418 particular, you may choose to implement the @code{stop} method.
5419 If this method is defined in a sub-class of @code{gdb.Breakpoint},
5420 it will be called when the inferior reaches any location of a
5421 breakpoint which instantiates that sub-class. If the method returns
5422 @code{True}, the inferior will be stopped at the location of the
5423 breakpoint, otherwise the inferior will continue.
5424
5425 If there are multiple breakpoints at the same location with a
5426 @code{stop} method, each one will be called regardless of the
5427 return status of the previous. This ensures that all @code{stop}
5428 methods have a chance to execute at that location. In this scenario
5429 if one of the methods returns @code{True} but the others return
5430 @code{False}, the inferior will still be stopped.
5431
5432 You should not alter the execution state of the inferior (i.e.@:, step,
5433 next, etc.), alter the current frame context (i.e.@:, change the current
5434 active frame), or alter, add or delete any breakpoint. As a general
5435 rule, you should not alter any data within @value{GDBN} or the inferior
5436 at this time.
5437
5438 Example @code{stop} implementation:
5439
5440 @smallexample
5441 class MyBreakpoint (gdb.Breakpoint):
5442 def stop (self):
5443 inf_val = gdb.parse_and_eval("foo")
5444 if inf_val == 3:
5445 return True
5446 return False
5447 @end smallexample
5448 @end defun
5449
5450 @defun Breakpoint.is_valid ()
5451 Return @code{True} if this @code{Breakpoint} object is valid,
5452 @code{False} otherwise. A @code{Breakpoint} object can become invalid
5453 if the user deletes the breakpoint. In this case, the object still
5454 exists, but the underlying breakpoint does not. In the cases of
5455 watchpoint scope, the watchpoint remains valid even if execution of the
5456 inferior leaves the scope of that watchpoint.
5457 @end defun
5458
5459 @defun Breakpoint.delete ()
5460 Permanently deletes the @value{GDBN} breakpoint. This also
5461 invalidates the Python @code{Breakpoint} object. Any further access
5462 to this object's attributes or methods will raise an error.
5463 @end defun
5464
5465 @defvar Breakpoint.enabled
5466 This attribute is @code{True} if the breakpoint is enabled, and
5467 @code{False} otherwise. This attribute is writable. You can use it to enable
5468 or disable the breakpoint.
5469 @end defvar
5470
5471 @defvar Breakpoint.silent
5472 This attribute is @code{True} if the breakpoint is silent, and
5473 @code{False} otherwise. This attribute is writable.
5474
5475 Note that a breakpoint can also be silent if it has commands and the
5476 first command is @code{silent}. This is not reported by the
5477 @code{silent} attribute.
5478 @end defvar
5479
5480 @defvar Breakpoint.pending
5481 This attribute is @code{True} if the breakpoint is pending, and
5482 @code{False} otherwise. @xref{Set Breaks}. This attribute is
5483 read-only.
5484 @end defvar
5485
5486 @anchor{python_breakpoint_thread}
5487 @defvar Breakpoint.thread
5488 If the breakpoint is thread-specific, this attribute holds the
5489 thread's global id. If the breakpoint is not thread-specific, this
5490 attribute is @code{None}. This attribute is writable.
5491 @end defvar
5492
5493 @defvar Breakpoint.task
5494 If the breakpoint is Ada task-specific, this attribute holds the Ada task
5495 id. If the breakpoint is not task-specific (or the underlying
5496 language is not Ada), this attribute is @code{None}. This attribute
5497 is writable.
5498 @end defvar
5499
5500 @defvar Breakpoint.ignore_count
5501 This attribute holds the ignore count for the breakpoint, an integer.
5502 This attribute is writable.
5503 @end defvar
5504
5505 @defvar Breakpoint.number
5506 This attribute holds the breakpoint's number --- the identifier used by
5507 the user to manipulate the breakpoint. This attribute is not writable.
5508 @end defvar
5509
5510 @defvar Breakpoint.type
5511 This attribute holds the breakpoint's type --- the identifier used to
5512 determine the actual breakpoint type or use-case. This attribute is not
5513 writable.
5514 @end defvar
5515
5516 @defvar Breakpoint.visible
5517 This attribute tells whether the breakpoint is visible to the user
5518 when set, or when the @samp{info breakpoints} command is run. This
5519 attribute is not writable.
5520 @end defvar
5521
5522 @defvar Breakpoint.temporary
5523 This attribute indicates whether the breakpoint was created as a
5524 temporary breakpoint. Temporary breakpoints are automatically deleted
5525 after that breakpoint has been hit. Access to this attribute, and all
5526 other attributes and functions other than the @code{is_valid}
5527 function, will result in an error after the breakpoint has been hit
5528 (as it has been automatically deleted). This attribute is not
5529 writable.
5530 @end defvar
5531
5532 @defvar Breakpoint.hit_count
5533 This attribute holds the hit count for the breakpoint, an integer.
5534 This attribute is writable, but currently it can only be set to zero.
5535 @end defvar
5536
5537 @defvar Breakpoint.location
5538 This attribute holds the location of the breakpoint, as specified by
5539 the user. It is a string. If the breakpoint does not have a location
5540 (that is, it is a watchpoint) the attribute's value is @code{None}. This
5541 attribute is not writable.
5542 @end defvar
5543
5544 @defvar Breakpoint.expression
5545 This attribute holds a breakpoint expression, as specified by
5546 the user. It is a string. If the breakpoint does not have an
5547 expression (the breakpoint is not a watchpoint) the attribute's value
5548 is @code{None}. This attribute is not writable.
5549 @end defvar
5550
5551 @defvar Breakpoint.condition
5552 This attribute holds the condition of the breakpoint, as specified by
5553 the user. It is a string. If there is no condition, this attribute's
5554 value is @code{None}. This attribute is writable.
5555 @end defvar
5556
5557 @defvar Breakpoint.commands
5558 This attribute holds the commands attached to the breakpoint. If
5559 there are commands, this attribute's value is a string holding all the
5560 commands, separated by newlines. If there are no commands, this
5561 attribute is @code{None}. This attribute is writable.
5562 @end defvar
5563
5564 @node Finish Breakpoints in Python
5565 @subsubsection Finish Breakpoints
5566
5567 @cindex python finish breakpoints
5568 @tindex gdb.FinishBreakpoint
5569
5570 A finish breakpoint is a temporary breakpoint set at the return address of
5571 a frame, based on the @code{finish} command. @code{gdb.FinishBreakpoint}
5572 extends @code{gdb.Breakpoint}. The underlying breakpoint will be disabled
5573 and deleted when the execution will run out of the breakpoint scope (i.e.@:
5574 @code{Breakpoint.stop} or @code{FinishBreakpoint.out_of_scope} triggered).
5575 Finish breakpoints are thread specific and must be create with the right
5576 thread selected.
5577
5578 @defun FinishBreakpoint.__init__ (@r{[}frame@r{]} @r{[}, internal@r{]})
5579 Create a finish breakpoint at the return address of the @code{gdb.Frame}
5580 object @var{frame}. If @var{frame} is not provided, this defaults to the
5581 newest frame. The optional @var{internal} argument allows the breakpoint to
5582 become invisible to the user. @xref{Breakpoints In Python}, for further
5583 details about this argument.
5584 @end defun
5585
5586 @defun FinishBreakpoint.out_of_scope (self)
5587 In some circumstances (e.g.@: @code{longjmp}, C@t{++} exceptions, @value{GDBN}
5588 @code{return} command, @dots{}), a function may not properly terminate, and
5589 thus never hit the finish breakpoint. When @value{GDBN} notices such a
5590 situation, the @code{out_of_scope} callback will be triggered.
5591
5592 You may want to sub-class @code{gdb.FinishBreakpoint} and override this
5593 method:
5594
5595 @smallexample
5596 class MyFinishBreakpoint (gdb.FinishBreakpoint)
5597 def stop (self):
5598 print "normal finish"
5599 return True
5600
5601 def out_of_scope ():
5602 print "abnormal finish"
5603 @end smallexample
5604 @end defun
5605
5606 @defvar FinishBreakpoint.return_value
5607 When @value{GDBN} is stopped at a finish breakpoint and the frame
5608 used to build the @code{gdb.FinishBreakpoint} object had debug symbols, this
5609 attribute will contain a @code{gdb.Value} object corresponding to the return
5610 value of the function. The value will be @code{None} if the function return
5611 type is @code{void} or if the return value was not computable. This attribute
5612 is not writable.
5613 @end defvar
5614
5615 @node Lazy Strings In Python
5616 @subsubsection Python representation of lazy strings
5617
5618 @cindex lazy strings in python
5619 @tindex gdb.LazyString
5620
5621 A @dfn{lazy string} is a string whose contents is not retrieved or
5622 encoded until it is needed.
5623
5624 A @code{gdb.LazyString} is represented in @value{GDBN} as an
5625 @code{address} that points to a region of memory, an @code{encoding}
5626 that will be used to encode that region of memory, and a @code{length}
5627 to delimit the region of memory that represents the string. The
5628 difference between a @code{gdb.LazyString} and a string wrapped within
5629 a @code{gdb.Value} is that a @code{gdb.LazyString} will be treated
5630 differently by @value{GDBN} when printing. A @code{gdb.LazyString} is
5631 retrieved and encoded during printing, while a @code{gdb.Value}
5632 wrapping a string is immediately retrieved and encoded on creation.
5633
5634 A @code{gdb.LazyString} object has the following functions:
5635
5636 @defun LazyString.value ()
5637 Convert the @code{gdb.LazyString} to a @code{gdb.Value}. This value
5638 will point to the string in memory, but will lose all the delayed
5639 retrieval, encoding and handling that @value{GDBN} applies to a
5640 @code{gdb.LazyString}.
5641 @end defun
5642
5643 @defvar LazyString.address
5644 This attribute holds the address of the string. This attribute is not
5645 writable.
5646 @end defvar
5647
5648 @defvar LazyString.length
5649 This attribute holds the length of the string in characters. If the
5650 length is -1, then the string will be fetched and encoded up to the
5651 first null of appropriate width. This attribute is not writable.
5652 @end defvar
5653
5654 @defvar LazyString.encoding
5655 This attribute holds the encoding that will be applied to the string
5656 when the string is printed by @value{GDBN}. If the encoding is not
5657 set, or contains an empty string, then @value{GDBN} will select the
5658 most appropriate encoding when the string is printed. This attribute
5659 is not writable.
5660 @end defvar
5661
5662 @defvar LazyString.type
5663 This attribute holds the type that is represented by the lazy string's
5664 type. For a lazy string this is a pointer or array type. To
5665 resolve this to the lazy string's character type, use the type's
5666 @code{target} method. @xref{Types In Python}. This attribute is not
5667 writable.
5668 @end defvar
5669
5670 @node Architectures In Python
5671 @subsubsection Python representation of architectures
5672 @cindex Python architectures
5673
5674 @value{GDBN} uses architecture specific parameters and artifacts in a
5675 number of its various computations. An architecture is represented
5676 by an instance of the @code{gdb.Architecture} class.
5677
5678 A @code{gdb.Architecture} class has the following methods:
5679
5680 @defun Architecture.name ()
5681 Return the name (string value) of the architecture.
5682 @end defun
5683
5684 @defun Architecture.disassemble (@var{start_pc} @r{[}, @var{end_pc} @r{[}, @var{count}@r{]]})
5685 Return a list of disassembled instructions starting from the memory
5686 address @var{start_pc}. The optional arguments @var{end_pc} and
5687 @var{count} determine the number of instructions in the returned list.
5688 If both the optional arguments @var{end_pc} and @var{count} are
5689 specified, then a list of at most @var{count} disassembled instructions
5690 whose start address falls in the closed memory address interval from
5691 @var{start_pc} to @var{end_pc} are returned. If @var{end_pc} is not
5692 specified, but @var{count} is specified, then @var{count} number of
5693 instructions starting from the address @var{start_pc} are returned. If
5694 @var{count} is not specified but @var{end_pc} is specified, then all
5695 instructions whose start address falls in the closed memory address
5696 interval from @var{start_pc} to @var{end_pc} are returned. If neither
5697 @var{end_pc} nor @var{count} are specified, then a single instruction at
5698 @var{start_pc} is returned. For all of these cases, each element of the
5699 returned list is a Python @code{dict} with the following string keys:
5700
5701 @table @code
5702
5703 @item addr
5704 The value corresponding to this key is a Python long integer capturing
5705 the memory address of the instruction.
5706
5707 @item asm
5708 The value corresponding to this key is a string value which represents
5709 the instruction with assembly language mnemonics. The assembly
5710 language flavor used is the same as that specified by the current CLI
5711 variable @code{disassembly-flavor}. @xref{Machine Code}.
5712
5713 @item length
5714 The value corresponding to this key is the length (integer value) of the
5715 instruction in bytes.
5716
5717 @end table
5718 @end defun
5719
5720 @anchor{gdbpy_architecture_registers}
5721 @defun Architecture.registers (@r{[} @var{reggroup} @r{]})
5722 Return a @code{gdb.RegisterDescriptorIterator} (@pxref{Registers In
5723 Python}) for all of the registers in @var{reggroup}, a string that is
5724 the name of a register group. If @var{reggroup} is omitted, or is the
5725 empty string, then the register group @samp{all} is assumed.
5726 @end defun
5727
5728 @node Registers In Python
5729 @subsubsection Registers In Python
5730 @cindex Registers In Python
5731
5732 Python code can request from a @code{gdb.Architecture} information
5733 about the set of registers available
5734 (@pxref{gdbpy_architecture_registers,,@code{Architecture.registers}}).
5735 The register information is returned as a
5736 @code{gdb.RegisterDescriptorIterator}, which is an iterator that in
5737 turn returns @code{gdb.RegisterDescriptor} objects.
5738
5739 A @code{gdb.RegisterDescriptor} does not provide the value of a
5740 register (@pxref{gdbpy_frame_read_register,,@code{Frame.read_register}}
5741 for reading a register's value), instead the @code{RegisterDescriptor}
5742 is a way to discover which registers are available for a particular
5743 architecture.
5744
5745 A @code{gdb.RegisterDescriptor} has the following read-only properties:
5746
5747 @defvar RegisterDescriptor.name
5748 The name of this register.
5749 @end defvar
5750
5751 @node TUI Windows In Python
5752 @subsubsection Implementing new TUI windows
5753 @cindex Python TUI Windows
5754
5755 New TUI (@pxref{TUI}) windows can be implemented in Python.
5756
5757 @findex gdb.register_window_type
5758 @defun gdb.register_window_type (@var{name}, @var{factory})
5759 Because TUI windows are created and destroyed depending on the layout
5760 the user chooses, new window types are implemented by registering a
5761 factory function with @value{GDBN}.
5762
5763 @var{name} is the name of the new window. It's an error to try to
5764 replace one of the built-in windows, but other window types can be
5765 replaced.
5766
5767 @var{function} is a factory function that is called to create the TUI
5768 window. This is called with a single argument of type
5769 @code{gdb.TuiWindow}, described below. It should return an object
5770 that implements the TUI window protocol, also described below.
5771 @end defun
5772
5773 As mentioned above, when a factory function is called, it is passed a
5774 an object of type @code{gdb.TuiWindow}. This object has these
5775 methods and attributes:
5776
5777 @defun TuiWindow.is_valid ()
5778 This method returns @code{True} when this window is valid. When the
5779 user changes the TUI layout, windows no longer visible in the new
5780 layout will be destroyed. At this point, the @code{gdb.TuiWindow}
5781 will no longer be valid, and methods (and attributes) other than
5782 @code{is_valid} will throw an exception.
5783 @end defun
5784
5785 @defvar TuiWindow.width
5786 This attribute holds the width of the window. It is not writable.
5787 @end defvar
5788
5789 @defvar TuiWindow.height
5790 This attribute holds the height of the window. It is not writable.
5791 @end defvar
5792
5793 @defvar TuiWindow.title
5794 This attribute holds the window's title, a string. This is normally
5795 displayed above the window. This attribute can be modified.
5796 @end defvar
5797
5798 @defun TuiWindow.erase ()
5799 Remove all the contents of the window.
5800 @end defun
5801
5802 @defun TuiWindow.write (@var{string})
5803 Write @var{string} to the window. @var{string} can contain ANSI
5804 terminal escape styling sequences; @value{GDBN} will translate these
5805 as appropriate for the terminal.
5806 @end defun
5807
5808 The factory function that you supply should return an object
5809 conforming to the TUI window protocol. These are the method that can
5810 be called on this object, which is referred to below as the ``window
5811 object''. The methods documented below are optional; if the object
5812 does not implement one of these methods, @value{GDBN} will not attempt
5813 to call it. Additional new methods may be added to the window
5814 protocol in the future. @value{GDBN} guarantees that they will begin
5815 with a lower-case letter, so you can start implementation methods with
5816 upper-case letters or underscore to avoid any future conflicts.
5817
5818 @defun Window.close ()
5819 When the TUI window is closed, the @code{gdb.TuiWindow} object will be
5820 put into an invalid state. At this time, @value{GDBN} will call
5821 @code{close} method on the window object.
5822
5823 After this method is called, @value{GDBN} will discard any references
5824 it holds on this window object, and will no longer call methods on
5825 this object.
5826 @end defun
5827
5828 @defun Window.render ()
5829 In some situations, a TUI window can change size. For example, this
5830 can happen if the user resizes the terminal, or changes the layout.
5831 When this happens, @value{GDBN} will call the @code{render} method on
5832 the window object.
5833
5834 If your window is intended to update in response to changes in the
5835 inferior, you will probably also want to register event listeners and
5836 send output to the @code{gdb.TuiWindow}.
5837 @end defun
5838
5839 @defun Window.hscroll (@var{num})
5840 This is a request to scroll the window horizontally. @var{num} is the
5841 amount by which to scroll, with negative numbers meaning to scroll
5842 right. In the TUI model, it is the viewport that moves, not the
5843 contents. A positive argument should cause the viewport to move
5844 right, and so the content should appear to move to the left.
5845 @end defun
5846
5847 @defun Window.vscroll (@var{num})
5848 This is a request to scroll the window vertically. @var{num} is the
5849 amount by which to scroll, with negative numbers meaning to scroll
5850 backward. In the TUI model, it is the viewport that moves, not the
5851 contents. A positive argument should cause the viewport to move down,
5852 and so the content should appear to move up.
5853 @end defun
5854
5855 @node Python Auto-loading
5856 @subsection Python Auto-loading
5857 @cindex Python auto-loading
5858
5859 When a new object file is read (for example, due to the @code{file}
5860 command, or because the inferior has loaded a shared library),
5861 @value{GDBN} will look for Python support scripts in several ways:
5862 @file{@var{objfile}-gdb.py} and @code{.debug_gdb_scripts} section.
5863 @xref{Auto-loading extensions}.
5864
5865 The auto-loading feature is useful for supplying application-specific
5866 debugging commands and scripts.
5867
5868 Auto-loading can be enabled or disabled,
5869 and the list of auto-loaded scripts can be printed.
5870
5871 @table @code
5872 @anchor{set auto-load python-scripts}
5873 @kindex set auto-load python-scripts
5874 @item set auto-load python-scripts [on|off]
5875 Enable or disable the auto-loading of Python scripts.
5876
5877 @anchor{show auto-load python-scripts}
5878 @kindex show auto-load python-scripts
5879 @item show auto-load python-scripts
5880 Show whether auto-loading of Python scripts is enabled or disabled.
5881
5882 @anchor{info auto-load python-scripts}
5883 @kindex info auto-load python-scripts
5884 @cindex print list of auto-loaded Python scripts
5885 @item info auto-load python-scripts [@var{regexp}]
5886 Print the list of all Python scripts that @value{GDBN} auto-loaded.
5887
5888 Also printed is the list of Python scripts that were mentioned in
5889 the @code{.debug_gdb_scripts} section and were either not found
5890 (@pxref{dotdebug_gdb_scripts section}) or were not auto-loaded due to
5891 @code{auto-load safe-path} rejection (@pxref{Auto-loading}).
5892 This is useful because their names are not printed when @value{GDBN}
5893 tries to load them and fails. There may be many of them, and printing
5894 an error message for each one is problematic.
5895
5896 If @var{regexp} is supplied only Python scripts with matching names are printed.
5897
5898 Example:
5899
5900 @smallexample
5901 (gdb) info auto-load python-scripts
5902 Loaded Script
5903 Yes py-section-script.py
5904 full name: /tmp/py-section-script.py
5905 No my-foo-pretty-printers.py
5906 @end smallexample
5907 @end table
5908
5909 When reading an auto-loaded file or script, @value{GDBN} sets the
5910 @dfn{current objfile}. This is available via the @code{gdb.current_objfile}
5911 function (@pxref{Objfiles In Python}). This can be useful for
5912 registering objfile-specific pretty-printers and frame-filters.
5913
5914 @node Python modules
5915 @subsection Python modules
5916 @cindex python modules
5917
5918 @value{GDBN} comes with several modules to assist writing Python code.
5919
5920 @menu
5921 * gdb.printing:: Building and registering pretty-printers.
5922 * gdb.types:: Utilities for working with types.
5923 * gdb.prompt:: Utilities for prompt value substitution.
5924 @end menu
5925
5926 @node gdb.printing
5927 @subsubsection gdb.printing
5928 @cindex gdb.printing
5929
5930 This module provides a collection of utilities for working with
5931 pretty-printers.
5932
5933 @table @code
5934 @item PrettyPrinter (@var{name}, @var{subprinters}=None)
5935 This class specifies the API that makes @samp{info pretty-printer},
5936 @samp{enable pretty-printer} and @samp{disable pretty-printer} work.
5937 Pretty-printers should generally inherit from this class.
5938
5939 @item SubPrettyPrinter (@var{name})
5940 For printers that handle multiple types, this class specifies the
5941 corresponding API for the subprinters.
5942
5943 @item RegexpCollectionPrettyPrinter (@var{name})
5944 Utility class for handling multiple printers, all recognized via
5945 regular expressions.
5946 @xref{Writing a Pretty-Printer}, for an example.
5947
5948 @item FlagEnumerationPrinter (@var{name})
5949 A pretty-printer which handles printing of @code{enum} values. Unlike
5950 @value{GDBN}'s built-in @code{enum} printing, this printer attempts to
5951 work properly when there is some overlap between the enumeration
5952 constants. The argument @var{name} is the name of the printer and
5953 also the name of the @code{enum} type to look up.
5954
5955 @item register_pretty_printer (@var{obj}, @var{printer}, @var{replace}=False)
5956 Register @var{printer} with the pretty-printer list of @var{obj}.
5957 If @var{replace} is @code{True} then any existing copy of the printer
5958 is replaced. Otherwise a @code{RuntimeError} exception is raised
5959 if a printer with the same name already exists.
5960 @end table
5961
5962 @node gdb.types
5963 @subsubsection gdb.types
5964 @cindex gdb.types
5965
5966 This module provides a collection of utilities for working with
5967 @code{gdb.Type} objects.
5968
5969 @table @code
5970 @item get_basic_type (@var{type})
5971 Return @var{type} with const and volatile qualifiers stripped,
5972 and with typedefs and C@t{++} references converted to the underlying type.
5973
5974 C@t{++} example:
5975
5976 @smallexample
5977 typedef const int const_int;
5978 const_int foo (3);
5979 const_int& foo_ref (foo);
5980 int main () @{ return 0; @}
5981 @end smallexample
5982
5983 Then in gdb:
5984
5985 @smallexample
5986 (gdb) start
5987 (gdb) python import gdb.types
5988 (gdb) python foo_ref = gdb.parse_and_eval("foo_ref")
5989 (gdb) python print gdb.types.get_basic_type(foo_ref.type)
5990 int
5991 @end smallexample
5992
5993 @item has_field (@var{type}, @var{field})
5994 Return @code{True} if @var{type}, assumed to be a type with fields
5995 (e.g., a structure or union), has field @var{field}.
5996
5997 @item make_enum_dict (@var{enum_type})
5998 Return a Python @code{dictionary} type produced from @var{enum_type}.
5999
6000 @item deep_items (@var{type})
6001 Returns a Python iterator similar to the standard
6002 @code{gdb.Type.iteritems} method, except that the iterator returned
6003 by @code{deep_items} will recursively traverse anonymous struct or
6004 union fields. For example:
6005
6006 @smallexample
6007 struct A
6008 @{
6009 int a;
6010 union @{
6011 int b0;
6012 int b1;
6013 @};
6014 @};
6015 @end smallexample
6016
6017 @noindent
6018 Then in @value{GDBN}:
6019 @smallexample
6020 (@value{GDBP}) python import gdb.types
6021 (@value{GDBP}) python struct_a = gdb.lookup_type("struct A")
6022 (@value{GDBP}) python print struct_a.keys ()
6023 @{['a', '']@}
6024 (@value{GDBP}) python print [k for k,v in gdb.types.deep_items(struct_a)]
6025 @{['a', 'b0', 'b1']@}
6026 @end smallexample
6027
6028 @item get_type_recognizers ()
6029 Return a list of the enabled type recognizers for the current context.
6030 This is called by @value{GDBN} during the type-printing process
6031 (@pxref{Type Printing API}).
6032
6033 @item apply_type_recognizers (recognizers, type_obj)
6034 Apply the type recognizers, @var{recognizers}, to the type object
6035 @var{type_obj}. If any recognizer returns a string, return that
6036 string. Otherwise, return @code{None}. This is called by
6037 @value{GDBN} during the type-printing process (@pxref{Type Printing
6038 API}).
6039
6040 @item register_type_printer (locus, printer)
6041 This is a convenience function to register a type printer
6042 @var{printer}. The printer must implement the type printer protocol.
6043 The @var{locus} argument is either a @code{gdb.Objfile}, in which case
6044 the printer is registered with that objfile; a @code{gdb.Progspace},
6045 in which case the printer is registered with that progspace; or
6046 @code{None}, in which case the printer is registered globally.
6047
6048 @item TypePrinter
6049 This is a base class that implements the type printer protocol. Type
6050 printers are encouraged, but not required, to derive from this class.
6051 It defines a constructor:
6052
6053 @defmethod TypePrinter __init__ (self, name)
6054 Initialize the type printer with the given name. The new printer
6055 starts in the enabled state.
6056 @end defmethod
6057
6058 @end table
6059
6060 @node gdb.prompt
6061 @subsubsection gdb.prompt
6062 @cindex gdb.prompt
6063
6064 This module provides a method for prompt value-substitution.
6065
6066 @table @code
6067 @item substitute_prompt (@var{string})
6068 Return @var{string} with escape sequences substituted by values. Some
6069 escape sequences take arguments. You can specify arguments inside
6070 ``@{@}'' immediately following the escape sequence.
6071
6072 The escape sequences you can pass to this function are:
6073
6074 @table @code
6075 @item \\
6076 Substitute a backslash.
6077 @item \e
6078 Substitute an ESC character.
6079 @item \f
6080 Substitute the selected frame; an argument names a frame parameter.
6081 @item \n
6082 Substitute a newline.
6083 @item \p
6084 Substitute a parameter's value; the argument names the parameter.
6085 @item \r
6086 Substitute a carriage return.
6087 @item \t
6088 Substitute the selected thread; an argument names a thread parameter.
6089 @item \v
6090 Substitute the version of GDB.
6091 @item \w
6092 Substitute the current working directory.
6093 @item \[
6094 Begin a sequence of non-printing characters. These sequences are
6095 typically used with the ESC character, and are not counted in the string
6096 length. Example: ``\[\e[0;34m\](gdb)\[\e[0m\]'' will return a
6097 blue-colored ``(gdb)'' prompt where the length is five.
6098 @item \]
6099 End a sequence of non-printing characters.
6100 @end table
6101
6102 For example:
6103
6104 @smallexample
6105 substitute_prompt ("frame: \f, args: \p@{print frame-arguments@}")
6106 @end smallexample
6107
6108 @exdent will return the string:
6109
6110 @smallexample
6111 "frame: main, args: scalars"
6112 @end smallexample
6113 @end table
This page took 0.15353 seconds and 5 git commands to generate.