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