+2004-12-14 Corinna Vinschen <vinschen@redhat.com>
+
+ * sh-tdep.c (sh_extract_return_value_nofpu): Rename from
+ sh_default_extract_return_value.
+ (sh_extract_return_value_fpu): Rename from
+ sh3e_sh4_extract_return_value.
+ (sh_store_return_value_nofpu): Rename from
+ sh_default_store_return_value.
+ (sh_store_return_value_fpu): Rename from sh3e_sh4_store_return_value.
+ (sh_return_value_nofpu): Accomodate above changes.
+ (sh_return_value_fpu): Ditto.
+
2004-12-13 Jerome Guitton <guitton@gnat.com>
* stabsread.c (read_huge_number): Add support for reading octal
containing the (raw) register state a function return value of type
TYPE, and copy that, in virtual format, into VALBUF. */
static void
-sh_default_extract_return_value (struct type *type, struct regcache *regcache,
- void *valbuf)
+sh_extract_return_value_nofpu (struct type *type, struct regcache *regcache,
+ void *valbuf)
{
int len = TYPE_LENGTH (type);
int return_register = R0_REGNUM;
}
static void
-sh3e_sh4_extract_return_value (struct type *type, struct regcache *regcache,
- void *valbuf)
+sh_extract_return_value_fpu (struct type *type, struct regcache *regcache,
+ void *valbuf)
{
if (sh_treat_as_flt_p (type))
{
regcache_raw_read (regcache, regnum++, (char *) valbuf + i);
}
else
- sh_default_extract_return_value (type, regcache, valbuf);
+ sh_extract_return_value_nofpu (type, regcache, valbuf);
}
/* Write into appropriate registers a function return value
depending on the type of the return value. In all the other cases
the result is stored in r0, left-justified. */
static void
-sh_default_store_return_value (struct type *type, struct regcache *regcache,
- const void *valbuf)
+sh_store_return_value_nofpu (struct type *type, struct regcache *regcache,
+ const void *valbuf)
{
ULONGEST val;
int len = TYPE_LENGTH (type);
}
static void
-sh3e_sh4_store_return_value (struct type *type, struct regcache *regcache,
- const void *valbuf)
+sh_store_return_value_fpu (struct type *type, struct regcache *regcache,
+ const void *valbuf)
{
if (sh_treat_as_flt_p (type))
{
regcache_raw_write (regcache, regnum++, (char *) valbuf + i);
}
else
- sh_default_store_return_value (type, regcache, valbuf);
+ sh_store_return_value_nofpu (type, regcache, valbuf);
}
static enum return_value_convention
if (sh_use_struct_convention (0, type))
return RETURN_VALUE_STRUCT_CONVENTION;
if (writebuf)
- sh_default_store_return_value (type, regcache, writebuf);
+ sh_store_return_value_nofpu (type, regcache, writebuf);
else if (readbuf)
- sh_default_extract_return_value (type, regcache, readbuf);
+ sh_extract_return_value_nofpu (type, regcache, readbuf);
return RETURN_VALUE_REGISTER_CONVENTION;
}
if (sh_use_struct_convention (0, type))
return RETURN_VALUE_STRUCT_CONVENTION;
if (writebuf)
- sh3e_sh4_store_return_value (type, regcache, writebuf);
+ sh_store_return_value_fpu (type, regcache, writebuf);
else if (readbuf)
- sh3e_sh4_extract_return_value (type, regcache, readbuf);
+ sh_extract_return_value_fpu (type, regcache, readbuf);
return RETURN_VALUE_REGISTER_CONVENTION;
}