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