8da61cc40a
gdbarch floatformats. (floatformat_from_type, extract_typed_floating) (store_typed_floating): Likewise. * doublest.h: Remove declarations for undefined floatformat arrays. * gdbarch.sh (float_format, double_format, long_double_format): Change to pairs. (pformat): Update for pairs. * gdbarch.c, gdbarch.h: Regenerated. * gdbtypes.c (floatformats_ieee_single, floatformats_ieee_double) (floatformats_ieee_double_littlebyte_bigword) (floatformats_i387_ext, floatformats_m68881_ext, floatformats_arm_ext) (floatformats_ia64_spill, floatformats_ia64_quad, floatformats_vax_f) (floatformats_vax_d): New variables. (builtin_type_ieee_single, builtin_type_ieee_double) (builtin_type_arm_ext, builtin_type_ia64_spill) (builtin_type_ia64_quad): Replace arrays with individual types. (builtin_type_ieee_single_big, builtin_type_ieee_single_little) (builtin_type_ieee_double_big, builtin_type_ieee_double_little) (builtin_type_ieee_double_littlebyte_bigword, builtin_type_i960_ext) (builtin_type_m88110_ext, builtin_type_m88110_harris_ext) (builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword) (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little) (builtin_type_ia64_quad_big, builtin_type_ia64_quad_little): Delete unused and endian-specific types. (recursive_dump_type): Update for floatformat pairs. (build_flt): Move higher. Handle bit == -1. Take a floatformat pair. (build_gdbtypes): Use build_flt. (_initialize_gdbtypes): Update set of initialized types. * gdbtypes.h: Update declarations to match gdbtypes.c. (struct main_type): Store a pointer to two floatformats. * arch-utils.c (default_float_format, default_double_format): Delete. * arch-utils.h (default_float_format, default_double_format): Delete. * arm-tdep.c, avr-tdep.c, hppa-tdep.c, hppabsd-tdep.c, i386-tdep.c, ia64-tdep.c, iq2000-tdep.c, m68k-tdep.c, m88k-tdep.c, mips-linux-tdep.c, mips-tdep.c, mt-tdep.c, ppcobsd-tdep.c, sparc-linux-tdep.c, sparc-tdep.c, sparcnbsd-tdep.c, spu-tdep.c, vax-tdep.c, alpha-tdep.c, ppc-sysv-tdep.c: Update.
104 lines
4.1 KiB
C
104 lines
4.1 KiB
C
/* Floating point definitions for GDB.
|
|
|
|
Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
|
|
1997, 1998, 1999, 2000, 2001, 2003, 2005, 2006, 2007
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
#ifndef DOUBLEST_H
|
|
#define DOUBLEST_H
|
|
|
|
struct type;
|
|
struct floatformat;
|
|
|
|
/* Setup definitions for host and target floating point formats. We need to
|
|
consider the format for `float', `double', and `long double' for both target
|
|
and host. We need to do this so that we know what kind of conversions need
|
|
to be done when converting target numbers to and from the hosts DOUBLEST
|
|
data type. */
|
|
|
|
/* This is used to indicate that we don't know the format of the floating point
|
|
number. Typically, this is useful for native ports, where the actual format
|
|
is irrelevant, since no conversions will be taking place. */
|
|
|
|
#include "floatformat.h" /* For struct floatformat */
|
|
|
|
/* Use `long double' if the host compiler supports it. (Note that this is not
|
|
necessarily any longer than `double'. On SunOS/gcc, it's the same as
|
|
double.) This is necessary because GDB internally converts all floating
|
|
point values to the widest type supported by the host.
|
|
|
|
There are problems however, when the target `long double' is longer than the
|
|
host's `long double'. In general, we'll probably reduce the precision of
|
|
any such values and print a warning. */
|
|
|
|
#if (defined HAVE_LONG_DOUBLE && defined PRINTF_HAS_LONG_DOUBLE \
|
|
&& defined SCANF_HAS_LONG_DOUBLE)
|
|
typedef long double DOUBLEST;
|
|
# define DOUBLEST_PRINT_FORMAT "%Lg"
|
|
# define DOUBLEST_SCAN_FORMAT "%Lg"
|
|
#else
|
|
typedef double DOUBLEST;
|
|
# define DOUBLEST_PRINT_FORMAT "%g"
|
|
# define DOUBLEST_SCAN_FORMAT "%lg"
|
|
/* If we can't scan or print long double, we don't want to use it
|
|
anywhere. */
|
|
# undef HAVE_LONG_DOUBLE
|
|
# undef PRINTF_HAS_LONG_DOUBLE
|
|
# undef SCANF_HAS_LONG_DOUBLE
|
|
#endif
|
|
|
|
extern void floatformat_to_doublest (const struct floatformat *,
|
|
const void *in, DOUBLEST *out);
|
|
extern void floatformat_from_doublest (const struct floatformat *,
|
|
const DOUBLEST *in, void *out);
|
|
|
|
extern int floatformat_is_negative (const struct floatformat *,
|
|
const bfd_byte *);
|
|
extern int floatformat_is_nan (const struct floatformat *, const bfd_byte *);
|
|
extern const char *floatformat_mantissa (const struct floatformat *,
|
|
const bfd_byte *);
|
|
|
|
/* These functions have been replaced by extract_typed_floating and
|
|
store_typed_floating.
|
|
|
|
Most calls are passing in TYPE_LENGTH (TYPE) so can be changed to
|
|
just pass the TYPE. The remainder pass in the length of a
|
|
register, those calls should instead pass in the floating point
|
|
type that corresponds to that length. */
|
|
|
|
extern DOUBLEST deprecated_extract_floating (const void *addr, int len);
|
|
extern void deprecated_store_floating (void *addr, int len, DOUBLEST val);
|
|
|
|
/* Given TYPE, return its floatformat. TYPE_FLOATFORMAT() may return
|
|
NULL. type_floatformat() detects that and returns a floatformat
|
|
based on the type size when FLOATFORMAT is NULL. */
|
|
|
|
const struct floatformat *floatformat_from_type (const struct type *type);
|
|
|
|
extern DOUBLEST extract_typed_floating (const void *addr,
|
|
const struct type *type);
|
|
extern void store_typed_floating (void *addr, const struct type *type,
|
|
DOUBLEST val);
|
|
extern void convert_typed_floating (const void *from,
|
|
const struct type *from_type,
|
|
void *to, const struct type *to_type);
|
|
|
|
#endif
|