diff options
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r-- | gdb/doc/python.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 4688783..3cb6bf8 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -3589,6 +3589,13 @@ Return the frame's symtab and line object. @xref{Symbol Tables In Python}. @end defun +@defun Frame.read_register (register) +Return the value of @var{register} in this frame. The @var{register} +argument must be a string (e.g., @code{'sp'} or @code{'rax'}). +Returns a @code{Gdb.Value} object. Throws an exception if @var{register} +does not exist. +@end defun + @defun Frame.read_var (variable @r{[}, block@r{]}) Return the value of @var{variable} in this frame. If the optional argument @var{block} is provided, search for the variable from that |