aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbarch.h
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2008-04-29 16:06:07 +0000
committerJoel Brobecker <brobecker@gnat.com>2008-04-29 16:06:07 +0000
commitea42b34a37453fb7cf3a4ac7a5a6d0d456623fd9 (patch)
tree10fe8c5556df19395b5fdebfa134f6e953fea93e /gdb/gdbarch.h
parent266b05cf7629d7cefecd2b31542a2332e3d5e385 (diff)
downloadgdb-ea42b34a37453fb7cf3a4ac7a5a6d0d456623fd9.zip
gdb-ea42b34a37453fb7cf3a4ac7a5a6d0d456623fd9.tar.gz
gdb-ea42b34a37453fb7cf3a4ac7a5a6d0d456623fd9.tar.bz2
* gdbarch.sh: Document the return_value method. Explain that
the FUNCTYPE parameter might be NULL. * gdbarch.h: Regenerated. * sparc-tdep.c (sparc32_push_dummy_code): Do not pass the function type when calling using_struct_return, as this is unnecessary on this target.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r--gdb/gdbarch.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h
index 6b4658e..220c2dd 100644
--- a/gdb/gdbarch.h
+++ b/gdb/gdbarch.h
@@ -360,9 +360,16 @@ typedef CORE_ADDR (gdbarch_integer_to_address_ftype) (struct gdbarch *gdbarch, s
extern CORE_ADDR gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf);
extern void set_gdbarch_integer_to_address (struct gdbarch *gdbarch, gdbarch_integer_to_address_ftype *integer_to_address);
-/* It has been suggested that this, well actually its predecessor,
- should take the type/value of the function to be called and not the
- return type. This is left as an exercise for the reader. */
+/* Return the return-value convention that will be used by FUNCTYPE
+ to return a value of type VALTYPE. FUNCTYPE may be NULL in which
+ case the return convention is computed based only on VALTYPE.
+
+ If READBUF is not NULL, extract the return value and save it in this buffer.
+
+ If WRITEBUF is not NULL, it contains a return value which will be
+ stored into the appropriate register. This can be used when we want
+ to force the value returned by a function (see the "return" command
+ for instance). */
extern int gdbarch_return_value_p (struct gdbarch *gdbarch);