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