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