2003-01-29 Andrew Cagney <ac131313@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Wed, 29 Jan 2003 16:10:53 +0000 (16:10 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 29 Jan 2003 16:10:53 +0000 (16:10 +0000)
* gdb.texinfo (Maintenance Commands): Document `maint print
reggroups' and `maint print register-groups'.
* gdbint.texinfo (Target Architecture Definition): Document
register_reggroup_p.

gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/doc/gdbint.texinfo

index 6ef1c3229223498531b3a3fc84a1eba21234c5cf..36f115be965b766aa0ebea5a61a1ecd21af96a2d 100644 (file)
@@ -1,3 +1,10 @@
+2003-01-29  Andrew Cagney  <ac131313@redhat.com>
+
+       * gdb.texinfo (Maintenance Commands): Document `maint print
+       reggroups' and `maint print register-groups'.
+       * gdbint.texinfo (Target Architecture Definition): Document
+       register_reggroup_p.
+
 2003-01-23  Jim Blandy  <jimb@redhat.com>
 
        * gdb.texinfo (Separate Debug Files): New section.
index af8588970a4053c6f12b1865697b33f79c99ec2c..8626e3d220a93ef400ad573f768539e2d9b7b30c 100644 (file)
@@ -14631,18 +14631,40 @@ warning message.
 @kindex maint print registers
 @kindex maint print raw-registers
 @kindex maint print cooked-registers
+@kindex maint print register-groups
 @item maint print registers
 @itemx maint print raw-registers
 @itemx maint print cooked-registers
+@itemx maint print register-groups
 Print @value{GDBN}'s internal register data structures.
 
-The command @samp{maint print raw-registers} includes the contents of
-the raw register cache; and the command @samp{maint print
-cooked-registers} includes the (cooked) value of all registers.
-@xref{Registers,, Registers, gdbint, @value{GDBN} Internals}.
+The command @code{maint print raw-registers} includes the contents of
+the raw register cache; the command @code{maint print cooked-registers}
+includes the (cooked) value of all registers; and the command
+@code{maint print register-groups} includes the groups that each
+register is a member of.  @xref{Registers,, Registers, gdbint,
+@value{GDBN} Internals}.
 
 Takes an optional file parameter.
 
+@kindex maint print reggroups
+@item maint print reggroups
+Print @value{GDBN}'s internal register group data structures.
+
+Takes an optional file parameter.
+
+@smallexample
+(gdb) @kbd{maint print reggroups}
+ Group      Type      
+ general    user      
+ float      user      
+ all        user      
+ vector     user      
+ system     user      
+ save       internal  
+ restore    internal  
+@end smallexample
+
 @kindex maint set profile
 @kindex maint show profile
 @cindex profiling GDB
index 8a8923f79696f455cff1e1a5680626dc447a8dea..6a864960bf50aa811e04f078c4bdc530134391ec 100644 (file)
@@ -3510,6 +3510,28 @@ Return the raw size of @var{reg}; defaults to the size of the register's
 virtual type.
 @xref{Target Architecture Definition, , Raw and Virtual Register Representations}.
 
+@item register_reggroup_p (@var{gdbarch}, @var{regnum}, @var{reggroup})
+@findex register_reggroup_p
+@cindex register groups
+Return non-zero if register @var{regnum} is a member of the register
+group @var{reggroup}.
+
+By default, registers are grouped as follows:
+
+@table @code
+@item float_reggroup
+Any register with a valid name and a floating-point type.
+@item vector_reggroup
+Any register with a valid name and a vector type.
+@item general_reggroup
+Any register with a valid name and a type other than vector or
+floating-point.  @samp{float_reggroup}.
+@item save_reggroup
+@itemx restore_reggroup
+@itemx all_reggroup
+Any register with a valid name.
+@end table
+
 @item REGISTER_VIRTUAL_SIZE (@var{reg})
 @findex REGISTER_VIRTUAL_SIZE
 Return the virtual size of @var{reg}; defaults to the size of the
This page took 0.116505 seconds and 4 git commands to generate.