diff options
author | Mark Kettenis <kettenis@gnu.org> | 2001-02-17 09:01:14 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2001-02-17 09:01:14 +0000 |
commit | f31e928cd4d1342d40b83f9fa944ddc0484ab3ec (patch) | |
tree | 80a228ae324caf63b615bd2ba4ecef9b48eb111c /gdb/i387-nat.h | |
parent | 8d6dd99d61210eed101e011b2a1c79982f59ce20 (diff) | |
download | gdb-f31e928cd4d1342d40b83f9fa944ddc0484ab3ec.zip gdb-f31e928cd4d1342d40b83f9fa944ddc0484ab3ec.tar.gz gdb-f31e928cd4d1342d40b83f9fa944ddc0484ab3ec.tar.bz2 |
* i387-nat.c: Include "i387-nat.h". Use regnum instead of regno
consistently for parameter names. Fix comments accordingly.
(i387_supply_register): New function.
(i387_supply_fsave): Implement using i387_supply_register.
* i387-nat.h: Use regnum instead of regno consistently for
parameter names. Fix comments accordingly.
(i387_supply_register): New prototype.
Diffstat (limited to 'gdb/i387-nat.h')
-rw-r--r-- | gdb/i387-nat.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/gdb/i387-nat.h b/gdb/i387-nat.h index 85efc8e..ca2e7c6 100644 --- a/gdb/i387-nat.h +++ b/gdb/i387-nat.h @@ -1,5 +1,5 @@ /* Native-dependent code for the i387. - Copyright 2000 Free Software Foundation, Inc. + Copyright 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -21,18 +21,24 @@ #ifndef I387_NAT_H #define I387_NAT_H +/* Fill register REGNO in GDB's register array with the appropriate + value from *FSAVE. This function masks off any of the reserved + bits in *FSAVE. */ + +extern void i387_supply_register (int regnum, char *fsave); + /* Fill GDB's register array with the floating-point register values in *FSAVE. This function masks off any of the reserved bits in *FSAVE. */ extern void i387_supply_fsave (char *fsave); -/* Fill register REGNO (if it is a floating-point register) in *FSAVE - with the value in GDB's register array. If REGNO is -1, do this +/* Fill register REGNUM (if it is a floating-point register) in *FSAVE + with the value in GDB's register array. If REGNUM is -1, do this for all registers. This function doesn't touch any of the reserved bits in *FSAVE. */ -extern void i387_fill_fsave (char *fsave, int regno); +extern void i387_fill_fsave (char *fsave, int regnum); /* Fill GDB's register array with the floating-point and SSE register values in *FXSAVE. This function masks off any of the reserved @@ -40,11 +46,11 @@ extern void i387_fill_fsave (char *fsave, int regno); extern void i387_supply_fxsave (char *fxsave); -/* Fill register REGNO (if it is a floating-point or SSE register) in - *FXSAVE with the value in GDB's register array. If REGNO is -1, do +/* Fill register REGNUM (if it is a floating-point or SSE register) in + *FXSAVE with the value in GDB's register array. If REGNUM is -1, do this for all registers. This function doesn't touch any of the reserved bits in *FXSAVE. */ -extern void i387_fill_fxsave (char *fxsave, int regno); +extern void i387_fill_fxsave (char *fxsave, int regnum); #endif /* i387-nat.h */ |