This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA] Change gdbarch_return_value to take function type instead of return value type


On Oct 13 12:15, Corinna Vinschen wrote:
> No, I won't.  I found that my patch missed the calls of using_struct_return
> in eval.c.  These calls only happen in case of a OP_OBJC_MSGCALL operation.
> 
> At line 841 in eval.c, in function evaluate_subexp_standard() I found this:
> 
>   /* If we found a method with symbol information, check to see
>      if it returns a struct.  Otherwise assume it doesn't.  */
> 
>   if (method)
>     {
>       [...]
>       struct_return = using_struct_return (value_type, using_gcc);
>     }
>   else if (expect_type != NULL)
>     {
>       struct_return = using_struct_return (check_typedef (expect_type), using_gcc);
>     }
> 
> While the `if (method)' branch is simple, the `else if' branch can't be
> solved easily.  evaluate_subexp_standard just gets the expected return type
> as parameter.
> 
> Does anybody know how to get around this problem?  For now I can only see
> one way, redefine gdbarch_return_value to get both, function type and return
> value type.

Ok, since I didn't get a reply to this for a week, I take it that nobody
has a better idea.  I've changed the patch according to my above suggestion.

While looking into these calls to using_struct_return and gdbarch_return_value
another time, I found that the type given to gdbarch_return_value is used
differently in different circumstances.  Sometimes the functions get a type
directly, sometimes they get the de-typedef'd type.  The worst example is
IMHO the following in print_return_value():

  switch (gdbarch_return_value (gdbarch, value_type, NULL, NULL, NULL))
    {
    case RETURN_VALUE_REGISTER_CONVENTION:
      [...]
      CHECK_TYPEDEF (value_type);
      gdbarch_return_value (current_gdbarch, value_type, stop_registers, [...]);

The first call is using the value_type as is, while the second call is
using the de-typedef'd value_type.  So the first call to gdbarch_return_value
gets something different than the second call.

Shouldn't *all* calls to gdbarch_return_value (resp. using_struct_return)
get the check_typedef'd version of the value type to get a reliable result?

Anyway, that's not part of this patch.  This patch only changes the
function calls so that function type as well as value type are given
to gdbarch_return_value.


Corinna

        * infcall.c (call_function_by_hand): Accomodate parameter change in
        calls to using_struct_return and gdbarch_return_value.
        * infcmd.c (print_return_value): Take function type instead of
        return value type. Accomodate parameter change in calls to  
        using_struct_return and gdbarch_return_value.
        (finish_command): Accomodate parameter change in calls to
        using_struct_return and print_return_value.
        * stack.c (return_command): Accomodate parameter change in calls to
        using_struct_return and gdbarch_return_value.
        * values.c (using_struct_return): Change to take function type and
        return value type. Drop gcc_p parameter.
        * value.h (using_struct_return): Change declaration accordingly.

        * gdbarch.sh (return_value): Add functiontype parameter.
        * arch-utils.h (legacy_return_value): Ditto.
        * arch-utils.c (legacy_return_value): Add functiontype parameter.
        * amd64-tdep.c (amd64_return_value): Ditto.
        * cris-tdep.c (cris_return_value): Ditto.
        * d10v-tdep.c (d10v_return_value): Ditto.
        * hppa-tdep.c (hppa32_return_value): Ditto.
        (hppa64_return_value): Ditto.
        * i386-tdep.c (i386_return_value): Ditto.
        * m32r-tdep.c (m32r_return_value): Ditto.
        * m68hc11-tdep.c (m68hc11_return_value): Ditto.
        * m68k-tdep.c (m68k_return_value): Ditto.
        (m68k_svr4_return_value): Ditto.
        * m88k-tdep.c (m88k_return_value): Ditto.
        * mips-tdep.c (mips_n32n64_return_value): Ditto.
        (mips_o32_return_value): Ditto.
        * mn10300-tdep.c (mn10300_return_value): Ditto.
        * ppc-linux-tdep.c (ppc_linux_return_value): Ditto.
        * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Ditto.
        (ppc_sysv_abi_broken_return_value): Ditto.
        * ppcnbsd-tdep.c (ppcnbsd_return_value): Ditto.
        * s390-tdep.c (s390_return_value): Ditto.
        * sh-tdep.c (sh_return_value_nofpu): Ditto.
        (sh_return_value_fpu): Ditto.
        * sparc-tdep.c (sparc32_using_struct_return): New static function.
        (sparc32_push_dummy_code): Call sparc32_using_struct_return instead
        of using_struct_return.
        (sparc32_return_value): Add function type parameter.
        Call sparc32_using_struct_return instead of self-evaluating
	struct_return condition.
        * sparc64-tdep.c (sparc64_return_value): Add function type parameter.
        * vax-tdep.c (vax_return_value): Ditto.
        * xstormy16-tdep.c (xstormy16_return_value): Ditto.

doc/ChangeLog:

        * gdbint.texinfo (gdbarch_return_value): Change description to
        mention the new function type parameter.

Index: amd64-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/amd64-tdep.c,v
retrieving revision 1.15
diff -u -p -r1.15 amd64-tdep.c
--- amd64-tdep.c	7 Jun 2004 02:02:45 -0000	1.15
+++ amd64-tdep.c	19 Oct 2004 13:08:48 -0000
@@ -404,8 +404,8 @@ amd64_classify (struct type *type, enum 
 }
 
 static enum return_value_convention
-amd64_return_value (struct gdbarch *gdbarch, struct type *type,
-		    struct regcache *regcache,
+amd64_return_value (struct gdbarch *gdbarch, struct type *functype,
+		    struct type *type, struct regcache *regcache,
 		    void *readbuf, const void *writebuf)
 {
   enum amd64_reg_class class[2];
Index: arch-utils.c
===================================================================
RCS file: /cvs/src/src/gdb/arch-utils.c,v
retrieving revision 1.122
diff -u -p -r1.122 arch-utils.c
--- arch-utils.c	5 Aug 2004 14:12:38 -0000	1.122
+++ arch-utils.c	19 Oct 2004 13:08:48 -0000
@@ -67,9 +67,9 @@ always_use_struct_convention (int gcc_p,
 }
 
 enum return_value_convention
-legacy_return_value (struct gdbarch *gdbarch, struct type *valtype,
-		     struct regcache *regcache, void *readbuf,
-		     const void *writebuf)
+legacy_return_value (struct gdbarch *gdbarch, struct type *functype,
+		     struct type *valtype, struct regcache *regcache,
+		     void *readbuf, const void *writebuf)
 {
   /* NOTE: cagney/2004-06-13: The gcc_p parameter to
      USE_STRUCT_CONVENTION isn't used.  */
Index: arch-utils.h
===================================================================
RCS file: /cvs/src/src/gdb/arch-utils.h,v
retrieving revision 1.75
diff -u -p -r1.75 arch-utils.h
--- arch-utils.h	5 Aug 2004 14:12:38 -0000	1.75
+++ arch-utils.h	19 Oct 2004 13:08:48 -0000
@@ -36,6 +36,7 @@ extern int gdbarch_debug;
    using USE_STRUCT_RETURN, EXTRACT_RETURN_VALUE and
    STORE_RETURN_VALUE.  See also the hacks in "stack.c".  */
 enum return_value_convention legacy_return_value (struct gdbarch *gdbarch,
+						  struct type *functype,
 						  struct type *valtype,
 						  struct regcache *regcache,
 						  void *readbuf,
Index: cris-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/cris-tdep.c,v
retrieving revision 1.118
diff -u -p -r1.118 cris-tdep.c
--- cris-tdep.c	14 Oct 2004 12:10:29 -0000	1.118
+++ cris-tdep.c	19 Oct 2004 13:08:49 -0000
@@ -1580,9 +1580,9 @@ cris_extract_return_value (struct type *
 /* Handle the CRIS return value convention.  */
 
 static enum return_value_convention
-cris_return_value (struct gdbarch *gdbarch, struct type *type,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+cris_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *type, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   if (TYPE_CODE (type) == TYPE_CODE_STRUCT 
       || TYPE_CODE (type) == TYPE_CODE_UNION
Index: d10v-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/d10v-tdep.c,v
retrieving revision 1.149
diff -u -p -r1.149 d10v-tdep.c
--- d10v-tdep.c	11 Sep 2004 10:24:45 -0000	1.149
+++ d10v-tdep.c	19 Oct 2004 13:08:49 -0000
@@ -371,9 +371,9 @@ d10v_integer_to_address (struct type *ty
 /* Handle the d10v's return_value convention.  */
 
 static enum return_value_convention
-d10v_return_value (struct gdbarch *gdbarch, struct type *valtype,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+d10v_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *valtype, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   if (TYPE_LENGTH (valtype) > 8)
     /* Anything larger than 8 bytes (4 registers) goes on the stack.  */
Index: eval.c
===================================================================
RCS file: /cvs/src/src/gdb/eval.c,v
retrieving revision 1.42
diff -u -p -r1.42 eval.c
--- eval.c	29 Aug 2004 10:12:23 -0000	1.42
+++ eval.c	19 Oct 2004 13:08:51 -0000
@@ -863,11 +863,13 @@ evaluate_subexp_standard (struct type *e
 		  value_type = expect_type;
 	      }
 
-	    struct_return = using_struct_return (value_type, using_gcc);
+	    struct_return = using_struct_return (VALUE_TYPE (method),
+	    					 value_type);
 	  }
 	else if (expect_type != NULL)
 	  {
-	    struct_return = using_struct_return (check_typedef (expect_type), using_gcc);
+	    struct_return = using_struct_return (NULL,
+	    					 check_typedef (expect_type));
 	  }
 	
 	/* Found a function symbol.  Now we will substitute its
Index: gdbarch.sh
===================================================================
RCS file: /cvs/src/src/gdb/gdbarch.sh,v
retrieving revision 1.348
diff -u -p -r1.348 gdbarch.sh
--- gdbarch.sh	2 Sep 2004 17:22:08 -0000	1.348
+++ gdbarch.sh	19 Oct 2004 13:08:51 -0000
@@ -513,7 +513,7 @@ F:=:void:deprecated_store_struct_return:
 # the predicate with default hack to avoid calling STORE_RETURN_VALUE
 # (via legacy_return_value), when a small struct is involved.
 
-M::enum return_value_convention:return_value:struct type *valtype, struct regcache *regcache, void *readbuf, const void *writebuf:valtype, regcache, readbuf, writebuf::legacy_return_value
+M::enum return_value_convention:return_value:struct type *functype, struct type *valtype, struct regcache *regcache, void *readbuf, const void *writebuf:functype, valtype, regcache, readbuf, writebuf::legacy_return_value
 
 # The deprecated methods EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
 # DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and
Index: hppa-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/hppa-tdep.c,v
retrieving revision 1.174
diff -u -p -r1.174 hppa-tdep.c
--- hppa-tdep.c	14 Oct 2004 21:08:06 -0000	1.174
+++ hppa-tdep.c	19 Oct 2004 13:08:52 -0000
@@ -76,7 +76,7 @@ int hppa_instruction_nullified (void);
 /* Handle 32/64-bit struct return conventions.  */
 
 static enum return_value_convention
-hppa32_return_value (struct gdbarch *gdbarch,
+hppa32_return_value (struct gdbarch *gdbarch, struct type *functype,
 		     struct type *type, struct regcache *regcache,
 		     void *readbuf, const void *writebuf)
 {
@@ -116,7 +116,7 @@ hppa32_return_value (struct gdbarch *gdb
 }
 
 static enum return_value_convention
-hppa64_return_value (struct gdbarch *gdbarch,
+hppa64_return_value (struct gdbarch *gdbarch, struct type *functype,
 		     struct type *type, struct regcache *regcache,
 		     void *readbuf, const void *writebuf)
 {
Index: i386-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/i386-tdep.c,v
retrieving revision 1.201
diff -u -p -r1.201 i386-tdep.c
--- i386-tdep.c	18 Sep 2004 20:16:37 -0000	1.201
+++ i386-tdep.c	19 Oct 2004 13:08:52 -0000
@@ -1429,9 +1429,9 @@ i386_reg_struct_return_p (struct gdbarch
    from WRITEBUF into REGCACHE.  */
 
 static enum return_value_convention
-i386_return_value (struct gdbarch *gdbarch, struct type *type,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+i386_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *type, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   enum type_code code = TYPE_CODE (type);
 
@@ -1469,7 +1469,8 @@ i386_return_value (struct gdbarch *gdbar
   if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
     {
       type = check_typedef (TYPE_FIELD_TYPE (type, 0));
-      return i386_return_value (gdbarch, type, regcache, readbuf, writebuf);
+      return i386_return_value (gdbarch, functype, type, regcache,
+      				readbuf, writebuf);
     }
 
   if (readbuf)
Index: infcall.c
===================================================================
RCS file: /cvs/src/src/gdb/infcall.c,v
retrieving revision 1.58
diff -u -p -r1.58 infcall.c
--- infcall.c	8 Oct 2004 08:15:56 -0000	1.58
+++ infcall.c	19 Oct 2004 13:08:53 -0000
@@ -413,7 +413,7 @@ call_function_by_hand (struct value *fun
   /* Are we returning a value using a structure return or a normal
      value return? */
 
-  struct_return = using_struct_return (value_type, using_gcc);
+  struct_return = using_struct_return (VALUE_TYPE (function), value_type);
 
   /* Determine the location of the breakpoint (and possibly other
      stuff) that the called function will return to.  The SPARC, for a
@@ -857,11 +857,13 @@ the function call).", name);
       {
 	/* This code only handles "register convention".  */
 	retval = allocate_value (value_type);
-	gdb_assert (gdbarch_return_value (current_gdbarch, value_type,
+	gdb_assert (gdbarch_return_value (current_gdbarch,
+					  VALUE_TYPE (function), value_type,
 					  NULL, NULL, NULL)
 		    == RETURN_VALUE_REGISTER_CONVENTION);
-	gdbarch_return_value (current_gdbarch, value_type, retbuf,
-			      VALUE_CONTENTS_RAW (retval) /*read*/,
+	gdbarch_return_value (current_gdbarch,
+			      VALUE_TYPE (function), value_type,
+			      retbuf, VALUE_CONTENTS_RAW (retval) /*read*/,
 			      NULL /*write*/);
       }
     do_cleanups (retbuf_cleanup);
Index: infcmd.c
===================================================================
RCS file: /cvs/src/src/gdb/infcmd.c,v
retrieving revision 1.123
diff -u -p -r1.123 infcmd.c
--- infcmd.c	13 Sep 2004 18:26:28 -0000	1.123
+++ infcmd.c	19 Oct 2004 13:08:53 -0000
@@ -64,7 +64,7 @@ void interrupt_target_command (char *arg
 
 static void nofp_registers_info (char *, int);
 
-static void print_return_value (int struct_return, struct type *value_type);
+static void print_return_value (int struct_return, struct type *func_type);
 
 static void finish_command_continuation (struct continuation_arg *);
 
@@ -1075,12 +1075,13 @@ advance_command (char *arg, int from_tty
 /* Print the result of a function at the end of a 'finish' command.  */
 
 static void
-print_return_value (int struct_return, struct type *value_type)
+print_return_value (int struct_return, struct type *func_type)
 {
   struct gdbarch *gdbarch = current_gdbarch;
   struct cleanup *old_chain;
   struct ui_stream *stb;
   struct value *value;
+  struct type *value_type = TYPE_TARGET_TYPE (func_type);
 
   gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
 
@@ -1091,14 +1092,15 @@ print_return_value (int struct_return, s
      inferior function call code.  In fact, when inferior function
      calls are made async, this will likely be made the norm.  */
 
-  switch (gdbarch_return_value (gdbarch, value_type, NULL, NULL, NULL))
+  switch (gdbarch_return_value (gdbarch, func_type, value_type,
+  				NULL, NULL, NULL))
     {
     case RETURN_VALUE_REGISTER_CONVENTION:
     case RETURN_VALUE_ABI_RETURNS_ADDRESS:
       value = allocate_value (value_type);
       CHECK_TYPEDEF (value_type);
-      gdbarch_return_value (current_gdbarch, value_type, stop_registers,
-			    VALUE_CONTENTS_RAW (value), NULL);
+      gdbarch_return_value (current_gdbarch, func_type, value_type,
+			    stop_registers, VALUE_CONTENTS_RAW (value), NULL);
       break;
     case RETURN_VALUE_STRUCT_CONVENTION:
       value = NULL;
@@ -1170,9 +1172,9 @@ finish_command_continuation (struct cont
 
       CHECK_TYPEDEF (value_type);
       gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
-      struct_return = using_struct_return (value_type, gcc_compiled);
+      struct_return = using_struct_return (SYMBOL_TYPE (function), value_type);
 
-      print_return_value (struct_return, value_type); 
+      print_return_value (struct_return, SYMBOL_TYPE (function)); 
     }
 
   do_exec_cleanups (cleanups);
@@ -1293,9 +1295,10 @@ finish_command (char *arg, int from_tty)
 
 	  CHECK_TYPEDEF (value_type);
 	  gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
-	  struct_return = using_struct_return (value_type, gcc_compiled);
+	  struct_return = using_struct_return (SYMBOL_TYPE (function),
+					       value_type);
 
-	  print_return_value (struct_return, value_type); 
+	  print_return_value (struct_return, SYMBOL_TYPE (function)); 
 	}
 
       do_cleanups (old_chain);
Index: m32r-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/m32r-tdep.c,v
retrieving revision 1.33
diff -u -p -r1.33 m32r-tdep.c
--- m32r-tdep.c	7 Oct 2004 01:21:53 -0000	1.33
+++ m32r-tdep.c	19 Oct 2004 13:08:53 -0000
@@ -788,9 +788,9 @@ m32r_extract_return_value (struct type *
 }
 
 enum return_value_convention
-m32r_return_value (struct gdbarch *gdbarch, struct type *valtype,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+m32r_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *valtype, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   if (TYPE_LENGTH (valtype) > 8)
     return RETURN_VALUE_STRUCT_CONVENTION;
Index: m68hc11-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/m68hc11-tdep.c,v
retrieving revision 1.104
diff -u -p -r1.104 m68hc11-tdep.c
--- m68hc11-tdep.c	31 Jul 2004 21:53:17 -0000	1.104
+++ m68hc11-tdep.c	19 Oct 2004 13:08:53 -0000
@@ -1333,9 +1333,9 @@ m68hc11_extract_return_value (struct typ
 }
 
 enum return_value_convention
-m68hc11_return_value (struct gdbarch *gdbarch, struct type *valtype,
-		      struct regcache *regcache, void *readbuf,
-		      const void *writebuf)
+m68hc11_return_value (struct gdbarch *gdbarch, struct type *functype,
+		      struct type *valtype, struct regcache *regcache,
+		      void *readbuf, const void *writebuf)
 {
   if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
       || TYPE_CODE (valtype) == TYPE_CODE_UNION
Index: m68k-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/m68k-tdep.c,v
retrieving revision 1.95
diff -u -p -r1.95 m68k-tdep.c
--- m68k-tdep.c	2 Sep 2004 19:16:36 -0000	1.95
+++ m68k-tdep.c	19 Oct 2004 13:08:53 -0000
@@ -329,9 +329,9 @@ m68k_reg_struct_return_p (struct gdbarch
    from WRITEBUF into REGCACHE.  */
 
 static enum return_value_convention
-m68k_return_value (struct gdbarch *gdbarch, struct type *type,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+m68k_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *type, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   enum type_code code = TYPE_CODE (type);
 
@@ -352,9 +352,9 @@ m68k_return_value (struct gdbarch *gdbar
 }
 
 static enum return_value_convention
-m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *type,
-			struct regcache *regcache, void *readbuf,
-			const void *writebuf)
+m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *functype,
+			struct type *type, struct regcache *regcache,
+			void *readbuf, const void *writebuf)
 {
   enum type_code code = TYPE_CODE (type);
 
@@ -391,7 +391,7 @@ m68k_svr4_return_value (struct gdbarch *
   if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
     {
       type = check_typedef (TYPE_FIELD_TYPE (type, 0));
-      return m68k_svr4_return_value (gdbarch, type, regcache,
+      return m68k_svr4_return_value (gdbarch, functype, type, regcache,
 				     readbuf, writebuf);
     }
 
Index: m88k-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/m88k-tdep.c,v
retrieving revision 1.14
diff -u -p -r1.14 m88k-tdep.c
--- m88k-tdep.c	31 Jul 2004 21:53:17 -0000	1.14
+++ m88k-tdep.c	19 Oct 2004 13:08:54 -0000
@@ -383,9 +383,9 @@ m88k_unwind_dummy_id (struct gdbarch *ar
    from WRITEBUF into REGCACHE.  */
 
 static enum return_value_convention
-m88k_return_value (struct gdbarch *gdbarch, struct type *type,
-		   struct regcache *regcache, void *readbuf,
-		   const void *writebuf)
+m88k_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *type, struct regcache *regcache,
+		   void *readbuf, const void *writebuf)
 {
   int len = TYPE_LENGTH (type);
   char buf[8];
Index: mips-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mips-tdep.c,v
retrieving revision 1.335
diff -u -p -r1.335 mips-tdep.c
--- mips-tdep.c	15 Oct 2004 07:25:03 -0000	1.335
+++ mips-tdep.c	19 Oct 2004 13:08:54 -0000
@@ -3675,7 +3675,7 @@ mips_n32n64_push_dummy_call (struct gdba
 }
 
 static enum return_value_convention
-mips_n32n64_return_value (struct gdbarch *gdbarch,
+mips_n32n64_return_value (struct gdbarch *gdbarch, struct type *functype,
 			  struct type *type, struct regcache *regcache,
 			  void *readbuf, const void *writebuf)
 {
@@ -4090,8 +4090,8 @@ mips_o32_push_dummy_call (struct gdbarch
 }
 
 static enum return_value_convention
-mips_o32_return_value (struct gdbarch *gdbarch, struct type *type,
-		       struct regcache *regcache,
+mips_o32_return_value (struct gdbarch *gdbarch, struct type *functype,
+		       struct type *type, struct regcache *regcache,
 		       void *readbuf, const void *writebuf)
 {
   struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
Index: mn10300-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mn10300-tdep.c,v
retrieving revision 1.112
diff -u -p -r1.112 mn10300-tdep.c
--- mn10300-tdep.c	3 Aug 2004 02:02:22 -0000	1.112
+++ mn10300-tdep.c	19 Oct 2004 13:08:55 -0000
@@ -296,9 +296,9 @@ mn10300_use_struct_convention (struct ty
    from WRITEBUF into REGCACHE.  */
 
 static enum return_value_convention
-mn10300_return_value (struct gdbarch *gdbarch, struct type *type,
-		      struct regcache *regcache, void *readbuf,
-		      const void *writebuf)
+mn10300_return_value (struct gdbarch *gdbarch, struct type *functype,
+		      struct type *type, struct regcache *regcache,
+		      void *readbuf, const void *writebuf)
 {
   if (mn10300_use_struct_convention (type))
     return RETURN_VALUE_STRUCT_CONVENTION;
Index: ppc-linux-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/ppc-linux-tdep.c,v
retrieving revision 1.66
diff -u -p -r1.66 ppc-linux-tdep.c
--- ppc-linux-tdep.c	31 Jul 2004 21:53:17 -0000	1.66
+++ ppc-linux-tdep.c	19 Oct 2004 13:08:55 -0000
@@ -483,9 +483,9 @@ ppc_linux_memory_remove_breakpoint (CORE
    which were added later, do get returned in a register though.  */
 
 static enum return_value_convention
-ppc_linux_return_value (struct gdbarch *gdbarch, struct type *valtype,
-			struct regcache *regcache, void *readbuf,
-			const void *writebuf)
+ppc_linux_return_value (struct gdbarch *gdbarch, struct type *functype,
+			struct type *valtype, struct regcache *regcache,
+			void *readbuf, const void *writebuf)
 {  
   if ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
        || TYPE_CODE (valtype) == TYPE_CODE_UNION)
@@ -493,8 +493,8 @@ ppc_linux_return_value (struct gdbarch *
 	   && TYPE_VECTOR (valtype)))
     return RETURN_VALUE_STRUCT_CONVENTION;
   else
-    return ppc_sysv_abi_return_value (gdbarch, valtype, regcache, readbuf,
-				      writebuf);
+    return ppc_sysv_abi_return_value (gdbarch, functype, valtype, regcache,
+				      readbuf, writebuf);
 }
 
 /* Fetch (and possibly build) an appropriate link_map_offsets
Index: ppc-sysv-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/ppc-sysv-tdep.c,v
retrieving revision 1.24
diff -u -p -r1.24 ppc-sysv-tdep.c
--- ppc-sysv-tdep.c	7 Jun 2004 02:02:52 -0000	1.24
+++ ppc-sysv-tdep.c	19 Oct 2004 13:08:55 -0000
@@ -515,9 +515,9 @@ do_ppc_sysv_return_value (struct gdbarch
 }
 
 enum return_value_convention
-ppc_sysv_abi_return_value (struct gdbarch *gdbarch, struct type *valtype,
-			   struct regcache *regcache, void *readbuf,
-			   const void *writebuf)
+ppc_sysv_abi_return_value (struct gdbarch *gdbarch, struct type *functype,
+			   struct type *valtype, struct regcache *regcache,
+			   void *readbuf, const void *writebuf)
 {
   return do_ppc_sysv_return_value (gdbarch, valtype, regcache, readbuf,
 				   writebuf, 0);
@@ -525,6 +525,7 @@ ppc_sysv_abi_return_value (struct gdbarc
 
 enum return_value_convention
 ppc_sysv_abi_broken_return_value (struct gdbarch *gdbarch,
+				  struct type *functype,
 				  struct type *valtype,
 				  struct regcache *regcache,
 				  void *readbuf, const void *writebuf)
@@ -847,9 +848,9 @@ ppc64_sysv_abi_push_dummy_call (struct g
    location; when READBUF is non-NULL, fill the buffer from the
    corresponding register return-value location.  */
 enum return_value_convention
-ppc64_sysv_abi_return_value (struct gdbarch *gdbarch, struct type *valtype,
-			     struct regcache *regcache, void *readbuf,
-			     const void *writebuf)
+ppc64_sysv_abi_return_value (struct gdbarch *gdbarch, struct type *functype,
+			     struct type *valtype, struct regcache *regcache,
+			     void *readbuf, const void *writebuf)
 {
   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
 
Index: ppcnbsd-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/ppcnbsd-tdep.c,v
retrieving revision 1.25
diff -u -p -r1.25 ppcnbsd-tdep.c
--- ppcnbsd-tdep.c	24 Jul 2004 01:00:20 -0000	1.25
+++ ppcnbsd-tdep.c	19 Oct 2004 13:08:55 -0000
@@ -245,9 +245,9 @@ static struct core_fns ppcnbsd_elfcore_f
    the moment use the broken convention.  Ulgh!.  */
 
 static enum return_value_convention
-ppcnbsd_return_value (struct gdbarch *gdbarch, struct type *valtype,
-		      struct regcache *regcache, void *readbuf,
-		      const void *writebuf)
+ppcnbsd_return_value (struct gdbarch *gdbarch, struct type *functype,
+		      struct type *valtype, struct regcache *regcache,
+		      void *readbuf, const void *writebuf)
 {
   if ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
        || TYPE_CODE (valtype) == TYPE_CODE_UNION)
@@ -259,8 +259,8 @@ ppcnbsd_return_value (struct gdbarch *gd
 	   || TYPE_LENGTH (valtype) == 8))
     return RETURN_VALUE_STRUCT_CONVENTION;
   else
-    return ppc_sysv_abi_broken_return_value (gdbarch, valtype, regcache,
-					     readbuf, writebuf);
+    return ppc_sysv_abi_broken_return_value (gdbarch, functype, valtype,
+					     regcache, readbuf, writebuf);
 }
 
 static void
Index: s390-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/s390-tdep.c,v
retrieving revision 1.135
diff -u -p -r1.135 s390-tdep.c
--- s390-tdep.c	31 Jul 2004 21:53:17 -0000	1.135
+++ s390-tdep.c	19 Oct 2004 13:08:55 -0000
@@ -2771,8 +2771,9 @@ s390_return_value_convention (struct gdb
 }
 
 static enum return_value_convention
-s390_return_value (struct gdbarch *gdbarch, struct type *type, 
-		   struct regcache *regcache, void *out, const void *in)
+s390_return_value (struct gdbarch *gdbarch, struct type *functype,
+		   struct type *type, struct regcache *regcache,
+		   void *out, const void *in)
 {
   int word_size = gdbarch_ptr_bit (gdbarch) / 8;
   int length = TYPE_LENGTH (type);
Index: sh-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/sh-tdep.c,v
retrieving revision 1.177
diff -u -p -r1.177 sh-tdep.c
--- sh-tdep.c	6 Oct 2004 08:59:02 -0000	1.177
+++ sh-tdep.c	19 Oct 2004 13:08:56 -0000
@@ -1282,8 +1282,8 @@ sh3e_sh4_store_return_value (struct type
 }
 
 static enum return_value_convention
-sh_return_value_nofpu (struct gdbarch *gdbarch, struct type *type,
-		       struct regcache *regcache,
+sh_return_value_nofpu (struct gdbarch *gdbarch, struct type *functype,
+		       struct type *type, struct regcache *regcache,
 		       void *readbuf, const void *writebuf)
 {
   if (sh_use_struct_convention (0, type))
@@ -1296,8 +1296,8 @@ sh_return_value_nofpu (struct gdbarch *g
 }
 
 static enum return_value_convention
-sh_return_value_fpu (struct gdbarch *gdbarch, struct type *type,
-		     struct regcache *regcache,
+sh_return_value_fpu (struct gdbarch *gdbarch, struct type *functype,
+		     struct type *type, struct regcache *regcache,
 		     void *readbuf, const void *writebuf)
 {
   if (sh_use_struct_convention (0, type))
Index: sparc-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/sparc-tdep.c,v
retrieving revision 1.153
diff -u -p -r1.153 sparc-tdep.c
--- sparc-tdep.c	7 Jun 2004 02:02:55 -0000	1.153
+++ sparc-tdep.c	19 Oct 2004 13:08:56 -0000
@@ -241,6 +241,15 @@ sparc_structure_or_union_p (const struct
   return 0;
 }
 
+static int
+sparc32_using_struct_return (struct type *type)
+{
+  if (sparc_structure_or_union_p (type)
+      || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16))
+    return 1;
+  return 0;
+}
+
 /* Register information.  */
 
 static const char *sparc32_register_names[] =
@@ -343,7 +352,7 @@ sparc32_push_dummy_code (struct gdbarch 
   *bp_addr = sp - 4;
   *real_pc = funcaddr;
 
-  if (using_struct_return (value_type, using_gcc))
+  if (sparc32_using_struct_return (value_type))
     {
       char buf[4];
 
@@ -892,12 +901,11 @@ sparc32_store_return_value (struct type 
 }
 
 static enum return_value_convention
-sparc32_return_value (struct gdbarch *gdbarch, struct type *type,
-		      struct regcache *regcache, void *readbuf,
-		      const void *writebuf)
+sparc32_return_value (struct gdbarch *gdbarch, struct type *functype,
+		      struct type *type, struct regcache *regcache,
+		      void *readbuf, const void *writebuf)
 {
-  if (sparc_structure_or_union_p (type)
-      || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16))
+  if (sparc32_using_struct_return (type))
     return RETURN_VALUE_STRUCT_CONVENTION;
 
   if (readbuf)
Index: sparc64-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/sparc64-tdep.c,v
retrieving revision 1.14
diff -u -p -r1.14 sparc64-tdep.c
--- sparc64-tdep.c	24 Jun 2004 19:36:41 -0000	1.14
+++ sparc64-tdep.c	19 Oct 2004 13:08:56 -0000
@@ -1060,9 +1060,9 @@ sparc64_store_return_value (struct type 
 }
 
 static enum return_value_convention
-sparc64_return_value (struct gdbarch *gdbarch, struct type *type,
-		      struct regcache *regcache, void *readbuf,
-		      const void *writebuf)
+sparc64_return_value (struct gdbarch *gdbarch, struct type *functype,
+		      struct type *type, struct regcache *regcache,
+		      void *readbuf, const void *writebuf)
 {
   if (TYPE_LENGTH (type) > 32)
     return RETURN_VALUE_STRUCT_CONVENTION;
Index: stack.c
===================================================================
RCS file: /cvs/src/src/gdb/stack.c,v
retrieving revision 1.112
diff -u -p -r1.112 stack.c
--- stack.c	3 Aug 2004 00:57:26 -0000	1.112
+++ stack.c	19 Oct 2004 13:08:56 -0000
@@ -1816,7 +1816,7 @@ A structure or union return type is not 
 If you continue, the return value that you specified will be ignored.\n";
 	  return_value = NULL;
 	}
-      else if (using_struct_return (return_type, 0))
+      else if (using_struct_return (SYMBOL_TYPE (thisfun), return_type))
 	{
 	  query_prefix = "\
 The location at which to store the function's return value is unknown.\n\
@@ -1867,10 +1867,12 @@ If you continue, the return value that y
   if (return_value != NULL)
     {
       struct type *return_type = VALUE_TYPE (return_value);
-      gdb_assert (gdbarch_return_value (current_gdbarch, return_type,
-					NULL, NULL, NULL)
+      gdb_assert (gdbarch_return_value (current_gdbarch,
+      					SYMBOL_TYPE (thisfun), return_type,
+      					NULL, NULL, NULL)
 		  == RETURN_VALUE_REGISTER_CONVENTION);
-      gdbarch_return_value (current_gdbarch, return_type,
+      gdbarch_return_value (current_gdbarch,
+      			    SYMBOL_TYPE (thisfun), return_type,
 			    current_regcache, NULL /*read*/,
 			    VALUE_CONTENTS (return_value) /*write*/);
     }
Index: value.h
===================================================================
RCS file: /cvs/src/src/gdb/value.h,v
retrieving revision 1.55
diff -u -p -r1.55 value.h
--- value.h	10 Jun 2004 17:39:28 -0000	1.55
+++ value.h	19 Oct 2004 13:08:56 -0000
@@ -423,7 +423,7 @@ extern struct value *value_in (struct va
 
 extern int value_bit_index (struct type *type, char *addr, int index);
 
-extern int using_struct_return (struct type *value_type, int gcc_p);
+extern int using_struct_return (struct type *func_type, struct type *value_type);
 
 extern struct value *evaluate_expression (struct expression *exp);
 
Index: values.c
===================================================================
RCS file: /cvs/src/src/gdb/values.c,v
retrieving revision 1.71
diff -u -p -r1.71 values.c
--- values.c	28 Jul 2004 02:46:24 -0000	1.71
+++ values.c	19 Oct 2004 13:08:57 -0000
@@ -1238,7 +1238,7 @@ generic_use_struct_convention (int gcc_p
    with GCC.  */
 
 int
-using_struct_return (struct type *value_type, int gcc_p)
+using_struct_return (struct type *func_type, struct type *value_type)
 {
   enum type_code code = TYPE_CODE (value_type);
 
@@ -1251,8 +1251,8 @@ using_struct_return (struct type *value_
     return 0;
 
   /* Probe the architecture for the return-value convention.  */
-  return (gdbarch_return_value (current_gdbarch, value_type,
-				NULL, NULL, NULL)
+  return (gdbarch_return_value (current_gdbarch, func_type, value_type,
+  				NULL, NULL, NULL)
 	  != RETURN_VALUE_REGISTER_CONVENTION);
 }
 
Index: vax-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/vax-tdep.c,v
retrieving revision 1.85
diff -u -p -r1.85 vax-tdep.c
--- vax-tdep.c	8 Aug 2004 10:38:29 -0000	1.85
+++ vax-tdep.c	19 Oct 2004 13:08:57 -0000
@@ -202,9 +202,9 @@ vax_unwind_dummy_id (struct gdbarch *gdb
 
 
 static enum return_value_convention
-vax_return_value (struct gdbarch *gdbarch, struct type *type,
-		  struct regcache *regcache, void *readbuf,
-		  const void *writebuf)
+vax_return_value (struct gdbarch *gdbarch, struct type *functype,
+		  struct type *type, struct regcache *regcache,
+		  void *readbuf, const void *writebuf)
 {
   int len = TYPE_LENGTH (type);
   char buf[8];
Index: xstormy16-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/xstormy16-tdep.c,v
retrieving revision 1.82
diff -u -p -r1.82 xstormy16-tdep.c
--- xstormy16-tdep.c	23 Sep 2004 17:00:16 -0000	1.82
+++ xstormy16-tdep.c	19 Oct 2004 13:08:57 -0000
@@ -199,8 +199,8 @@ xstormy16_store_return_value (struct typ
 }
 
 static enum return_value_convention
-xstormy16_return_value (struct gdbarch *gdbarch, struct type *type,
-			struct regcache *regcache,
+xstormy16_return_value (struct gdbarch *gdbarch, struct type *functype,
+			struct type *type, struct regcache *regcache,
 			void *readbuf, const void *writebuf)
 {
   if (xstormy16_use_struct_convention (type))
Index: doc/gdbint.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v
retrieving revision 1.226
diff -u -p -r1.226 gdbint.texinfo
--- doc/gdbint.texinfo	12 Oct 2004 19:14:31 -0000	1.226
+++ doc/gdbint.texinfo	19 Oct 2004 13:08:58 -0000
@@ -3646,11 +3646,11 @@ allocated on the stack.  @xref{unwind_du
 Define this to convert sdb register numbers into @value{GDBN} regnums.  If not
 defined, no conversion will be done.
 
-@item enum return_value_convention gdbarch_return_value (struct gdbarch *@var{gdbarch}, struct type *@var{valtype}, struct regcache *@var{regcache}, void *@var{readbuf}, const void *@var{writebuf})
+@item enum return_value_convention gdbarch_return_value (struct gdbarch *@var{gdbarch}, struct type *@var{functype}, struct type *@var{valtype}, struct regcache *@var{regcache}, void *@var{readbuf}, const void *@var{writebuf})
 @findex gdbarch_return_value
-@anchor{gdbarch_return_value} Given a function with a return-value of
-type @var{rettype}, return which return-value convention that function
-would use.
+@anchor{gdbarch_return_value} Given a function with type @var{functype}
+and return type @var{valtype}, return which return-value convention that
+function would use.
 
 @value{GDBN} currently recognizes two function return-value conventions:
 @code{RETURN_VALUE_REGISTER_CONVENTION} where the return value is found


-- 
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat, Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]